Hi,
I would like to have a global variable g_sAppName. I tried declaring it inside my main form (shown below), but it is not recognized in other forms. How do I declare a global variable?
Public Class frmMain
Inherits System.Windows.Forms.Form
Public m_sAppTitle = "My .NET application"
___________________________
Many thanks,
Susie
I would like to have a global variable g_sAppName. I tried declaring it inside my main form (shown below), but it is not recognized in other forms. How do I declare a global variable?
Public Class frmMain
Inherits System.Windows.Forms.Form
Public m_sAppTitle = "My .NET application"
___________________________
Many thanks,
Susie