Tagged Questions
The userforms tag has no wiki summary.
2
votes
2answers
80 views
How do I recover a control that's been trapped beyond a Frame edge?
This affects just Frames and I've encountered it only in Excel 11, but since it's obviously a bug it may have been fixed in later versions which I haven't tried. If you use Frames a lot, this WILL ...
2
votes
1answer
72 views
Using the Properties Window to identify controls on a form
With a control selected on a form, at the very top of the Properties Window the name and type of the control are displayed, and on the dropdown menu underneath there's a list with some more controls. ...
2
votes
2answers
1k views
Excel VBA Userform - Execute Sub when something changes
I have a userform containing lots of text boxes. When ever the values of these text boxes changes, I need to recalculate my end result values based on the textbox values by calling a subroutine ...
1
vote
2answers
50 views
display arbitrary text in an Excel ComboBox on a Userform
I have 2 vertically touching ComboBoxes on an Excel Userform, both added at design time, and neither one having a bound column. When a selection is made in ComboBox1, I'd like to show some text in ...
1
vote
3answers
358 views
VBA: WithEvents puzzle
I have a UserForm, xForm, that is being instantiated in a class module (let's say TestClass) as:
'TestClass
Dim Form as New xForm
Private WithEvents EvForm as MSForms.UserForm
Set EvForm = Form
At ...
1
vote
2answers
778 views
vba userforms carriage return behavior
In a textbox of a userform in VBA, I would like to enable the feature where the user can add a new line in the textbox by pressing the "Enter" key on the keyboard. However, I had trouble finding a UI ...
1
vote
2answers
11k views
Adding controls to a frame in an Excel userform with VBA
I need to create labels and buttons dynamically and then add them to a frame within a userform. How do I do this? Seems like it should be easier than it really is.
0
votes
1answer
121 views
Silverstripe Userforms Prototype and jQuery conflicts
I'm having a nightmare with javascript at the moment which hopefully someone can help out with. I'm using the Userforms module, which I've also added my own jQuery code to such that the default value ...
0
votes
2answers
35 views
Adding groups of controls in C# userforms
I want to add X number of control groups, ie textbox field controls to a form. I do not know how many there will be ahead of time, but i want to use the same validation logic for each type, and to ...
0
votes
4answers
3k views
Outlook VBA: UserForm not responding (can't close, button click event doesn't fire)
I've created a simple UserForm in my Outlook VBA macro - I can make the form visible using this code:
VBA.UserForms.Add (PasswordForm.Name)
PasswordForm.Show (Modal)
...and the ...
0
votes
1answer
848 views
Problem getting multiple selections in a listbox to export into a worksheet
I am new to VBA and need some help. I have created an Excel Userform with labels, textboxs, command buttons, frames, option buttons etc and they all work fine. All the data entered in the userform ...