UserForm_Activate() not working

Bragato

New Member
Joined
Nov 26, 2017
Messages
7
I have this:

Option Explicit


Private Sub AplicarConstantes_Click()
TextBoxym.Text = "Tst"
End Sub


Private Sub Constantes_Activate()
TextBoxym.Text = "Tst"
End Sub

I want when the form initializes for that the TextBox TextBoxym is given a value, but the xxx_Activate nor xxx_Initialiaze is working, I dunno why. The textbox stays blank.
But I created a button just to test, and when I initialize the form and press the button with the same code as xxx_Activate, the textbox text is filled, it works.

What am I getting wrong here?
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
I have this:



I want when the form initializes for that the TextBox TextBoxym is given a value, but the xxx_Activate nor xxx_Initialiaze is working, I dunno why. The textbox stays blank.
But I created a button just to test, and when I initialize the form and press the button with the same code as xxx_Activate, the textbox text is filled, it works.

What am I getting wrong here?

Got it working, seconds after posting here haha, thx for being my rubber duck!
In the "Private Sub Constantes_Activate" there should the "UserForm_Activate" instead of the userform name.
 
Upvote 0

Forum statistics

Threads
1,215,909
Messages
6,127,670
Members
449,397
Latest member
Bastbog

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top