PaintEventArgs
Hello,
I would like to know how can I pass on the PaintEventArgs in Button click event?
I want to call the GetRegionDataExample (MSDN Example) on button click so that the region data is displayed on the form. This code is displays data when placed in paint event of form. But I want it to work on Button Click.
'''''''''''''''''''''''''''''''''''''''''''''''
Public Sub GetRegionDataExample(ByVal e As System.Windows.Forms.PaintEventArgs)
.....
.....
.....
End Sub
''''''''''''''''''''''''''''''''''''''''''''
Thanks
Quest
|