Click here to Skip to main content
15,898,588 members

Comments by i_share7 (Top 2 by date)

i_share7 11-May-17 12:45pm View    
Yeah, you can import the System.Windows.Forms reference to your project and declare a variable as a control, but when you try to add that control to your class it doesn't let you because you are only allowed to add a System.Web.UIControls control.
i_share7 17-Sep-16 17:06pm View    
Instead of :
iCount = iCount + 1

It's easier to do:

iCount += 1

Just to help things to keep tidy! :)