Click here to Skip to main content
15,914,452 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How to design custom GUI using GDI+ and monitor mouse clicks Pin
Fabio Miguez22-Aug-03 5:54
Fabio Miguez22-Aug-03 5:54 
GeneralVisual Studio 2003 bug and work around Pin
bobsheep22-Aug-03 3:23
bobsheep22-Aug-03 3:23 
Generalstring to int Pin
si_6922-Aug-03 3:12
si_6922-Aug-03 3:12 
GeneralRe: string to int Pin
David Crow22-Aug-03 3:20
David Crow22-Aug-03 3:20 
GeneralRe: string to int Pin
zeki yugnak22-Aug-03 3:39
zeki yugnak22-Aug-03 3:39 
GeneralRe: string to int Pin
Michael Dunn22-Aug-03 5:43
sitebuilderMichael Dunn22-Aug-03 5:43 
Questionhow to display the item selected in a tree list Pin
coda_x22-Aug-03 2:54
coda_x22-Aug-03 2:54 
AnswerRe: how to display the item selected in a tree list Pin
Member 42425922-Aug-03 3:03
Member 42425922-Aug-03 3:03 
Please map the TVN_SELCHANGED function then Get the Current selected item by calling the

HTREEITEM hTreeItem ;
CString StrSelectedText ;
hTreeItem = TreeCtrl.GetCurrentSelectedItem ();
StrSelectedText = TreeCtrl.GetItemText(hTreeItem);

Now Set this text in the Edit Ctrl by calling the

Edt_Ctrl.SetWindowText();
Please set the appropriate parameter.



Thanx
TAKE CARE
GeneralSDI query Pin
coda_x22-Aug-03 2:37
coda_x22-Aug-03 2:37 
Generallaunch another console program Pin
Anonymous22-Aug-03 2:33
Anonymous22-Aug-03 2:33 
GeneralRe: launch another console program Pin
David Crow22-Aug-03 3:00
David Crow22-Aug-03 3:00 
GeneralRe: launch another console program Pin
Lanny Thompson22-Aug-03 3:02
Lanny Thompson22-Aug-03 3:02 
GeneralRe: launch another console program Pin
Brad Sokol22-Aug-03 3:03
Brad Sokol22-Aug-03 3:03 
GeneralRe: launch another console program Pin
Anonymous22-Aug-03 4:38
Anonymous22-Aug-03 4:38 
GeneralModeless Dialog Problem Pin
IceBerG7122-Aug-03 1:54
IceBerG7122-Aug-03 1:54 
GeneralRe: Modeless Dialog Problem Pin
Cedric Moonen22-Aug-03 1:57
Cedric Moonen22-Aug-03 1:57 
GeneralRe: Modeless Dialog Problem Pin
IceBerG7122-Aug-03 2:00
IceBerG7122-Aug-03 2:00 
GeneralRe: Modeless Dialog Problem Pin
Member 42425922-Aug-03 2:57
Member 42425922-Aug-03 2:57 
QuestionCProgressCtrl....WTF ? Pin
Brian van der Beek22-Aug-03 1:54
Brian van der Beek22-Aug-03 1:54 
AnswerRe: CProgressCtrl....WTF ? Pin
Mike Dimmick22-Aug-03 2:10
Mike Dimmick22-Aug-03 2:10 
QuestionHow to test FPU function about CPU Pin
HansonDavid22-Aug-03 0:48
HansonDavid22-Aug-03 0:48 
QuestionHow best create CHM visually ? Pin
vgrigor22-Aug-03 0:42
vgrigor22-Aug-03 0:42 
AnswerRe: How best create CHM visually ? Pin
Brad Sokol22-Aug-03 1:57
Brad Sokol22-Aug-03 1:57 
GeneralRe: How best create CHM visually ? Pin
vgrigor22-Aug-03 2:16
vgrigor22-Aug-03 2:16 
QuestionHow to implement .Net style Attributes in C++ in a non .Net Environment Pin
Ranjan Banerji22-Aug-03 0:33
Ranjan Banerji22-Aug-03 0:33 

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.