Search results

  1. Rich

    List index property

    Error 3777 you've used the list index incorrectly, from what I've read the list index is now read only, another useful update and improvement from Microsoft!:rolleyes:
  2. Rich

    List index property

    Yes the actual code is listed here, I guess you can't set the list index from another form Private Sub InvDate_DblClick(Cancel As Integer) Dim stDocName As String Dim stLinkCriteria As String Dim I As Integer stDocName = "Invoices" I = Me.Parent.CurrentRecord - 1...
  3. Rich

    List index property

    Forms!Invoices![Combo64].ListIndex = 0 has worked fine for years but apparently I'm now using it incorrectly, any ideas?
  4. Rich

    Government Vs. The Private Sector

    We've been telling you Yankies just that for years:cool:
  5. Rich

    help with vba

    SAH1 is not listed in your code
  6. Rich

    Calc in VBA per group to show in Report

    Why can't you just put a Sum in the group footer?
  7. Rich

    Screen.Previous Control - Detect

    Dim PrevCtl As Control Const ERR_OBJNOTEXIST = 2467 Const ERR_OBJNOTSET = 91 Set PrevCtl = Screen.PreviousControl your code etc Exit_Command95_Click: Exit Sub Err_Command95_Click: If (Err = ERR_OBJNOTEXIST) Or (Err = ERR_OBJNOTSET) Then Resume Next
  8. Rich

    Wahoo - We are getting 2010!

    Of course if you have your own switchboard and hide the db window on startup you don't have to look at that ugly ribbon or try and navigate through one list of endless objects to find your way around quickly
  9. Rich

    Rich finally has become 22

    Not on here:p
  10. Rich

    Rich finally has become 22

    Why are you quoting your own age?:confused:
  11. Rich

    Rich finally has become 22

    Slightly older than 21:p
  12. Rich

    Rich finally has become 22

    I'd have to learn to swim first:eek:
  13. Rich

    Rich finally has become 22

    By the time I reach the age to gain a free bus pass the government will have stopped them due to the cut backs:mad:
  14. Rich

    Rich finally has become 22

    Thanks guys, I my have said this before but my DOB looks fine here, it must be something to do with your date display settings:D
  15. Rich

    Popup disable customized toolbar

    Which version of Access are you refering to?
  16. Rich

    Checkbox function- Access beginner in the Construction Industry

    What if he needs more than one spool, how will you cope with that?
  17. Rich

    Iran: A Nuclear Power?

    What evidence do you have that Iran had anything to do with any of these terrorist activities?:rolleyes:
  18. Rich

    The programmer is always at fault, but this seems random

    If you've deleted the orinal form then the code goes with it. Open the form in design view then look for the vba code
  19. Rich

    The programmer is always at fault, but this seems random

    Deleting a label or control does not delete any vba code associated with them, you have to go into the vba editor to do that
  20. Rich

    switchboard buttons not responding after adding macro to open event

    They are of course customisable;)
Back
Top Bottom