Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. JamieFuller

    Exchange 2003 server, vm recovery...

    Hi All, I need to recover some emails from our virtual (vmware) outlook 2003 server, we have full nightly backups of the virtual machine. I restored the whole machine as a clone and can boot the server up,I was hoping to just use exmerge to extract a pst with the missing emails however I have...
  2. JamieFuller

    Problem with I2004 (w) handset...

    Hi Guys, Could really use some advice, I am currently struggling with a problem with one of the telephones in my office. I have just started here and never used this system before so am a little bewildered to say the least :) We switched all the power off in our building on Saturday and the...
  3. JamieFuller

    Simple script, fine in IE not in Firefox....

    Hi All, Can someone help me, I think i'm losing the plot. I have written a number of javascript assisted pages but when testing them in FF the functionailty doesnt work. According to all the FF sites all the commands im using are implemented, and if I change the code slighlty it works. but I...
  4. JamieFuller

    Hi Guys, I have been asked to wr

    Hi Guys, I have been asked to write a 'wallboard' script that shows where all our engineers are scheduled to be between 2 dates... the problem is my code is pretty shite, It works and it works well but it is super slow. and if I try to do more than 14 or so days I might as well go and make...
  5. JamieFuller

    cookies...arrrrrghhh

    I have written a script. here is the code: if(isset($_COOKIE["cartId"])) { echo $_COOKIE["cartId"]; }else{ session_start(); setcookie("cartId", session_id(), time() + ((3600 * 24) * 30)); echo session_id(); } I understand that cookies are not...
  6. JamieFuller

    Create folder and file in it.

    Hi, I have a php script that creates a folder, this works but the permissions are incorrect. I have tried using the chmod command with setting 0777 but that only changes it to 757 (or something like that) I want to create a folder and then cretae a small php file inside it. is 0777 the right...
  7. JamieFuller

    Image transparency.

    I have written a script that uploads a picture, (jpg). I need to resize a copy to a thumbnail size and then make it transparent (where there is white) and save as a png. I have every thing working but the transparency. heres my code. // Load image from jpg $src_img =...
  8. JamieFuller

    Assistance converting VB into PHP

    I have written this function in VB but would ideally love to convert it into php so that I can run it from my website. Private function gen(text1) as string dim c as int Dim b As String enc = "FEDCBA9876543210" enc2= "0123456789ABCDEF" tmpDate = Format(Day(Date)...
  9. JamieFuller

    Where HELP Like 'SQL string from VB'

    Hi, I have written a front end for a Access2000 database. it works fine except using the 'LIKE' command in the SQL string. the string looks something like this Select * FROM Table Where (Field1 LIKE 'a*'); this string works from within access (it reports all entries beginning with 'a') but...
  10. JamieFuller

    loading a picture...but not from a file...HELP!

    I have written a really cool encryption algorythm that protects my private pictures (jpg format). when my decrypter runs it loads the encrypted file into memory, processes it in memory (a string the length of the file). i need to put this string of memory into a picture box (as a picture)...

Part and Inventory Search

Back
Top