Hi,
I launch a form from an Excel worksheet. This form contains textboxes that are linked to the worksheet by the controlsource property.
First of all every time the User Form is loaded I clear the range that is linked to the user form so that the text boxes point to blanks. Now here is my problem...
On form initialise I have code that initialises these text boxes because I want them to have default values. It's very simple code. Ex.
txtDolomiteFactor = "0.03"
txtDolomiteMoist = "5.89"
When the userform loads I only the first textbox given a value will show this value. In the case above txtDolomiteFactor will contain 0.03 but txtDolomiteMoist will contain Blank.
Could anybody help me out??
I launch a form from an Excel worksheet. This form contains textboxes that are linked to the worksheet by the controlsource property.
First of all every time the User Form is loaded I clear the range that is linked to the user form so that the text boxes point to blanks. Now here is my problem...
On form initialise I have code that initialises these text boxes because I want them to have default values. It's very simple code. Ex.
txtDolomiteFactor = "0.03"
txtDolomiteMoist = "5.89"
When the userform loads I only the first textbox given a value will show this value. In the case above txtDolomiteFactor will contain 0.03 but txtDolomiteMoist will contain Blank.
Could anybody help me out??