+ Reply to Thread
Results 1 to 10 of 10

Waiting for Input

  1. #1
    Registered User
    Join Date
    12-08-2009
    Location
    Madison, WI
    MS-Off Ver
    Excel 2003
    Posts
    30

    Waiting for Input

    On the SetNum sheet is an ordered list of data sets. (the first set is set 0) The data itself is stored on a different sheet (Data). I would like the user to click the ModifySet button, enter a number, and have the form pop up with the previously entered data.

    The SetNum control is an invisible label used for tracking the current set number. Its default value is 0.

    The code for the button:

    Please Login or Register  to view this content.
    In theory, this is what should be pulling of the previous data entered. All of the controls have a corresponding named column in "Data". On Error is included since not all controls (such as labels) need/have their own column.

    Please Login or Register  to view this content.
    Here is what I get from the two Debug.Print commands.

    Please Login or Register  to view this content.
    What I get is the UserForm coming up after I've input the SetNum with a SetNum.Caption of the correct value, but the data is always from Set0 (the default value for SetNum.Caption)

    Am I just overlooking something?

    Thanks,
    Magness
    Last edited by magness; 01-14-2010 at 04:32 PM.

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Waiting for Input

    Hello Magness,

    You are attempting to assign values to the UserForm before the UserForm has been loaded into memory. The Show command loads the UserForm into memory and then displays it. The Load command will place the UserForm into memory but not display the form. This allows for the properties and variables on the sheet to be set before displaying the form.
    Please Login or Register  to view this content.
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  3. #3
    Registered User
    Join Date
    12-08-2009
    Location
    Madison, WI
    MS-Off Ver
    Excel 2003
    Posts
    30

    Re: Waiting for Input

    I had tried this (and did so again just now), but get the same results.


    My button for adding a new set has this:

    Please Login or Register  to view this content.
    And the set number is passing to label caption without Load SetForm here.

    Would Load SetForm let me refer to controls without adding the SetFrom. to the front?

  4. #4
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Waiting for Input

    Hello Magness,

    You should post your workbook for review.

  5. #5
    Registered User
    Join Date
    12-08-2009
    Location
    Madison, WI
    MS-Off Ver
    Excel 2003
    Posts
    30

    Re: Waiting for Input

    Here you go. Thanks for taking a look at it. I apologize in advance for my naming conventions (or lack there of).
    Attached Files Attached Files

  6. #6
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Waiting for Input

    Hello Magness,

    I moved the variable "SetNum" from the General Declarations section of the UserForm to the top of Module1. This way it is visible to all parts of the project code as long as VBA is running.
    Please Login or Register  to view this content.
    Attached Files Attached Files

  7. #7
    Registered User
    Join Date
    12-08-2009
    Location
    Madison, WI
    MS-Off Ver
    Excel 2003
    Posts
    30

    Re: Waiting for Input

    And it worked for you? I'm getting the same issue.

    As far as I can tell UserForm_Initialize() is running as soon as anything mentions SetForm. (setting a value, loading, ect...) I'll try moving the _Initialize code to each of the button to work around it, but I had thought that _Initialize wouldn't run until the UserForm was called. Is this incorrect?

  8. #8
    Registered User
    Join Date
    12-08-2009
    Location
    Madison, WI
    MS-Off Ver
    Excel 2003
    Posts
    30

    Re: Waiting for Input

    Ok, I moved the code out of UserForm_Initialize() to it's own procedure and it works fine. I just call it from the command buttons that need to populate the form.

    The question that remains is precisely what triggers UserForm_Initialize()? That seems to have been the root cause and a better understanding of that I think would fully solve this issue. Should I post a new thread for this question?

  9. #9
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Waiting for Input

    Hello Magness,

    Whenever a UserForm is loaded into memory, the Initialize event is fired. Both the Load and Show commands will load the UserForm object into memory. The key difference is Show checks if the UserForm is already loaded. If not it will load the UserForm and then display it. The purpose of this event is to setup control properties, and assign static or initial value settings. This event is followed by the Activate event.

  10. #10
    Registered User
    Join Date
    12-08-2009
    Location
    Madison, WI
    MS-Off Ver
    Excel 2003
    Posts
    30

    Re: Waiting for Input

    Ok, that is what I had thought. Then I guess that by trying to assign a value in the UserForm with "SetForm.SetNum.Caption = " was loading the form and triggering the Initialize even though I didn't specifically use the Load command.

    Thanks

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1