Search results

  1. GinaWhipp

    Access Linked Table - Key is out of Sequence.

    @pbaldy Hmm, so not that I know of... missed that completely.
  2. GinaWhipp

    Access Linked Table - Key is out of Sequence.

    And I second @gemma-the-husky when it comes to combo boxes in tables. No End User should have any interaction with the table so no need to put combo boxes at that level.
  3. GinaWhipp

    Access Linked Table - Key is out of Sequence.

    Hmm, use a Query as the Recordsource and then you can sort on the Customer ID and never have to think about it again.
  4. GinaWhipp

    Find as we typed

    You will need to adjust to fit your Control names and Row Source data but this should do the trick... Private Sub cboSearch_KeyUp(KeyCode As Integer, Shift As Integer) If Len(Me.cboSearch.Text) >= 2 Then Me.cboSearch.RowSource = "SELECT epEntityID, ecValue FROM qrySearch WHERE...
  5. GinaWhipp

    Form design query

    Okay, well that's fine. Hmm, not sure I get that but if you create a query that gives you the results you want on the Form you can then create the Form.
  6. GinaWhipp

    Solved Function /Sub

    Thanks for that, never bothered to see if that still happens.
  7. GinaWhipp

    Solved Function /Sub

    Hmm, are you talking about lines that start with *Private Sub...*. If so, then they don't really *write themselves* but they do appear if you select Event Procedure from the Properties Window and will stay there even if you put nothing there. They do not *clean up* by themselves unless you...
  8. GinaWhipp

    Form design query

    Hmm, a little concerned about those Relationships. Should be more like... Incident Log > Incident Log Details Incident Log Details > Incident Log Students OR Incident Log > Incident Log Students Incident Log > Incident Log Category At which point you could use Main Form > Incident Log and...
  9. GinaWhipp

    Linked SQL Table - can not add new record

    You should really start a new thread. This one is 8 years old and won't get the attention it deserves as only the people within this thread will your post.
  10. GinaWhipp

    Sequential numbering

    Hmm, maybe this will help... https://regina-whipp.com/blog/?p=704
  11. GinaWhipp

    Progress Bar..

    This might help... https://access-diva.com/blog/?p=392
  12. GinaWhipp

    Exporting Reports with subreports to excel

    Outputting to queries won't work as you STILL need a way to tell it where on the Template to go.
  13. GinaWhipp

    Error "trapping"

    Hmm, perhaps this will help... https://www.access-diva.com/vba13.html It pushes the User back to the control that needs required information. If you want to cancel the entire entry the code will need adjusting.
  14. GinaWhipp

    Exporting Reports with subreports to excel

    So sorry for delay, work just went crazy. You are using... I do not use that so I do not know of a way to specify where on the Template to drop it. Using code is the only I for that with which you can specific what row and\or column to start placing your data.
  15. GinaWhipp

    Exporting Reports with subreports to excel

    Hmm, can't even think about this till tomorrow, getting ready for a conference call.
  16. GinaWhipp

    58.46% drop, in Hit Count....

    Hmm, the UA went offline recently while they updated, that might have caused people to look for other Forums. :unsure:
  17. GinaWhipp

    Hello all!

    Welcome to the Forum!
  18. GinaWhipp

    hello i am new member

    Welcome to the Forum!
  19. GinaWhipp

    Export Subform to excel

    Umm, nothing for me to evaluate as I have been doing this for quite some time which is why I replied to Hilary that way.
  20. GinaWhipp

    Export Subform to excel

    Hmm, again a query with a parameter must be saved first or it will error out. Also the line you recommended is for older version so not recommended.
Back
Top Bottom