Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.55K
~424 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for Smartboy33

c++ in vis studio has three type of programs. 1. console application 2. Windows forms application 3. Win32 projects You can use graphics in 2 and 3 the folllowing code draws a rectangle on windows form System.Drawing.SolidBrush myBrush = new System.Drawing.SolidBrush(System.Drawing.Color.Red); System.Drawing.Graphics formGraphics; formGraphics = this.CreateGraphics(); formGraphics.FillEllipse(myBrush, new Rectangle(0, 0, …

Member Avatar for Shiraz_1
0
424

The End.