Click here to Skip to main content
15,888,401 members
Home / Discussions / C#
   

C#

 
GeneralRe: Calculate Plus Minus values from TextBox Pin
Pravin Patil, Mumbai23-Feb-11 22:31
Pravin Patil, Mumbai23-Feb-11 22:31 
QuestionLINQ to xml query Pin
faheemnadeem23-Feb-11 18:34
faheemnadeem23-Feb-11 18:34 
AnswerRe: LINQ to xml query Pin
#realJSOP24-Feb-11 4:55
mve#realJSOP24-Feb-11 4:55 
QuestionHow to display a warning message in file uploading when the uploading file is open in user machine... Pin
Rocky2323-Feb-11 18:05
Rocky2323-Feb-11 18:05 
GeneralRe: How to display a warning message in file uploading when the uploading file is open in user machine... Pin
Wayne Gaylard23-Feb-11 22:20
professionalWayne Gaylard23-Feb-11 22:20 
GeneralRe: How to display a warning message in file uploading when the uploading file is open in user machine... Pin
Rocky2323-Feb-11 22:42
Rocky2323-Feb-11 22:42 
GeneralRe: How to display a warning message in file uploading when the uploading file is open in user machine... Pin
Wayne Gaylard23-Feb-11 22:52
professionalWayne Gaylard23-Feb-11 22:52 
Questionc# Need help getting WPF window to draw behind desktop icons Pin
lanpartyes23-Feb-11 15:13
lanpartyes23-Feb-11 15:13 
Hello i have tried to get find some examples that draws behind the desktop icons and the ones i found did not do this in windows 7 atleast. so i thought i would have a go at overriding the onpaint or onrender but since im not the best yet! i can't seem to find the right way to do this. so far i managed to draw a circle behind by following this code

[DllImport("user32.dll")]
static extern IntPtr GetDesktopWindow();

[DllImport("user32.dll")]
static extern IntPtr GetDCEx(IntPtr hwnd, IntPtr hrgn, uint flags);

.......
IntPtr hdc = GetDCEx(GetDesktopWindow(), IntPtr.Zero, 1027);
using(Graphics g = Graphics.FromHdc(hdc))
{
g.FillEllipse(Brushes.Red, 0, 0, 400, 400);
}

then i tought what if i copied the e.graphics and put it into the newly created g and then tried to draw but i can't seem to copy the content of the painteventargs, is it even possible?

so i tought i ask the masters here. anyone know how to do something like this?
AnswerRe: c# Need help getting WPF window to draw behind desktop icons Pin
SledgeHammer0123-Feb-11 18:13
SledgeHammer0123-Feb-11 18:13 
GeneralRe: c# Need help getting WPF window to draw behind desktop icons Pin
lanpartyes23-Feb-11 23:49
lanpartyes23-Feb-11 23:49 
Questionvb.net to c#.net Pin
David C# Hobbyist.23-Feb-11 14:49
professionalDavid C# Hobbyist.23-Feb-11 14:49 
AnswerRe: vb.net to c#.net Pin
RobCroll23-Feb-11 16:18
RobCroll23-Feb-11 16:18 
AnswerRe: vb.net to c#.net Pin
thatraja23-Feb-11 16:29
professionalthatraja23-Feb-11 16:29 
AnswerRe: vb.net to c#.net Pin
Pravin Patil, Mumbai23-Feb-11 23:49
Pravin Patil, Mumbai23-Feb-11 23:49 
QuestionQuestion about adding/removing account Pin
turbosupramk323-Feb-11 9:05
turbosupramk323-Feb-11 9:05 
AnswerRe: Question about adding/removing account Pin
GenJerDan23-Feb-11 9:42
GenJerDan23-Feb-11 9:42 
GeneralRe: Question about adding/removing account Pin
turbosupramk323-Feb-11 10:14
turbosupramk323-Feb-11 10:14 
GeneralRe: Question about adding/removing account Pin
GenJerDan23-Feb-11 10:38
GenJerDan23-Feb-11 10:38 
GeneralRe: Question about adding/removing account Pin
turbosupramk323-Feb-11 11:05
turbosupramk323-Feb-11 11:05 
GeneralRe: Question about adding/removing account Pin
GenJerDan23-Feb-11 11:08
GenJerDan23-Feb-11 11:08 
GeneralRe: Question about adding/removing account Pin
turbosupramk323-Feb-11 11:33
turbosupramk323-Feb-11 11:33 
GeneralRe: Question about adding/removing account Pin
GenJerDan24-Feb-11 3:33
GenJerDan24-Feb-11 3:33 
GeneralRe: Question about adding/removing account Pin
turbosupramk324-Feb-11 5:27
turbosupramk324-Feb-11 5:27 
AnswerRe: Question about adding/removing account Pin
SledgeHammer0123-Feb-11 10:29
SledgeHammer0123-Feb-11 10:29 
GeneralRe: Question about adding/removing account Pin
turbosupramk323-Feb-11 11:07
turbosupramk323-Feb-11 11:07 

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.