Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
207 views

Is there a way to disable multiple buttons at one time?

I have a vba userForm that has 36 buttons on it. I would like to disable all buttons when a value on one of my spreadshets reaches a certain number. Right now with each click of a button a number ...
4
votes
1answer
121 views

Create Better Looking Buttons in VBA without using Image

Is there anyway to create more rounded/professional looking buttons using vba. I found a couple places that suggested using images, which is not a terrible Idea, but I was wondering if anyone had a ...
3
votes
3answers
1k views

Is it better to show ProgressBar UserForms in VBA as modal or modeless?

Is it better to show ProgressBar UserForms in VBA as modal or modeless? What are the best practices for developing progress indicators in VBA? Modeless UserForms require the use of ...
3
votes
5answers
11k views

Assign on-click VBA function to a dynamically created button on Excel Userform

I'm creating buttons dynamically on an Excel userform with the following code: With Me.CurrentFrame.Controls.Add("Forms.CommandButton.1") .Caption = "XYZ" .name = "AButton" .Font.Bold = ...
2
votes
1answer
65 views

Decimal points handling within textbox in an excel form

I want to display a number in a textbox within an excel form. report, however I only want to show any decimal points if they are present and the I only want to show 2 decimal places. e.g. if the ...
2
votes
2answers
100 views

Outlook VBA timed closure of a userform

I'm trying to set up a userform that will appear, remain for 10 seconds, and then close automatically. I have done this before in Excel, using the OnTime method: Sub Example() ...
2
votes
1answer
621 views

In an Excel UserForm, how do I update a label's caption?

I created my first modeless UserForm in Excel and put an ActiveX label on it. How do I set the caption of the label so that it displays whatever is in Sheet1.Range("A1"), and updates itself when the ...
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 ...
2
votes
1answer
64 views

Image capture within a label

I have a userForm that consists of some buttons that have images on them. I then have three blank labels that I would like when I click on a button / image the image shows up in the first label. ...
2
votes
1answer
244 views

Windows Forms' Appearance

Just started using Visual Studio 2008 and was hoping to convert my VBA UserForms to VB.NET with the intent of upgrading my antiquated UserForm controls to newer Windows form controls that match the ...
2
votes
1answer
2k views

Assigning hotkeys to buttons on forms created for excel vba

I have created a macro for excel which will pop up form that contains button and text field. Is there a way to assign hotkeys such as 'ctrl+Enter' or 'F12' to the buttons? The hotkey should work ...
1
vote
2answers
47 views

Excel VBA Userform - Setting a chart the same size as userform image

I have an image in a userform which displays a pre-existing chart, according the properties menu the height = 246 and width = 462 (it does not specify units). I want my chart to be sized so that when ...
1
vote
2answers
96 views

Put code inside a loop to exit the loop after any mouse click

On a Userform, I'm blinking a frame Off/On by toggling its visiblity. It blinks a variable number of times and then stops, but in between blinks it checks for user activity. If there has been a ...
1
vote
3answers
178 views

Form Show method in event workbook_open in ThisWorkbook breaks on focus

