Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is there a way to print a solution with the forms as graphics?

Status
Not open for further replies.

weberm

Programmer
Dec 23, 2002
240
US
I'm not sure if this is the right place to ask, but is there a way to produce a print out of a solution which includes the source code but displays the forms as graphics (i.e., how they appear when painted) instead of or in addition in a textual form? A quick Google search came up with PrettyCode.Print by SubMain but it describes the forms as lists of their properties. For example,
Code:
// 
// btnHello
// 
this.btnHello.Location = new System.Drawing.Point(57, 184);
this.btnHello.Name = "btnHello";
this.btnHello.Size = new System.Drawing.Size(187, 43);
this.btnHello.TabIndex = 0;
this.btnHello.Text = "Say Hello";
this.btnHello.UseVisualStyleBackColor = true;
this.btnHello.Click += new System.EventHandler(this.btnHello_Click);

Is there way to show this graphically, other than cuting and pasting screen shots?



 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top