Search results for query: *

  1. N

    copying files

    there is no error message to it. when the search was defined for C:\tmp it searched through the tmp folder for all the files (.doc .ppt. etc....) that i made up so it would have something to return. However when i changed the definition to search the whole C: drive it wasn't returning any...
  2. N

    copying files

    Alright so i tried it and at first i got it to work within the same folder (searching c:\tmp for whatever i needed) then when i knew it work i changed it so that it wouls search all of C:\ as oppsed to just C:\tmp....now it doesn't work here is what i have: dim user as string user =...
  3. N

    copying files

    nvm stupidity has overcome my mind.....i used the LastIndexOf() combine with the substring to pull the file's path apart and re attach it as a string.
  4. N

    copying files

    Ok so i'm trying to copy a file from one folder to another and i'm running into a problem. currently i know that in order to copy something you use the File.Copy( , ) method (assuming you import system.io.*) problem being the dest file can't be an exsisting file or directory. fine. I used a a...
  5. N

    Timer issue

    Hey all I'm trying to create a simple little alarm clock app that will just play a sound when the alarm time is set. my prob is that once i get the user to set the alarm time the alarm never goes off at the time. Here is what i have so far... PublicSub alarmOn() If (alarmState = True) Then...
Back
Top