When I try to show userform1 with userform1.show in ThisWorkbook within the private sub workbook_open(), it does the strangest thing. (I'm using Excel 2007)- It enters break mode and stops the running ...
1
vote
2answers
576 views

Remove the scroll bar on a list box

I'm using a userForm in vba and I have a list box. I want to remove the horoz. scroll bar from the bottom. Is there a way to do this? I don't see any option in the properties box.
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
1answer
397 views

Opening userforms from a userform over and over - causes object issues

I currently have built a tool in Excel 2003 which displays a series of data entry forms. The client has requested that there be "Previous Form" and "Next Form" buttons on the forms. The code used to ...
1
vote
1answer
376 views

What are the benefits to using DoEvents over Repaint on a userform in VBA?

What are the benefits to using DoEvents over Repaint on a userform in VBA? Is it due to performance, for minimising the annoyance of things such as screen flicker, or for when you need to update more ...
1
vote
3answers
4k views

Why does Showing a UserForm as Modal Stop Code Execution?

The following VBA code stops at Me.Show. From my tests, it seems that Me.Show stops all code execution, even if the code is inside the UserForm. This part is outside the UserForm: Public Sub ...
0
votes
2answers
41 views

Adding description into TextBoxes within an Excel VBA form that dissapears once user starts typing inside it

We have a userform with multiple textboxes and we would like to build something similar to the link image below, in terms of showing what the user should input in each text box: ...
0
votes
0answers
20 views

Run-time error '459': External exception while loading the COM control in the MS Excel UserForm

I have created COM control and registered it in the 64 bit machine (also has 64 bit office) I am able to get the COM control in 64 bit office by registering assembly with 64 bit Regasm and then with ...
0
votes
0answers
25 views

Not able to use the COM control in MS Excel user form after changing the GUID of the COM control and its interface

I have created a COM control in C# and I registered it by using RegAsm. So I am able to use the COM control in the MS Excel UserForms. I have used the below code. namespace ActiveXDotNet { ...
0
votes
0answers
60 views

Word VBA storing values from userform in document

I've inherited a Word document that apparently stores the value of userform fields as label captions -- the code simply says something like Application.lblName.caption = newText I finally found ...
0
votes
2answers
116 views

Excel VBA: Clicking “X” on Userform sometimes closes spreadsheet

I'm writing a spreadsheet where double-clicking certain cells opens a Userform. When certain users click the "X" to close the userform, the whole workbook closes (which is not the intended behavior). ...
0
votes
2answers
57 views

How do I reference the checkbox of the userform with a variable

Could anyone tell me how to reference a checkbox of the userform with a variable? For example I have something like these, if UserForm1.checkbox1.Value if UserForm1.checkbox2.Value if ...
0
votes
1answer
40 views

Going Back and forth between Userforms

Hello everyone on my userfrom I have a previous and a next button the previous button on userform 1 contains a next button which the code looks something like this userform1.hide userform2.show on ...
0
votes
0answers
39 views

overriding the userform focus in PowerPoint

I have been able to use VBA code to switch between an Excel sheet and an active modal Userform so that I didn't have to close out the Userform to work on the sheet, and could switch back and forth ...
0
votes
1answer
42 views

Replacing text in a textbox in VBA

Is there anyway to replace text in a textbox for example see below. I am currently using this, but does not seem to work well in VBA. Any help is greatly appreciated. Thanks If ...
0
votes
0answers
72 views

MouseUp event is not generated where expected

With reference to Userforms, MS Help says: "…if the mouse button is depressed while the pointer is over a control, that object receives all mouse events up to the final MouseUp, even if the pointer ...
0
votes
2answers
144 views

Formatting Textbox in VBA 4 place decimal

Is there anyway that you can format a textbox format to have four decimal places at all time? I know how to do it with C# and Visual Basic using a masked textbox, but vba is a bit more challeging due ...
0
votes
1answer
80 views

Is there a way to add an image to a MessageBox in VBA?

I am wondering if it is possible to add an image to a messagebox in VBA mainly, but if not any other languages. MsgReply = MsgBox("InspectionCreator - Continue?", vbMsgBoxSetForeground + ...
0
votes
1answer
67 views

How to detect a mouse_down on a Userform Frame while the mouse is still down

I want to detect when there's a mouse_down on any Frame on the Form while the mouse is still down. I know how to do it for a Click, but I want to catch it before mouse_up. Thanks
0
votes
0answers
140 views

VBA Excel 2003 Userforms updating data in a spreadsheet

Looking for a bit of advice. I have created a userform that up to 12 hadlers will complete and when clicking on "add" box, will write to the next blank line in excel. There is also a search function ...
0
votes
1answer
1k views

Excel VBA: Dynamic range for ComboBox.Rowsource values not displayed when userForm called from commandbutton

The title should give a fair overview of the problem but I'm running a dynamic named range for use in a combo box in a userform. When I run the form, the values appear as intended. When I call a ...
0
votes
1answer
239 views

Invalid outside procedure

I want to store a path in string "path" which would be available for the whole workbook. When I do it the following way, I get an error: "invalid outside procedure" Here is how I am trying to ...
0
votes
1answer
98 views

vba: userform functions

I have a sub that is activated from a button on a userform. The basic procedure from the click is 1) Run my sub based off of user inputs 2) Select results sheet 3) Display my results 4) Unload ...
0
votes
1answer
316 views

