Search results

  1. J

    Order by TEXTBOX ?

    Hello, In the Query for the report i have the following columns: ID_User | Time_In | Time_Out | Time_Total > The Time_In and Time_Out columns are formatted as General Date > The Time_TOTAL column is not a value that is stored in a table. It is only used in the query. The...
  2. J

    Wait for External Application...

    Solved Since I'm going to use the function on more than one form I created the new Module(public). And i knew the 'Private' had to change to 'Public'. Just wasn't concentrating. I Apologize. All works great now. Thank You for your help. Regards, Jamie.
  3. J

    Wait for External Application...

    Sorry... Forgive me.... I should have mentioned that I changed your "booWordOpen" to my "booIsAppRunning". Still getting the Compile error though... _____________________________________ Private Sub Form_Timer() If FindWindow("MozillaUIWindowClass", vbNullString) > 0 Then 'OpusApp is MS...
  4. J

    Wait for External Application...

    Compile Error Thank you, but... I did create a new Module with this in it : _______________________ Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long Private booIsAppRunning As Boolean...
  5. J

    Wait for External Application...

    Hello, While the form is open, the user can open an external application (eg. MSWord). I want the form to "monitor" or "check" when the external application is CLOSED. Only when the external application was open and have been closed, I want to display a Msgbox. NOTE: the user does not run...
  6. J

    proper method of using a "price" field

    hello, table1_ProductList -> has the following fields: ID (primary key,auto number) SERNO(text) DESCR(text) PRICE(currency) table2_Jobcard -> has the following fields: ID (primary key,auto number) PROD_DESCR_ISSUED (droplist, get 'prod desc' value from table1) PROD_QTY_ISSUED (decimal)...
Back
Top Bottom