Search results

  1. L

    Strange Right Click behaviour - On Mouse Down

    Thanks Micron
  2. L

    Strange Right Click behaviour - On Mouse Down

    Thanks again Colin, it works a treat!
  3. L

    Strange Right Click behaviour - On Mouse Down

    Thanks mate I'll have a play around......
  4. L

    Strange Right Click behaviour - On Mouse Down

    Same problem when I use MouseUp....
  5. L

    Strange Right Click behaviour - On Mouse Down

    What does Sinister mean?
  6. L

    Strange Right Click behaviour - On Mouse Down

    I just tried the following but it doesn't bring the form to the front of the Main form: I have also tried to point to a specific control of the fPartsEdit form without any luck: If Button = acRightButton Then sWhere = "[PartID] = " & Me.PartID DoCmd.OpenForm...
  7. L

    Strange Right Click behaviour - On Mouse Down

    Thanks mate, I'll try that and let you know the outcome.. Cheers Greg
  8. L

    Strange Right Click behaviour - On Mouse Down

    Thanks for the quick reply. Are you saying that I can't use it to open a form?
  9. L

    Strange Right Click behaviour - On Mouse Down

    Hi guys I've been trying to figure out the following for some time. I have the following code on the On Mouse Down event of a TextBox control on a form in Continuous form mode that is in a Tabbed form that I have been using to try to determine the cause of my problem: Private Sub...
  10. L

    Getting most record record using Grouping query

    Hi JHB Thanks for the quick reply. I spent more time on looking at my code and I think I came up with the same idea. OldValue and NewValue are text fields because they can also contain text or numbers. This is because the Audit table is used to keep track of any changes to any field in any...
  11. L

    Getting most record record using Grouping query

    Getting most recent record using Grouping query Hi guys, I have been struggling trying to resolve this issue for days and just can't seem to crack it so I'm throwing it out there for some help.I have attached a stripped down version of the database as well.I have a table called "PARTS". It...
  12. L

    Display a button on a form after 10 seconds

    Hi Gasman Here is the code...it's pretty simple: Private Sub Form_Load() Command1.Visible = False End Sub Private Sub Form_Timer() Command1.Visible = True End Sub You then need to set the Timer Interval to some value Cheers Greg
  13. L

    Display a button on a form after 10 seconds

    Thanks for your suggestion..
  14. L

    Display a button on a form after 10 seconds

    I just figured it out! I needed to add some code to the On Load event that initially set the Visible property of the button to False and then set the On Timer to set the Visible property to True after a few seconds....
  15. L

    Display a button on a form after 10 seconds

    Hi guys I have tried to figure this out myself without success. I have a form that is popped up when the user clicks a button on the main form. This popup provides information that the User must read. There is a "CLICK TO CONTINUE" button on the popup to enable them to continue to the...
  16. L

    Pass paramter to SQL Criteria - Is Not Null And <Date()-1 -

    The Date_WO_Sent is not always populated that is why I was checking for nulls...I'll have a play with the NZ function
  17. L

    Pass paramter to SQL Criteria - Is Not Null And <Date()-1 -

    Hi CJ, I'm not seeing any errors. How would I change the code to handle this type of condition?
  18. L

    Pass paramter to SQL Criteria - Is Not Null And <Date()-1 -

    I will put together a cut down version of the database tomorrow and get it to you...thanks for helping me with this. Cheers
Back
Top Bottom