Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I need some help on a form. I have 3 option buttons and an "okay" and
"cancel". If I click one of the options and "okay" it fires. If I first click cancel then it cancels. The problem is if I click one of the options and okay and it runs then the form closes. I need my form to stay up. I need to be able to process all 3 options at the users pace and then be able to close the form separately. Any hints to get me started would be appreciated. This is my first form. thanks, ----- Private Sub cmdCancel_Click() Unload Me End Sub Private Sub cmdOkay_Click() Dim nResult As Long If optCkforDupes.Value = True Then Call SSPproject.createXLdb1.deleteDateRow1 Call SSPproject.createXLdb1.CkforDupes End If If optSaveIndesign.Value = True Then Call SSPproject.saveIndesign.saveIndesign End If If optReformatDepts.Value = True Then Call SSPproject.ReformatDepts.SortDivDept Call SSPproject.ReformatDepts.HideCellsNtoX End If End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Option Buttons in a Form | Excel Discussion (Misc queries) | |||
Creating a form with option buttons | Excel Programming | |||
option buttons in a form | Excel Programming | |||
User Form Option & Command Buttons | Excel Programming | |||
Form Option Buttons and Combo Boxes in VBA | Excel Programming |