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 strongm 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. jberube

    Form1 to Form2

    I think you want to hide Form1, not close it because it is the main form. from the help Closes the form. procedure Close; Description Call Close to close a form. Close calls the CloseQuery method to determine if the form can close. If CloseQuery returns False, the close operation is...
  2. jberube

    Form1 to Form2

    Why not put a showmessage in the event handle to make sure that the event is being triggered ??
  3. jberube

    Using Outlook 2003 with richedit

    Here is a snippet of code that i have been using with Outlook 2000 with no problems - when we switched to Outlook 2003, outlook no longer displays the message in rich test format. has anyone else had this problem with Outlook 2003 ?? TempStream := TMemoryStream.Create...
  4. jberube

    LoadFromFile and SaveToFile exceptions

    Try this : ShowMessage(SysErrorMessage(GetLastError)); See http://www.undu.com/Articles/000103b.html
  5. jberube

    Automatic keystroke for test setup software

    I think you want to search for a "sendkeys" component - sounds like uou want to send key strokes to the program you want to test.
  6. jberube

    How to export data to excel wiht password?

    Here is how I open a password protected execl file: ExcelWorkbook1.ConnectTo(ExcelApplication1.Workbooks.Open(MyPath + MyFile, EmptyParam, EmptyParam, EmptyParam, MyPassword, EmptyParam, EmptyParam, EmptyParam, EmptyParam, EmptyParam, EmptyParam, EmptyParam, EmptyParam, LCID));

Part and Inventory Search

Back
Top