Userforms

Ben S

Board Regular
Joined
Oct 21, 2002
Messages
124
If you highlight a number of column names and then go into tools and forms, excel will automatically produce a form.

Is there any way of saving that form within the workbook.
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
It's always available with the workbook.

You could assign this code to a button to make it easier for the user:

Code:
Private Sub CommandButton1_Click()
    ActiveSheet.ShowDataForm
End Sub

Or you could put it in your Workbook_Open event procedure.
 
Upvote 0
Is there no way of saving the form and then amending it.

E.g i would like to remove new record button from the userform
 
Upvote 0
Hi,

if you put:

Private Sub CommandButton1_Click()
ActiveSheet.ShowDataForm
End Sub

in the workbook_open(), make sure a cell in the feild headings is selected, or the form won't come up right, or not at all.

oh, and I don't think you can edit the form. If someone knows a way to do this, I would REALLY like to know, I spent the last few days making an Excel database with record forms, all userforms, and it was a PAIN!

If I could have used the form feature, but customized, it would have been way faster.

HTH,
Corticus
This message was edited by Corticus on 2002-11-07 08:56
This message was edited by Corticus on 2002-11-07 09:09
 
Upvote 0
$20, damnit! :(

capitalist pigs...:)

so close...

anyone know of any free dataforms that I can edit?

Corticus

edit: cool form though, I like the criteria
This message was edited by Corticus on 2002-11-07 09:09
 
Upvote 0

Forum statistics

Threads
1,213,557
Messages
6,114,287
Members
448,562
Latest member
Flashbond

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