How to Access Internal Properties and Methods of Run-Time .NET Windows Forms Objects
Object property can be used to retrieve internal properties and activate internal methods of any .NET Windows Forms object in your application. For example, you can set the focus to a particular button and change its caption using statements similar to the following: Set theButton = SwfWindow(“frmWin”).SwfButton(“OK”).ObjecttheButton.SetFocustheButton.Caption = “Yes” The Object property is also useful […]
How to Access Internal Properties and Methods of Run-Time .NET Windows Forms Objects Read More »