Search results

  1. L

    Combobox to display result in a text field

    Not quit understand what you want. Can you put in red the field with problem in your database. Give me an example what you want to do, I can find the vendor part number (in which table). Le
  2. L

    Form Controlling Sub Form

    Can not read your database... Le
  3. L

    Disappearing Data in subform

    Is this what you want... Le
  4. L

    Help with creating a image based form

    See if this help... Le
  5. L

    Close Current Form

    How do you open your form2 by a button? If yes, then put DoCmd.Close at the end of the instrustions. Le
  6. L

    Opening forms (that is related to same record)

    Can you post your database?? Le
  7. L

    Opening forms (that is related to same record)

    Don't quite sure what you want?? Ansentry's cade is corrected. If you enter a new record in the company name "ABC" then you click on company addresse details, a form pop up with an ID 4 where the main form as also an ID 4. So, what is the problem?? Le
  8. L

    List Box Selecting

    You have to put a condition. Private Sub LstBox_DblClick(Cancel As Integer) On Error GoTo Err_LstBox_DblClick Dim stDocName As String stDocName = "Rpt_Route_MAIN" stLinkCriteria = "[field you want to match]=" & Me![text box you want to match with the field] DoCmd.OpenReport...
  9. L

    Visibility of Forms

    Try this... In your main form, put Me.subform name.Visible = False in the open form event. Then, create a button where you can put Me.subform name.Visible = True. So, each time you click on the button, the subform will appear. Le
  10. L

    Disabled a click event

    O.K. , thanks for asking this question. This brings the light up. Yes, I can put 'do nothing' like an empty space in my condition statment. Thanks a lot. Le
  11. L

    Disabled a click event

    No, I cannot remove or put it in a remark. In certain condition I need the click event of the texte box. Le
  12. L

    Disabled a click event

    No, I have try it. Locked doesn't disable the click event. Le
  13. L

    Disabled a click event

    Hello, How can you disabled a click event on a text box ? I don't want to use ENABLE = false because the background of the texte box comes gray. So, any alternative solution? Thanks, Le
  14. L

    Refreshing form - please help

    Not sure but try this. Put on the purchase order form close event: Forms!name of your main form.name of your combo box. Requery Le
  15. L

    SetFocus on continuous form

    Here is an option, leave the label. Create a button and put on top of the label. Then goto the propriety of the button and put it on transparent. It is important that your button control is on top of your label otherwise, this would not work. Try it. Le
  16. L

    Building a Filter Form

    See attachement... Hope this help, Le
  17. L

    Return key function

    Hello, First, I'm very glad the web site had came back, Youpi!!! My question: Is possible to stop the Return key function at the end of a jump page? In my form, I have servel pages and I put some jump page (which separeted one page to another) . Each time, I enter data and press return key...
  18. L

    am i missing sumting? Listbox requery subform

    A combo box don't need code behide. The important is the combo box is link to the subform. This is very strange, yah, I have the same problem with the format date, but if you create the combo box by wizard. It gives a good result. See the attachment. Also, I have created a new column...
  19. L

    "" queestion

    Try this ... MsgBox "Hello" & "," & """ Worlds """, vbOKOnly Le
  20. L

    am i missing sumting? Listbox requery subform

    Not quit understand what you want? See attachment if this help? Le
Back
Top Bottom