|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Access parent form (protected friend/friend) variable in child formOk, I am very security consious with my application(s). I am currently working on an application in which I want to create several "global" variables available ONLY to my application, some will contain string values, some will contain data sets. How can I do this (code or a link to working code would be great!) Here's the basic outline: Parent Form: Public Class frmMain Inherits System.Windows.Forms.Form Friend UserBaseRegPath As String Private Sub Main_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load UserBaseRegPath = "SOFTWARE\\Chad\\MyApplicationTitle" End Sub End Class Child Form: Module MruListModule Private m_Form1 As New Form1 Public Property Form1Ref() As Form1 Get Return m_Form1 End Get Set(ByVal Value As Form1) m_Form1 = Value End Set End Property Public Class ChildForm1 Inherits System.Windows.Forms.Form Private Sub frmChildForm1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load MessageBox.Show("User Path: " & Form1Ref.UserBaseRegPath) End Sub End Module Thanks! Chad "Chad" <ChadBeck***@ProspectiveLink.com> schrieb: This won't solve your problem, but it will correct a bug in your code: > UserBaseRegPath = "SOFTWARE\\Chad\\MyApplicationTitle" Replace the double backslashes with single backslashes in the registry paths above. -- M S Herfried K. Wagner M V P <URL:http://dotnet.mvps.org/> V B <URL:http://classicvb.org/petition/>
Only 2 Days left to get REALbasic 5.5 for FREE!
Execption Handling disection Data Relation question Dependency Error: The dependency <dll> in project <project> cannot be coppied to the run directory b Conversion from VB6 to VB.NET Architectural Question API calls in DotNet enum item from string Re: THE GREATEST NEWS EVER! °º·._._.·º°`°º·._._.·º°`°º·._._.·º°`°º·._._.·º°`°º·._._.·º°`°º·._._.·º°` No one Find Directory created by me... run file remotely |
|||||||||||||||||||||||