TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Paul Loughridge
NA
109
44.6k
ListBox
Jun 4 2009 7:45 PM
private void btnGetPrinterResolution_Click(object sender, EventArgs e)
{
PrinterSettings ps = new PrinterSettings();
ps.PrinterName = PrintersList.Text;
PrinterResolution prs3 = new PrinterResolution();
foreach (PrinterResolution pr in ps.PrinterResolutions)
{
string str = prs3.ToString();
listboxPrinterResolution.Text = str;
// MessageBox.Show(str);
}
}
Reply
Answers (
1
)
.exe file will not run when i copy it another location
Need help on compliation error.