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 Mike Lewis 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: *

  • Users: barny2006
  • Order by date
  1. barny2006

    Date/Time not displaying seconds

    i usually get around this problem by formatting this field as TS (time stamp) which is not available in access. i format it like this and write it to the text field. yyymmdd:hh:nn:ss:iiii year/month/day hours (military) minutes seconds miliseconds 20070226:13:04:20:0645
  2. barny2006

    Date/Time not displaying seconds

    how is starttime defined in the table?
  3. barny2006

    Import Excel(2003) into Access(2003)

    ' choose table name here depending on workstation or ' from a text file that contains the workstation name and ' the table name. or you can put them in an array ' connect to the database db_path = "c:\acces_database_name.mdb" Set objConnection = CreateObject("ADODB.Connection")...
  4. barny2006

    Really basic help or direction needed

    what does your batch file do? can you post it?
  5. barny2006

    DELETE Folder / Copy Files?

    as phv says, True indicates "force" the delete even if hell breaks loose.
  6. barny2006

    ASendkeys problem

    i have had experience like this with a cmd window. it just flashes and goes away. it's usually when there's an error on the cmd window. or if telnet is not authorized by group policy or something.
  7. barny2006

    is there a way to "UNDELETE" deleted files in dos?

    thanks everybody. this is good information. i downloaded freeundelete. disappointing results. it showed nothing on a 80 gig drive. i'll try other suggestions. thanks again.
  8. barny2006

    is there a way to "UNDELETE" deleted files in dos?

    hi, is there a way to recover / undelete files that were deleted in cmd window? my son deleted some files from a directory. and we can't find them in the recyble bin? thanks.
  9. barny2006

    what's the value of "cancel" in an inputbox?

    swi, phv, thank you all so much. :-)
  10. barny2006

    what's the value of "cancel" in an inputbox?

    hi, anybody know what value is returned and where, when you click cancel button instead of ok in an input box? thanks!
  11. barny2006

    Cant open my application

    you can terminate the first app by alt-f4 "%{F4}" then let it settle down wscript.sleep 200 then start the next app. unless when you terminate the first app, you have to press some other keys other than alt-F4!
  12. barny2006

    is there a way to print from a vbs?

    spark, thanks. it worked. i tested the app. i used sendkeys to write the variable to notepad, then alt+F, then alt+P, and the print dialog comes up. we can close this thread. thanks again everybody.
  13. barny2006

    is there a way to print from a vbs?

    spark, that's cool. i'm familiar with sendkey deal. actually i've done several apps with sendkey and notepad. thanks. i think this will work.
  14. barny2006

    Cant open my application

    you have to run the app, then send keys.
  15. barny2006

    counting specific files in a directory

    the cleanest way to do this, is to get the file type. and look at that. you can use file property - file.type this will return "text document" for .txt and "IQ file" for .IQ Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.GetFolder("C:\testlogs") Set fc = f.Files intCounter =...
  16. barny2006

    is there a way to print from a vbs?

    sparks, thanks. this is jsut a file print. file > print. the ideal solution is variable to print. var > print. i have already used invokeverb to print a temp file. i'm looking for a way to print without a file. could this code work witout a file? if it does, then that's what i'm looking for...
  17. barny2006

    is there a way to print from a vbs?

    i tried the Echo var>prn. i think that it tried to send something to the printer. but tne network won't allow it, because the document doesn't have a name.
  18. barny2006

    is there a way to print from a vbs?

    hugh, i tried it. it didn't work.
  19. barny2006

    ASendkeys problem

    malayqal, mark's suggestion will "deactivate" all other apps and activate the app you're activating (focusing on). it works.
  20. barny2006

    is there a way to print from a vbs?

    thanks hugh i'll give it a try, see what happens. right now i'm using a file and "invokeverb" deal, as suggested by most.

Part and Inventory Search

Back
Top