Align Userform to cells in Excel

I'm attempting to position a userform (named UserForm1) in Excel to align with cell references in Excel. If I initialize the form using the first code below, the userform is correct size positioned in ...
0
votes
2answers
575 views

VBA Text Box displaying Currency

I have a form with a number of text boxes for user input (this is in a User Form not on the spreadsheet). I have a few boxes that are related to currency and I need them to show the comma and decimal ...
0
votes
1answer
79 views

In Excel 2003, I have an inventory of around 300 books and other Items, how do I create a search engine to find particular items?

So I have a workbook with two spreadsheets in them one called "inventory" which is the most active and one called "department items" I created a user form for use on both spreadsheets, in the user ...
0
votes
2answers
240 views

Method or data member not found

I get this error when I run my code. This is a continuation from this post: Adding a scroll bar to a label I first created a userForm that had labels that retrieved information from a worksheet. I ...
0
votes
1answer
419 views

Adding a scroll bar to a label

I have a label on a userForm and the data within it is in list form. The data is longer than the label. Without expanding the label, is there a way to add a scroll bar to it? Or is there another ...
0
votes
2answers
90 views

Inserting 3 Excel columns into 1 label

I have three columns of data. Is there a way using vba to insert the information into a label on a userForm? Here is the updated code I have: Dim rowNum As Integer Dim lastRow As Integer lastRow = ...
0
votes
1answer
58 views

Capturing random images

I think everything speaks for itself in the image below. I'm not sure how to write the code to acomplish it.
0
votes
1answer
81 views

Add random images to labels

UserForm 2 = 36 buttons (btn1 thru btn36) Each button has an image on it. When I click the "ADD" button I would like for three randon images that are on the buttons to show up in UserForm 1 three ...
0
votes
1answer
201 views

Disable button on a userForm

I'm trying to figure out how to disable a button within my userForm if a certain cell within my spreadsheet equals a certain number. I tried the code stated below, but it isn't working. Private Sub ...
0
votes
1answer
170 views

VBA Textbox loses focus on 'Alt-Gr'

I am experiencing a funny behaviour of Textboxes on a VBA Userform: On pressing Alt-Gr the box loses focus. This happens after running a bit of VBA initialization code for the form. The text box has ...
0
votes
1answer
768 views

How to change the title bar text of a Userform in VBA?

I'm maintaining an old-ish application written in VBA for Excel 2002 (XP)/2003, and am trying to internationalise it. To do this, I read in the translated strings dynamically and update the various ...
0
votes
1answer
159 views

UserForm in script run from Outlook Rule

Based on http://support.microsoft.com/kb/306108 I'd like to create a custom rule that shows a custom UserForm instead of the plain old MsgBox. What I wrote was this: Dim alerts As CustomAlerts Sub ...
0
votes
1answer
144 views

Can't read the value of a button click from a userform

I hope this is a relatively easy problem although I have spent hours websearching and using T&E to no avail. Hopefully someone can help ;o) I have an excel module that shows a UserForm to get ...
0
votes
1answer
1k views

VBA How do you copy and paste in a Userform using right-click?

I want to allow users to be able to paste values into TextBoxes in a userForm in VBA. You can use Ctrl-v just fine, but not everyone knows how to do that. How do I enable copy and pasting using a ...

1 2