Click here to Skip to main content
15,900,435 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to learn machine name and username by using IP adress Pin
Dave Kreskowiak5-Jan-09 8:21
mveDave Kreskowiak5-Jan-09 8:21 
GeneralRe: How to learn machine name and username by using IP adress Pin
Sokka935-Jan-09 8:46
Sokka935-Jan-09 8:46 
GeneralRe: How to learn machine name and username by using IP adress Pin
Sokka935-Jan-09 8:48
Sokka935-Jan-09 8:48 
GeneralRe: How to learn machine name and username by using IP adress Pin
Sokka935-Jan-09 8:56
Sokka935-Jan-09 8:56 
GeneralRe: How to learn machine name and username by using IP adress Pin
Dave Kreskowiak5-Jan-09 10:41
mveDave Kreskowiak5-Jan-09 10:41 
GeneralRe: How to learn machine name and username by using IP adress Pin
Sokka936-Jan-09 3:11
Sokka936-Jan-09 3:11 
QuestionObject combobox in HTML Pin
trinm19875-Jan-09 6:34
trinm19875-Jan-09 6:34 
Questionhow to clear screen when i draw to screen? Pin
ping_jacob5-Jan-09 6:31
ping_jacob5-Jan-09 6:31 
how to clear this graphic? if i draw graphic to screen
example: public static void DrawToScreen(int pointX, int pointY)
{
IntPtr deskDC = UnmanagedMethods.GetDC(IntPtr.Zero);

Graphics g = Graphics.FromHdc(deskDC);
GraphicsContainer cont = g.BeginContainer();
g.SmoothingMode = SmoothingMode.AntiAlias;
g.SmoothingMode = SmoothingMode.HighQuality;
g.FillRectangle(new SolidBrush(Color.FromArgb(255, Color.Blue)), pointX, pointY, 2, 2);
g.EndContainer(cont);
g.Dispose();

UnmanagedMethods.ReleaseDC(deskDC);
}

this fucntion fill rectangle to screen.
if i need to clear screen(clear desktop), how i do?

please give some tips or hints for me
thanks a lot....
AnswerRe: how to clear screen when i draw to screen? Pin
Tony Richards5-Jan-09 10:35
Tony Richards5-Jan-09 10:35 
GeneralRe: how to clear screen when i draw to screen? Pin
Dragonfly_Lee5-Jan-09 17:02
Dragonfly_Lee5-Jan-09 17:02 
GeneralRe: how to clear screen when i draw to screen? Pin
ping_jacob6-Jan-09 3:04
ping_jacob6-Jan-09 3:04 
GeneralRe: how to clear screen when i draw to screen? Pin
Tony Richards6-Jan-09 3:17
Tony Richards6-Jan-09 3:17 
GeneralRe: how to clear screen when i draw to screen? Pin
ping_jacob6-Jan-09 7:19
ping_jacob6-Jan-09 7:19 
Questionlog4net and nhibernate: app.config - conn string pwd in clear? Pin
devvvy5-Jan-09 5:13
devvvy5-Jan-09 5:13 
AnswerRe: log4net and nhibernate: app.config - conn string pwd in clear? Pin
#realJSOP5-Jan-09 5:34
professional#realJSOP5-Jan-09 5:34 
GeneralRe: log4net and nhibernate: app.config - conn string pwd in clear? Pin
devvvy5-Jan-09 14:49
devvvy5-Jan-09 14:49 
QuestionHow to declare an use a struct containing an array? Pin
scjsb5-Jan-09 5:13
scjsb5-Jan-09 5:13 
AnswerRe: How to declare an use a struct containing an array? Pin
Christian Graus5-Jan-09 5:17
protectorChristian Graus5-Jan-09 5:17 
AnswerRe: How to declare an use a struct containing an array? Pin
moon_stick5-Jan-09 5:25
moon_stick5-Jan-09 5:25 
GeneralRe: How to declare an use a struct containing an array? Pin
Not Active5-Jan-09 5:53
mentorNot Active5-Jan-09 5:53 
GeneralRe: How to declare an use a struct containing an array? Pin
moon_stick5-Jan-09 6:25
moon_stick5-Jan-09 6:25 
GeneralRe: How to declare an use a struct containing an array? Pin
Not Active5-Jan-09 6:52
mentorNot Active5-Jan-09 6:52 
AnswerRe: How to declare an use a struct containing an array? [modified] Pin
#realJSOP5-Jan-09 5:36
professional#realJSOP5-Jan-09 5:36 
AnswerRe: How to declare an use a struct containing an array? Pin
Russell Jones5-Jan-09 5:42
Russell Jones5-Jan-09 5:42 
AnswerRe: How to declare an use a struct containing an array? Pin
Dragonfly_Lee5-Jan-09 17:39
Dragonfly_Lee5-Jan-09 17:39 

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.