Click here to Skip to main content
15,920,005 members
Home / Discussions / C#
   

C#

 
GeneralRe: print job copies Pin
Duncan Edwards Jones25-Oct-04 4:33
professionalDuncan Edwards Jones25-Oct-04 4:33 
GeneralRe: print job copies Pin
jartometienen25-Oct-04 22:25
jartometienen25-Oct-04 22:25 
Generaldownload File into local machine Pin
juanito197525-Oct-04 0:36
juanito197525-Oct-04 0:36 
GeneralRe: download File into local machine Pin
Alex Korchemniy25-Oct-04 7:29
Alex Korchemniy25-Oct-04 7:29 
QuestionWhy I cann't get the message device type:DBT_DEVTYP_DEVICEINTERFACE? Pin
momer25-Oct-04 0:16
momer25-Oct-04 0:16 
AnswerRe: Why I cann't get the message device type:DBT_DEVTYP_DEVICEINTERFACE? Pin
WilsonProgramming25-Oct-04 5:56
WilsonProgramming25-Oct-04 5:56 
GeneralRe: Why I cann't get the message device type:DBT_DEVTYP_DEVICEINTERFACE? Pin
momer25-Oct-04 14:51
momer25-Oct-04 14:51 
Questionhow to save a GDI+ Pin
xiaowenjie24-Oct-04 19:51
xiaowenjie24-Oct-04 19:51 
hi, i've drawn using GDI+ onto a form. now i need to save this drawing as bitmap. i used double buffering. my coding:

bt = new Bitmap (800,600); //delare bitmap
myGraphics = Graphics.FromImage(bt); //declare Graphics



private void btnSave_Click(object sender, System.EventArgs e)
{
SaveFileDialog saveFileDialog1 = new SaveFileDialog();
saveFileDialog1.Title ="Save File";
saveFileDialog1.Filter = "Bitmaps (*.bmp)|*.bmp";

if ((saveFileDialog1.ShowDialog() == DialogResult.OK))
{
string strFileName = saveFileDialog1.FileName;
bt.Save(strFileName,ImageFormat.Bmp); //is it the way?
}
}
how do i capture the drawing i did n save it?



Chris
AnswerRe: how to save a GDI+ Pin
J4amieC24-Oct-04 21:48
J4amieC24-Oct-04 21:48 
GeneralRe: how to save a GDI+ Pin
xiaowenjie25-Oct-04 10:34
xiaowenjie25-Oct-04 10:34 
AnswerRe: how to save a GDI+ Pin
Anonymous24-Oct-04 22:07
Anonymous24-Oct-04 22:07 
QuestionObfuscators: Xenocode, opinion? Pin
Carl Mercier24-Oct-04 18:06
Carl Mercier24-Oct-04 18:06 
QuestionHow to define INVALID_HANDLE_VALUE in C#? Pin
momer24-Oct-04 17:21
momer24-Oct-04 17:21 
AnswerRe: How to define INVALID_HANDLE_VALUE in C#? Pin
Nick Parker24-Oct-04 17:47
protectorNick Parker24-Oct-04 17:47 
GeneralRe: How to define INVALID_HANDLE_VALUE in C#? Pin
momer25-Oct-04 1:08
momer25-Oct-04 1:08 
Generalrelation between mouse event and showintaskbar Pin
yu-yu24-Oct-04 16:11
yu-yu24-Oct-04 16:11 
GeneralRe: relation between mouse event and showintaskbar Pin
Dave Kreskowiak25-Oct-04 9:20
mveDave Kreskowiak25-Oct-04 9:20 
GeneralRe: relation between mouse event and showintaskbar Pin
yu-yu25-Oct-04 14:20
yu-yu25-Oct-04 14:20 
GeneralRe: relation between mouse event and showintaskbar Pin
yu-yu25-Oct-04 14:36
yu-yu25-Oct-04 14:36 
GeneralRe: relation between mouse event and showintaskbar Pin
Dave Kreskowiak25-Oct-04 14:59
mveDave Kreskowiak25-Oct-04 14:59 
GeneralRe: relation between mouse event and showintaskbar Pin
yu-yu25-Oct-04 15:14
yu-yu25-Oct-04 15:14 
GeneralUpdating the client form Pin
Anonymous24-Oct-04 15:56
Anonymous24-Oct-04 15:56 
GeneralRe: Updating the client form Pin
Alex Korchemniy24-Oct-04 18:52
Alex Korchemniy24-Oct-04 18:52 
GeneralTextBox property limitation Pin
sachinkalse24-Oct-04 15:14
sachinkalse24-Oct-04 15:14 
GeneralRe: TextBox property limitation Pin
Alex Korchemniy24-Oct-04 18:26
Alex Korchemniy24-Oct-04 18:26 

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.