Click here to Skip to main content
15,899,313 members
Home / Discussions / C#
   

C#

 
GeneralRe: A way to overlay a transparent image on the screen that does not respond to the mouse. Pin
bions1-May-17 10:24
bions1-May-17 10:24 
GeneralRe: A way to overlay a transparent image on the screen that does not respond to the mouse. Pin
Dave Kreskowiak1-May-17 14:06
mveDave Kreskowiak1-May-17 14:06 
GeneralRe: A way to overlay a transparent image on the screen that does not respond to the mouse. Pin
Richard MacCutchan1-May-17 20:43
mveRichard MacCutchan1-May-17 20:43 
QuestionCrystal Report installation File missing Error and Run time file loading error Pin
Member 1253182629-Apr-17 9:47
Member 1253182629-Apr-17 9:47 
AnswerRe: Crystal Report installation File missing Error and Run time file loading error Pin
CHill6029-Apr-17 9:55
mveCHill6029-Apr-17 9:55 
AnswerRe: Crystal Report installation File missing Error and Run time file loading error Pin
OriginalGriff29-Apr-17 21:33
mveOriginalGriff29-Apr-17 21:33 
GeneralRe: Crystal Report installation File missing Error and Run time file loading error Pin
Richard Andrew x6430-Apr-17 9:26
professionalRichard Andrew x6430-Apr-17 9:26 
QuestionHow to fill DataGridView Cells on cellvaluechanged in MYSQL in C#? Pin
TatsuSheva28-Apr-17 23:33
TatsuSheva28-Apr-17 23:33 
SuggestionRe: How to fill DataGridView Cells on cellvaluechanged in MYSQL in C#? Pin
CHill6029-Apr-17 2:32
mveCHill6029-Apr-17 2:32 
AnswerRe: How to fill DataGridView Cells on cellvaluechanged in MYSQL in C#? Pin
User 418025429-Apr-17 3:01
User 418025429-Apr-17 3:01 
QuestionHOW I CAN MOVE LIGHT POINT FROM POINT TO POINT IN TIME Pin
Member 1315403828-Apr-17 21:16
Member 1315403828-Apr-17 21:16 
AnswerRe: HOW I CAN MOVE LIGHT POINT FROM POINT TO POINT IN TIME Pin
Richard MacCutchan28-Apr-17 21:33
mveRichard MacCutchan28-Apr-17 21:33 
AnswerRe: HOW I CAN MOVE LIGHT POINT FROM POINT TO POINT IN TIME Pin
OriginalGriff28-Apr-17 21:50
mveOriginalGriff28-Apr-17 21:50 
QuestionHow can I use serialize and Deserialize to realize Store Function when update code? Pin
smallkubi27-Apr-17 16:03
smallkubi27-Apr-17 16:03 
AnswerRe: How can I use serialize and Deserialize to realize Store Function when update code? Pin
Richard MacCutchan27-Apr-17 21:53
mveRichard MacCutchan27-Apr-17 21:53 
GeneralRe: How can I use serialize and Deserialize to realize Store Function when update code? Pin
smallkubi28-Apr-17 2:47
smallkubi28-Apr-17 2:47 
GeneralRe: How can I use serialize and Deserialize to realize Store Function when update code? Pin
Richard MacCutchan28-Apr-17 3:05
mveRichard MacCutchan28-Apr-17 3:05 
GeneralRe: How can I use serialize and Deserialize to realize Store Function when update code? Pin
smallkubi28-Apr-17 18:00
smallkubi28-Apr-17 18:00 
GeneralRe: How can I use serialize and Deserialize to realize Store Function when update code? Pin
Richard MacCutchan28-Apr-17 21:28
mveRichard MacCutchan28-Apr-17 21:28 
GeneralRe: How can I use serialize and Deserialize to realize Store Function when update code? Pin
smallkubi28-Apr-17 22:33
smallkubi28-Apr-17 22:33 
GeneralRe: How can I use serialize and Deserialize to realize Store Function when update code? Pin
Richard MacCutchan28-Apr-17 22:40
mveRichard MacCutchan28-Apr-17 22:40 
QuestionPrint number of copies depending on the textbox input and put page numbers C# Pin
de winta26-Apr-17 21:40
de winta26-Apr-17 21:40 
Please help i am new to C# and i have a windows form with textbox1, textbox2, and buttom1 i would like to print the value of textbox1 without previewing or let me say straight to the printer without any interactions, textbox value has to be the number of capies i would love to print and also to page number all those copies say if i input 3 it should say page 1/3 2/3 3/3 please help and excuse my english i have the following code under my button

private void button1_Click(object sender, EventArgs e)
{


PrintDocument printDocument = new PrintDocument();
printDocument.DefaultPageSettings.Landscape = true;
printDocument.DefaultPageSettings.PaperSize = new PaperSize("zed", 400, 850 );
//printDocument.PrinterSettings.Copies = 2;
printDocument.PrintPage += PrintDocumentOnPrintPage;
printDocument.Print();
QuestionScreensaver denied access to process/window list ? Pin
andymo221-Apr-17 11:12
andymo221-Apr-17 11:12 
GeneralRe: Screensaver denied access to process/window list ? Pin
Eddy Vluggen21-Apr-17 12:30
professionalEddy Vluggen21-Apr-17 12:30 
GeneralRe: Screensaver denied access to process/window list ? Pin
andymo222-Apr-17 2:56
andymo222-Apr-17 2:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.