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 Chris Miller 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. kunjal29

    Running Word with Automation

    Here is the code for checking if there is already an instance of an application running: ------------------------------------ Option Compare Database Option Explicit Private Const SW_HIDE = 0 Private Const SW_SHOWNORMAL = 1 Private Const SW_NORMAL = 1 Private Const SW_SHOWMINIMIZED = 2...
  2. kunjal29

    syncronize form problem

    Are you using ADO or DAO? Check your references. Kunjal
  3. kunjal29

    TransferSpreadsheet method when connected to SQL DB?

    I think you have to use &quot;SELECT * FROM <VIEW>;&quot; as the string parameter where the table name is supposed to appear. Kunjal
  4. kunjal29

    BeginTrans Method For Record add/update in Form

    You could move your record update code to the OnClose event of the form. Ask the user if they wish to save the changes and if so write the changes to the database otherwise just close the form. Kunjal

Part and Inventory Search

Back
Top