Search results

  1. D

    multi-select listbox items to pass into textboxs

    I don't see what I am looking for in that link. I was able to find the code below, but the description says its to move from listbox to listbox. I need to move each individually selected item into a textbox. Private Sub cmdCopyItem_Click() CopySelected Me End Sub Public Sub...
  2. D

    multi-select listbox items to pass into textboxs

    I have an access project that I am working on and need to be able to select multiple items from a listbox and have the exact selections appear in a textbox on the same form. I have looked around and have not been able to find any code that works. I have tried: Me.user2 =...
  3. D

    Compile Error: Invalid Qualifier

    Thank you Mahail, you got me looking in the right direction... it was actually the xx variable that I was using in the loop to try to assign the different text box names. unless there is a better way to assign the variables I will have to spell them out so I took out the loop and am going to use...
  4. D

    Compile Error: Invalid Qualifier

    Same error at the same spot: Compile Error: Invalid qualifier ctrler.Visible = True
  5. D

    Compile Error: Invalid Qualifier

    When I add "Option Explicit" I get Compile Error: Invalid inside procedure. This code is not being run in a module, its part of an event on a form. I tried to run it with the other code the you provided, but it skips the error handler breaks the code and goes to the Invalid Qualifier error.
  6. D

    Compile Error: Invalid Qualifier

    Hello, I have the code below and am trying to have a a form allow Text Box to become visible based on selected items from a List box. Can some one please help as I am getting the error listed? THANK YOU...<<<<<<<<<<<<<<< Private Sub specific_opt_Click() Dim users As Control Dim ctrler As...
  7. D

    Compile Error: Invalid Qualifier

    Hello, I have the code below and am trying to have a a form allow Text Box to become visible based on selected items from a List box. Can some one please help as I am getting the error listed? THANK YOU...<<<<<<<<<<<<<<< Private Sub specific_opt_Click() Dim users As Control Dim ctrler As...
Back
Top Bottom