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 SkipVought 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. mondoray

    Populate a field on a report from combo box

    Guys, Thanks for responses. seaport - I will give it a try. dhookom - I'm not sure what you mean by your question. I have set up the report so that when you select the parameters via combo boxes then hit a command button the report displays in print preview. I also have created a small...
  2. mondoray

    Populate a field on a report from combo box

    Guys, I have created a report. In the heading I have created a text box that looks at the combo box that is used to set the criteria for the report and displays it on the form with the following: =[forms]![frmInput]![Combo11] The data from the combo box is displayed during a print preview...
  3. mondoray

    Info on multipage reports

    TomCologne, Thanks for your help. mondoray [ponder]
  4. mondoray

    Info on multipage reports

    Guys, Can anybody give me help or direct me to a FAQ, etc on how to create multiple page reports. I have a report that has graphs. I need to present two graphs per page. I have eight graphs to present (4 pages). Many thks. mondoray [ponder]
  5. mondoray

    Validation rule warning

    PHV, Many thks. mondoray [ponder]
  6. mondoray

    Validation rule warning

    PHV, With the "Like V" above I need to have the cursor remain on that filed when the validation rule is not met. I have tried: [Aircraft Registration].SetFocus & SendKeys "+{Tab}" both default. Any suggestions? mondoray [ponder]
  7. mondoray

    Validation rule warning

    PHV, Your a star. Many thanks mondoray [ponder]
  8. mondoray

    Validation rule warning

    Guys, I would like to ask another question on validation rule. I have a field which the data has to be either: MEL or MJB or PER or ADL. How do I set the validation rule to have multiple responses? Can I use the above with multiple like criteria? mondoray [ponder]
  9. mondoray

    Validation rule warning

    PHV, Many thanks mondoray [ponder]
  10. mondoray

    Validation rule warning

    lespaul, Many thks. I will give it a try. mondoray [ponder]
  11. mondoray

    Validation rule warning

    Golom, Thanks for your help. I have used your suggestion as below: Private Sub Aircraft_Registration_BeforeUpdate(Cancel As Integer) If Not (Len(Value) = 3 And Left$(Value, 1) = "v") Then MsgBox "Aircraft registration must start with a V...", vbExclamation, "Invalid data..." Else 'Save value...
  12. mondoray

    Validation rule warning

    GingerR, Thks mondoray [ponder]
  13. mondoray

    Validation rule warning

    GingerR, How do I express your above code to ensure the data entered has three letters and starts with a "V"? mondoray [ponder]
  14. mondoray

    Validation rule warning

    GingerR, Thanks a million. mondoray [ponder]
  15. mondoray

    Validation rule warning

    GingerR, Thanks. I wasn't sure that it would prevent the standard msgbox from appearing. My application has the validation rule in the table set to Like"V??" I will give it a try. mondoray [ponder]
  16. mondoray

    Validation rule warning

    Guys, Is there a way to prevent the standard MS Access validation rule warning msgbox appearing and create your own msgbox? mondoray [ponder]
  17. mondoray

    Need help with an input mask

    Gnism, I will give it a try. Many thks mondoray [ponder]
  18. mondoray

    Need help with an input mask

    Guys, I have a field on a form (and the associated table)that has the input mask set as: 00\-00\-000 As the data is entered it allows the operator to enter without inseting the dashes. When the data is displayed (field lostfocus) the dashes are missing and I'm left with: 0406987 What I'm...
  19. mondoray

    PgUP and PgDn disable not working

    RoyVidar, It is now. Many thks for your help. mondoray [ponder]
  20. mondoray

    PgUP and PgDn disable not working

    Guys, I have used the following code to disable the PgUp and PgDn keys in one of my forms and it is not working. Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer) If (KeyCode = vbKeyPageUp) Or (KeyCode = vbKeyPageDown) Then KeyCode = 0 End If End Sub Any suggestions...

Part and Inventory Search

Back
Top