Aug 24, 2006 #1 NBartomeli Programmer Joined Jul 1, 2003 Messages 111 Location US How can you change a control from protected to public? or can you not do that anymore? Thanks in advance
How can you change a control from protected to public? or can you not do that anymore? Thanks in advance
Aug 24, 2006 #2 TipGiver Programmer Joined Sep 1, 2005 Messages 1,863 You had better gone to the right forum... forum855. Any way, use properties for that. Code: Public Property myButton() As Button Get Return Button1 End Get Set(ByVal value As Button) Button1 = value End Set End Property Upvote 0 Downvote
You had better gone to the right forum... forum855. Any way, use properties for that. Code: Public Property myButton() As Button Get Return Button1 End Get Set(ByVal value As Button) Button1 = value End Set End Property