Click here to Skip to main content
15,902,189 members
Home / Discussions / C#
   

C#

 
AnswerRe: GDI problem, Drawing rectangle by drag and drop. Pin
Anthony Mushrow14-Sep-08 5:03
professionalAnthony Mushrow14-Sep-08 5:03 
Question? operator wuestion Pin
Mohammad Dayyan14-Sep-08 1:57
Mohammad Dayyan14-Sep-08 1:57 
AnswerRe: ? operator wuestion [modified] Pin
Perspx14-Sep-08 2:12
Perspx14-Sep-08 2:12 
GeneralRe: ? operator wuestion Pin
Lutosław14-Sep-08 2:56
Lutosław14-Sep-08 2:56 
GeneralRe: ? operator wuestion Pin
Guffa14-Sep-08 3:43
Guffa14-Sep-08 3:43 
GeneralRe: ? operator wuestion Pin
Perspx14-Sep-08 3:48
Perspx14-Sep-08 3:48 
QuestionUsing the office 2007 Ribbon ( drag-n-drop a window without using the border ) [modified] Pin
Mahhouraaaaaa14-Sep-08 1:22
Mahhouraaaaaa14-Sep-08 1:22 
AnswerRe: Using the office 2007 Ribbon ( drag-n-drop a window without using the border ) Pin
The Cake of Deceit14-Sep-08 9:37
The Cake of Deceit14-Sep-08 9:37 
public const int WM_NCLBUTTONDOWN = 0xA1; 
public const int HTCAPTION = 0x2;
 
[DllImport("User32.dll")]
public static extern bool ReleaseCapture(); 
[DllImport("User32.dll")] 
public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam); 

private void Form1_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e) // let anything on MouseDown handle with this
{ 
     if (e.Button == MouseButtons.Left) 
     { 
          ReleaseCapture(); 
          SendMessage(Handle, WM_NCLBUTTONDOWN, HTCAPTION, 0); 
     }
}  

I founder it from Syncfusion. ([^])

Chuck Norris has the greatest Poker-Face of all time. He won the 1983 World Series of Poker, despite holding only a Joker, a Get out of Jail Free Monopoloy card, a 2 of clubs, 7 of spades and a green #4 card from the game UNO.
In the movie "The Matrix", Chuck Norris is the Matrix. If you pay close attention in the green "falling code" scenes, you can make out the faint texture of his beard.
Chuck Norris actually owns IBM. It was an extremely hostile takeover.

QuestionDebugging External .exe Pin
Jammer14-Sep-08 1:03
Jammer14-Sep-08 1:03 
AnswerRe: Debugging External .exe Pin
Jimmanuel14-Sep-08 9:18
Jimmanuel14-Sep-08 9:18 
QuestionWhat am I doing wrong with this OnPaint override? Pin
Dewald14-Sep-08 0:17
Dewald14-Sep-08 0:17 
AnswerRe: What am I doing wrong with this OnPaint override? Pin
Anthony Mushrow14-Sep-08 0:57
professionalAnthony Mushrow14-Sep-08 0:57 
GeneralRe: What am I doing wrong with this OnPaint override? Pin
Dewald14-Sep-08 2:08
Dewald14-Sep-08 2:08 
QuestionRe: What am I doing wrong with this OnPaint override? [modified] Pin
Dewald14-Sep-08 3:59
Dewald14-Sep-08 3:59 
Questionhow can i send data to database without repetition Pin
ahmedhassan9613-Sep-08 23:23
ahmedhassan9613-Sep-08 23:23 
AnswerRe: how can i send data to database without repetition Pin
User 665813-Sep-08 23:55
User 665813-Sep-08 23:55 
AnswerRe: how can i send data to database without repetition Pin
Blue_Boy13-Sep-08 23:59
Blue_Boy13-Sep-08 23:59 
AnswerRe: how can i send data to database without repetition Pin
nelsonpaixao14-Sep-08 12:51
nelsonpaixao14-Sep-08 12:51 
QuestionHow can we find windows Temp folder ? Pin
Mohammad Dayyan13-Sep-08 20:44
Mohammad Dayyan13-Sep-08 20:44 
AnswerRe: How can we find windows Temp folder ? Pin
M Harris13-Sep-08 23:10
M Harris13-Sep-08 23:10 
AnswerRe: How can we find windows Temp folder ? Pin
Giorgi Dalakishvili13-Sep-08 23:24
mentorGiorgi Dalakishvili13-Sep-08 23:24 
AnswerRe: How can we find windows Temp folder ? Pin
DaveyM6914-Sep-08 23:33
professionalDaveyM6914-Sep-08 23:33 
GeneralRe: How can we find windows Temp folder ? Pin
Mohammad Dayyan15-Sep-08 3:08
Mohammad Dayyan15-Sep-08 3:08 
GeneralRe: How can we find windows Temp folder ? Pin
DaveyM6915-Sep-08 3:48
professionalDaveyM6915-Sep-08 3:48 
GeneralRe: How can we find windows Temp folder ? Pin
Mohammad Dayyan15-Sep-08 9:47
Mohammad Dayyan15-Sep-08 9:47 

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.