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: Tido
  • Order by date
  1. Tido

    Error Handling

    Worked well thanks you just saved me a few billable hourus on msdn ;) i dont know if thats a good or a bad thing ;p
  2. Tido

    how to write a piece of code to show the page number in a report

    try this code control source of a textbox on the report ="Page " & [Page] & " of " & [Pages]
  3. Tido

    How do I save a string to a file?

    try Set lfso = New FileSystemObject fso.CreateTextFile (FileLocation) Set lfil = lfso.GetFile(FileLocation) Set lts = lfil.OpenAsTextStream(ForWriting) lts.writeline (STRINGVARIABLE) lts.close
  4. Tido

    Error Handling

    I have a procedure that is communicating with the printer so generally i want to trap all priter errors out of paper for exable or a printer buffer overflow. so i put in this On Error GoTo CheckError right after my dim statment and then when errors occured it would halt the program and bring...
  5. Tido

    Getting the applications executable path

    now why oculdnt i find that on msdn or the help section in vb.
  6. Tido

    Getting the applications executable path

    I have a program that needs to read ini/cfg files and then reads in more files based on the content of those I have the main ini/cfg file in my applications path and can retrive it but if the path to the executable changes like once this goes on a clients machine there will be problems. is...
  7. Tido

    Dealing with windows msg boxs

    I have written an app that exports access query results into an excel spreadsheet but when/if i try to overwrite the excel file im exporting the results to the program crashs while running the oExApp.Workbooks(1).SaveAs txtFileName.Text line only if i choose cancel or no in the windows msg...
  8. Tido

    Mircrosoft access

    i am currently writing vb code in the background of Excel to take query results and format them into an excel spreadsheet so data manipulation can take place instead of just a basic access report. My question is, is there anyway that i can have Excel spit out column Headings at the top of every...

Part and Inventory Search

Back
Top