Click here to Skip to main content
16,006,768 members
Home / Discussions / C#
   

C#

 
AnswerRe: I need help to learn about C# Pin
Nader Elshehabi2-Oct-06 19:11
Nader Elshehabi2-Oct-06 19:11 
GeneralRe: I need help to learn about C# Pin
slSoftware2-Oct-06 19:27
slSoftware2-Oct-06 19:27 
GeneralRe: I need help to learn about C# Pin
snowlin3-Oct-06 2:08
snowlin3-Oct-06 2:08 
GeneralRe: I need help to learn about C# Pin
Wolf923-Oct-06 22:45
Wolf923-Oct-06 22:45 
GeneralRe: I need help to learn about C# Pin
snowlin4-Oct-06 2:02
snowlin4-Oct-06 2:02 
QuestionOn what occassions would a form not recognize double click message? Pin
dy132-Oct-06 18:38
dy132-Oct-06 18:38 
AnswerRe: On what occassions would a form not recognize double click message? Pin
Nader Elshehabi2-Oct-06 19:22
Nader Elshehabi2-Oct-06 19:22 
GeneralRe: On what occassions would a form not recognize double click message? Pin
dy132-Oct-06 19:39
dy132-Oct-06 19:39 
Thanks, but it appears to be none of the above. Timer events no less than 200 milliseconds, i wouldn't know what could be unregistering it, The event really wasn't firing. I am also pretty sure I am not clicking on any of the controls on the form. But I forgot to include another thing. Because the form is borderless, i put in the following code taken from codeproject to be able to move the form. Could this be the cause? But it is strange because another form with this code works fine.

private void MyObj_MouseDown(object sender, MouseEventArgs e)
{
canMove = true;
x0=e.X;
y0=e.Y;
}

private void MyObj_MouseUp(object sender, MouseEventArgs e)
{
if(e.Button==MouseButtons.Left)
{
canMove = false;
}
}

protected virtual void MyObj_MouseMove(object sender, MouseEventArgs e)
{

if(e.Button==MouseButtons.Left)
{
this.Top+=e.Y-y0;
this.Left+=e.X-x0;
}
}
GeneralRe: On what occassions would a form not recognize double click message? Pin
Nader Elshehabi3-Oct-06 1:51
Nader Elshehabi3-Oct-06 1:51 
QuestionHow to write a C# dll to be called in Delphi7 Pin
luvcloud2-Oct-06 17:17
luvcloud2-Oct-06 17:17 
AnswerRe: How to write a C# dll to be called in Delphi7 Pin
Nader Elshehabi2-Oct-06 18:28
Nader Elshehabi2-Oct-06 18:28 
GeneralRe: How to write a C# dll to be called in Delphi7 Pin
luvcloud2-Oct-06 18:34
luvcloud2-Oct-06 18:34 
GeneralRe: How to write a C# dll to be called in Delphi7 Pin
Nader Elshehabi2-Oct-06 19:07
Nader Elshehabi2-Oct-06 19:07 
GeneralRe: How to write a C# dll to be called in Delphi7 Pin
Tim Wri2-Oct-06 23:05
Tim Wri2-Oct-06 23:05 
QuestionCrystal Reports single field Pin
StyrofoamSUV2-Oct-06 17:17
StyrofoamSUV2-Oct-06 17:17 
AnswerRe: Crystal Reports single field Pin
StyrofoamSUV4-Oct-06 7:55
StyrofoamSUV4-Oct-06 7:55 
Questionremoving xml attributes [modified] Pin
lagumaster2-Oct-06 16:16
lagumaster2-Oct-06 16:16 
AnswerRe: removing xml attributes Pin
Stefan Troschuetz2-Oct-06 21:21
Stefan Troschuetz2-Oct-06 21:21 
GeneralRe: removing xml attributes Pin
lagumaster3-Oct-06 17:23
lagumaster3-Oct-06 17:23 
QuestionHow should I implement throttling an application's bandwidth using c#? [modified] Pin
suchnight2-Oct-06 15:31
suchnight2-Oct-06 15:31 
AnswerRe: How should I implement throttling an application's bandwidth using c#? Pin
Nader Elshehabi2-Oct-06 16:00
Nader Elshehabi2-Oct-06 16:00 
QuestionHow to print Form ? Pin
hdv2122-Oct-06 11:15
hdv2122-Oct-06 11:15 
AnswerRe: How to print Form ? Pin
Nader Elshehabi2-Oct-06 12:46
Nader Elshehabi2-Oct-06 12:46 
AnswerRe: How to print Form ? Pin
S. Senthil Kumar2-Oct-06 23:50
S. Senthil Kumar2-Oct-06 23:50 
GeneralRe: How to print Form ? Pin
hdv2123-Oct-06 1:19
hdv2123-Oct-06 1:19 

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.