Search results

  1. RuralGuy

    Curious about listboxes

    This link may help: http://access.mvps.org/access/forms/frm0031.htm
  2. RuralGuy

    Filtering a Continuous Forms Combo Box with a Meaningless Bound Column

    @Tony I looked at your video. What a great feature you created.
  3. RuralGuy

    Pass data from one form to another

    As you gain experience in MS Access you will discover other methods to pass values between forms. I prefer the one I used because it doed not require the form to know anything about who launched it. It is more modular that way. :)
  4. RuralGuy

    Pass data from one form to another

    For the record, bound Control means it has a ControlSource, bound Form means it has a RecordSource. Basically when you change the value it is changing the value in a table somewhere. Unbound, that is not the case unless you do the changing yourself. If the 1st form is displaying the "Comments"...
  5. RuralGuy

    Pass data from one form to another

    Check back tomorrow. We need to cover a couple of additional things. Go home for now and I'll leave the posts for you to read later.
  6. RuralGuy

    Pass data from one form to another

    BTW, does the ComboBox have a ControlSource (Is it Bound)?
  7. RuralGuy

    Pass data from one form to another

    Private Sub Form_Load() Dim strOpenArgs() As String If Not IsNull(Me.OpenArgs) Then strOpenArgs = Split(Me.OpenArgs, ";") Me.cboNameOfComboBox = strOpenArgs(0) '.. If there were more arguments ' Me.txtAnotherTextBox = strOpenArgs(1) Else ' .. Do something else End If End Sub
  8. RuralGuy

    Pass data from one form to another

    Queries take up very little space in a db as they are just the SQL and some strategy. Let's modify the Load Event code.
  9. RuralGuy

    Pass data from one form to another

    If you are not using queries as a record source for your forms, you should be. It will save you from some locking issues later on. Okay, let's add a Load Event in code to the 2nd form. Use the same method you did to add the click event to the 1st form button. Show the form in design view. Show...
  10. RuralGuy

    Pass data from one form to another

    BTW, Colin Riddington (Ridders) is a new friend I've made that creates remarkable software. He's on your side of the pond as well. :)
  11. RuralGuy

    Pass data from one form to another

    It depends on how you want YOUR system. They did press the add a comment button to this project, right? What is the Record Source of this 2nd form? Does it point to the same table as the 1st form? Are you using queries as a record source or just tables?
  12. RuralGuy

    Pass data from one form to another

    See ya! You're welcome to butt in any time you want. :)
  13. RuralGuy

    Pass data from one form to another

    Good. Now why are you using the ComboBox on the 2nd form?
  14. RuralGuy

    Pass data from one form to another

    Hi Ridders, I'm sure it would and I have TeamViewer but then others on the forum lose the benefit of the exchange.
  15. RuralGuy

    Pass data from one form to another

    You still with me?
  16. RuralGuy

    Pass data from one form to another

    Once that's done we'll work on form #2. I need to understand why you are using a ComboBox on this form.
  17. RuralGuy

    Pass data from one form to another

    This change will not make any difference to how it runs yet. I am a real lousy typist if you hadn't figured it out yet.
  18. RuralGuy

    Pass data from one form to another

    My boo boo. That should have been TO not yo.. :(
  19. RuralGuy

    Pass data from one form to another

    Everything we've done so far is to the 1st form.
  20. RuralGuy

    Pass data from one form to another

    Okay, lets pass the project_ID to the 2nd form in the OpenArgs argument. Change this line: DoCmd.OpenForm stDocName, , , stLinkCriteria yo... DoCmd.OpenForm stDocName, , , stLinkCriteria, , , Me.project_ID This assumes the value is in a control named [project_ID]
Back
Top Bottom