Click here to Skip to main content
15,909,445 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
AnswerRe: Parent/Child forms problem?? Pin
richiemac2-Aug-05 4:34
richiemac2-Aug-05 4:34 
Questionmigrating from C++ classes to windows forms app? Pin
Member 341989125-Jul-05 20:06
Member 341989125-Jul-05 20:06 
AnswerRe: migrating from C++ classes to windows forms app? Pin
Christian Graus26-Jul-05 8:27
protectorChristian Graus26-Jul-05 8:27 
GeneralRe: migrating from C++ classes to windows forms app? Pin
Member 341989128-Jul-05 1:03
Member 341989128-Jul-05 1:03 
GeneralDragging a borderless Form.... Pin
Qwick Miller25-Jul-05 18:41
Qwick Miller25-Jul-05 18:41 
GeneralRe: Dragging a borderless Form.... Pin
Christian Graus25-Jul-05 19:15
protectorChristian Graus25-Jul-05 19:15 
GeneralRe: Dragging a borderless Form.... Pin
Qwick Miller26-Jul-05 4:20
Qwick Miller26-Jul-05 4:20 
GeneralRe: Dragging a borderless Form.... Pin
Christian Graus26-Jul-05 8:21
protectorChristian Graus26-Jul-05 8:21 
POINT lastDrag

OnMouseDown
{
lastDrag = CurrentMousePosition (should be a parameter passed in to the event handler, but not this name )
}

OnMouseMove
{
POINT moved = lastDrag - CurrentMousePosition
lastDrag = CurrentMousePosition
::SetWindowPos(NULL, currentX + moved.X, currentY + moved.Y, 0, 0, SWP_NOSIZE | SWP_NOZORDER)
}

This is pseudocode.


Christian Graus - Microsoft MVP - C++
GeneralRe: Dragging a borderless Form.... Pin
Qwick Miller30-Jul-05 8:39
Qwick Miller30-Jul-05 8:39 
GeneralC++ 5.0 and displaying Chinese characters Pin
mshuster25-Jul-05 6:13
mshuster25-Jul-05 6:13 
GeneralRe: C++ 5.0 and displaying Chinese characters Pin
Judah Gabriel Himango25-Jul-05 6:27
sponsorJudah Gabriel Himango25-Jul-05 6:27 
GeneralRe: C++ 5.0 and displaying Chinese characters Pin
mshuster25-Jul-05 6:31
mshuster25-Jul-05 6:31 
Generalusing MessengerAPI Pin
Asad Hussain25-Jul-05 5:49
Asad Hussain25-Jul-05 5:49 
GeneralAdd managed event handler function in unmanaged code Pin
Gian24-Jul-05 23:25
Gian24-Jul-05 23:25 
GeneralRe: Add managed event handler function in unmanaged code Pin
Gian25-Jul-05 5:34
Gian25-Jul-05 5:34 
QuestionStoring windows positions in registry??? Pin
richiemac24-Jul-05 22:03
richiemac24-Jul-05 22:03 
AnswerRe: Storing windows positions in registry??? Pin
Qwick Miller30-Jul-05 8:48
Qwick Miller30-Jul-05 8:48 
QuestionRemote Desktop post a different display? Pin
nlyre24-Jul-05 15:51
nlyre24-Jul-05 15:51 
AnswerRe: Remote Desktop post a different display? Pin
Christian Graus2-Aug-05 14:11
protectorChristian Graus2-Aug-05 14:11 
GeneralRe: Remote Desktop post a different display? Pin
nlyre3-Aug-05 6:03
nlyre3-Aug-05 6:03 
GeneralRe: Remote Desktop post a different display? Pin
Christian Graus3-Aug-05 13:13
protectorChristian Graus3-Aug-05 13:13 
GeneralRe: Stranger in a Strange Land Pin
Christian Graus24-Jul-05 19:03
protectorChristian Graus24-Jul-05 19:03 
GeneralRe: Stranger in a Strange Land Pin
nlyre2-Aug-05 4:13
nlyre2-Aug-05 4:13 
GeneralRe: Stranger in a Strange Land Pin
Christian Graus2-Aug-05 14:10
protectorChristian Graus2-Aug-05 14:10 
GeneralConvert SYSTEMTIME to BSTR Pin
banski24-Jul-05 4:15
banski24-Jul-05 4:15 

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.