Thread: Type Scope
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Jim[_31_] Jim[_31_] is offline
external usenet poster
 
Posts: 13
Default Type Scope

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