Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
To all,
I created a Public Type in a module as follows, Public Type AppInfo UserAction As String FolderSelected As String DBFolder As String DBFn As String End Type A procedure in the module shows a form and I fill appInfo values, but when I unload the form the values are lost? Why is that? Jim |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Jim,
Where are you declaring the variable of the specified Type? If you declare the variable in the form's code, it will be lost when the form is unloaded. If it is declared in the same procedure that shows the form, it will remain in scope for that procedure. -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Jim" wrote in message ... To all, I created a Public Type in a module as follows, Public Type AppInfo UserAction As String FolderSelected As String DBFolder As String DBFn As String End Type A procedure in the module shows a form and I fill appInfo values, but when I unload the form the values are lost? Why is that? Jim |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
It is declared in the Module that contains a Sub that
shows the Form. That's why I'm confused. Jim -----Original Message----- Jim, Where are you declaring the variable of the specified Type? If you declare the variable in the form's code, it will be lost when the form is unloaded. If it is declared in the same procedure that shows the form, it will remain in scope for that procedure. -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Jim" wrote in message ... To all, I created a Public Type in a module as follows, Public Type AppInfo UserAction As String FolderSelected As String DBFolder As String DBFn As String End Type A procedure in the module shows a form and I fill appInfo values, but when I unload the form the values are lost? Why is that? Jim . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Name scope within a workbook | Excel Discussion (Misc queries) | |||
Name Scope | Excel Worksheet Functions | |||
Scope of name | Excel Discussion (Misc queries) | |||
Range Name Scope | Excel Discussion (Misc queries) | |||
Change scope of a name | Excel Discussion (Misc queries) |