Click here to Skip to main content
15,886,137 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Reading from fstream in CString object Pin
krmed3-Apr-09 0:47
krmed3-Apr-09 0:47 
QuestionPopupDailog steal the current focus Pin
S p k 5212-Apr-09 18:13
S p k 5212-Apr-09 18:13 
QuestionHow can I paste data to other windows (who ever is accepting) ? [modified] Pin
Yovav2-Apr-09 17:07
Yovav2-Apr-09 17:07 
AnswerRe: How can I paste data to other windows (who ever is accepting) ? Pin
Niklas L2-Apr-09 23:02
Niklas L2-Apr-09 23:02 
GeneralRe: How can I paste data to other windows (who ever is accepting) ? Pin
Yovav3-Apr-09 1:23
Yovav3-Apr-09 1:23 
QuestionRe: How can I paste data to other windows (who ever is accepting) ? Pin
David Crow3-Apr-09 3:15
David Crow3-Apr-09 3:15 
AnswerRe: How can I paste data to other windows (who ever is accepting) ? Pin
Iain Clarke, Warrior Programmer3-Apr-09 1:22
Iain Clarke, Warrior Programmer3-Apr-09 1:22 
GeneralRe: How can I paste data to other windows (who ever is accepting) ? Pin
Yovav3-Apr-09 1:35
Yovav3-Apr-09 1:35 
Well, its not really a problem - because I am sending the "WM_PASTE" message only to that specific control on which the user had put the cursor on,

POINT pt;
GetCursorPos(&pt);
editControl = WindowFromPoint(pt);
editControl->GetFocus();
editControl->SendMessage(WM_PASTE, 0, 0);


Also - the user is not going to lose control over anything,
This program gonna help users run and paste data exactly like they want it.

Best Regards - Yovav Gad
CEO and founder of MicroMighty, Inc.

GeneralRe: How can I paste data to other windows (who ever is accepting) ? Pin
Niklas L3-Apr-09 2:40
Niklas L3-Apr-09 2:40 
GeneralRe: How can I paste data to other windows (who ever is accepting) ? Pin
Iain Clarke, Warrior Programmer3-Apr-09 2:53
Iain Clarke, Warrior Programmer3-Apr-09 2:53 
GeneralRe: How can I paste data to other windows (who ever is accepting) ? Pin
David Crow3-Apr-09 3:18
David Crow3-Apr-09 3:18 
GeneralRe: How can I paste data to other windows (who ever is accepting) ? Pin
Yovav3-Apr-09 20:29
Yovav3-Apr-09 20:29 
QuestionHow to get a huge struct array? Pin
jebbe2-Apr-09 16:02
jebbe2-Apr-09 16:02 
AnswerRe: How to get a huge struct array? Pin
Luc Pattyn2-Apr-09 16:41
sitebuilderLuc Pattyn2-Apr-09 16:41 
JokeRe: How to get a huge struct array? Pin
Niklas L2-Apr-09 23:35
Niklas L2-Apr-09 23:35 
GeneralRe: How to get a huge struct array? Pin
jebbe3-Apr-09 20:24
jebbe3-Apr-09 20:24 
AnswerRe: How to get a huge struct array? Pin
Stuart Dootson2-Apr-09 21:19
professionalStuart Dootson2-Apr-09 21:19 
GeneralRe: How to get a huge struct array? Pin
jebbe3-Apr-09 20:28
jebbe3-Apr-09 20:28 
AnswerRe: How to get a huge struct array? Pin
Iain Clarke, Warrior Programmer3-Apr-09 1:51
Iain Clarke, Warrior Programmer3-Apr-09 1:51 
GeneralRe: How to get a huge struct array? Pin
Niklas L3-Apr-09 2:58
Niklas L3-Apr-09 2:58 
GeneralRe: How to get a huge struct array? Pin
Iain Clarke, Warrior Programmer3-Apr-09 3:13
Iain Clarke, Warrior Programmer3-Apr-09 3:13 
GeneralRe: How to get a huge struct array? Pin
jebbe3-Apr-09 20:49
jebbe3-Apr-09 20:49 
JokeRe: How to get a huge struct array? Pin
Niklas L6-Apr-09 22:34
Niklas L6-Apr-09 22:34 
GeneralRe: How to get a huge struct array? Pin
Iain Clarke, Warrior Programmer6-Apr-09 22:40
Iain Clarke, Warrior Programmer6-Apr-09 22:40 
GeneralRe: How to get a huge struct array? Pin
Niklas L6-Apr-09 23:15
Niklas L6-Apr-09 23: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.