Consulting

Results 1 to 2 of 2

Thread: Passing combobox value on one user form to another user form

  1. #1

    Passing combobox value on one user form to another user form

    Hey all,

    I have tried to upload my sample workbook...




    I have a working script to run adding payments... it performs a check of the details entered and only runs if the criteria i want are there.

    The problem I have is if the "Debtor Code" is not correct I want to open another userform with the option to try enter the code again in a textbox or select a debtor code/name from a combo box.

    I thought about running all the code in the module and assigning public variables but that doesnt seem to work as I need the result of a combobox selection to be carried to the next userform...

    Any help?

    Thanks

  2. #2
    VBAX Expert Tinbendr's Avatar
    Joined
    Jun 2005
    Location
    North Central Mississippi (The Pines)
    Posts
    993
    Location
    Question: Why don't you go ahead a add the Debtor dropdown to ssForm_AddReceipt form? Seems redundent to me.

    But to answer you question, pass the value to the first form BEFORE you close the second.

    [VBA]
    Private Sub ssButton_DebtorCode_Click()
    ssTextBox_DebtorCode = ssComboBox_WrongCode
    Unload Me
    End Sub
    [/VBA]

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •