Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

Hi,

 

I wanto put all the available paper types in a combo box. How can I iterate though types in System.Drawing.Printing.PaperKind and add them to a combo box?

 

cheers

 

tim

Posted

You can use the following code however there are hundreds of paper types and it would take some navigating for the user.

 

		foreach (string sPaperKind in Enum.GetNames(typeof(System.Drawing.Printing.PaperKind)))
		{
			comboBox1.Items.Add(sPaperKind);
		}

Anybody looking for a graduate programmer (Midlands, England)?

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...