Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi there,
is there a way to auto-launch the built-in data form when the worksheet is open? also, is there a way to edit or add buttons or functions to the data form? thanks!! Em~ |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Option Explicit Sub Auto_Open() Dim wks As Worksheet Set wks = Worksheets("Sheet1") With wks Application.DisplayAlerts = False .ShowDataForm Application.DisplayAlerts = True End With End Sub If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm And just in case... http://support.microsoft.com/default...;en-us;Q110462 ShowDataForm Method Fails If Data Can't Be Found ======= And I don't think there's a way to modify those builtin forms. But you can build your own... Check Debra Dalgleish's site: http://contextures.com/xlUserForm01.html and these articles by Peter Aiken: http://msdn2.microsoft.com/en-us/lib...ffice.10).aspx http://msdn2.microsoft.com/en-us/lib...ffice.10).aspx Or use one from John Walkenbach: http://j-walk.com/ss/dataform/index.htm And the source code is available for a small fee ($20 USA, IIRC). emmy128 wrote: Hi there, is there a way to auto-launch the built-in data form when the worksheet is open? also, is there a way to edit or add buttons or functions to the data form? thanks!! Em~ -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
When I open a saved worksheet, it opens with a gray background | Excel Discussion (Misc queries) | |||
Is it possible to open only form when an excel file opens... | Excel Programming | |||
When I open a workbook, how can I choose which worksheet opens? | Excel Worksheet Functions | |||
I open one excel worksheet, PERSONAL.XLS also opens, why? | Excel Discussion (Misc queries) | |||
When I open up excel a worksheet that has been inputed opens up w. | Excel Discussion (Misc queries) |