Click here to Skip to main content
15,889,216 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
AnswerRe: How to read an HDF file and convert it into ASCII file(extension) using C programme Pin
cariolihome27-Oct-10 11:17
cariolihome27-Oct-10 11:17 
AnswerRe: How to read an HDF file and convert it into ASCII file(extension) using C programme Pin
Stuart Dootson27-Oct-10 11:56
professionalStuart Dootson27-Oct-10 11:56 
AnswerRe: How to read an HDF file and convert it into ASCII file(extension) using C programme Pin
schoetbi15-Mar-11 6:31
schoetbi15-Mar-11 6:31 
GeneralRe: How to read an HDF file and convert it into ASCII file(extension) using C programme Pin
cmaheshwari1615-Mar-11 19:35
cmaheshwari1615-Mar-11 19:35 
QuestionDialog Based Applications Pin
Anil Kumar.Arvapalli22-Oct-10 1:29
Anil Kumar.Arvapalli22-Oct-10 1:29 
AnswerRe: Dialog Based Applications Pin
Richard MacCutchan22-Oct-10 2:48
mveRichard MacCutchan22-Oct-10 2:48 
QuestionShow tooltip in CTreeViewCtrl use WTL Pin
shg10421-Oct-10 23:38
shg10421-Oct-10 23:38 
AnswerRe: Show tooltip in CTreeViewCtrl use WTL Pin
Alain Rist22-Oct-10 1:44
Alain Rist22-Oct-10 1:44 
If your tree control has TVS_INFOTIP style it will send it's parent the TVN_GETINFOTIP [^] notification.
Handle it in the parent message map with the
NOTIFY_CODE_HANDLER(TVN_GETINFOTIP, OnGetInfoTip) macro and a matching
LRESULT OnGetInfoTip(int /*idCtrl*/, LPNMHDR pnmh, BOOL& /*bHandled*/)
{
    LPNMTVGETINFOTIP pgit = (LPNMTVGETINFOTIP)pnmh;
    // set adequate values in *pgit

cheers,
AR
When the wise (person) points at the moon the fool looks at the finger (Chinese proverb)

GeneralRe: Show tooltip in CTreeViewCtrl use WTL Pin
shg10425-Oct-10 15:41
shg10425-Oct-10 15:41 
GeneralRe: Show tooltip in CTreeViewCtrl use WTL Pin
Alain Rist25-Oct-10 19:46
Alain Rist25-Oct-10 19:46 
QuestionModularizing Help Pin
Aaronov20-Oct-10 13:07
Aaronov20-Oct-10 13:07 
AnswerRe: Modularizing Help Pin
Richard MacCutchan20-Oct-10 21:57
mveRichard MacCutchan20-Oct-10 21:57 
AnswerRe: Modularizing Help Pin
@Intersect☺™17-Nov-10 11:06
professional@Intersect☺™17-Nov-10 11:06 
GeneralRe: Modularizing Help Pin
Aaronov17-Nov-10 11:17
Aaronov17-Nov-10 11:17 
QuestionCList inside a CMap Pin
kasi1420-Oct-10 8:51
kasi1420-Oct-10 8:51 
AnswerRe: CList inside a CMap Pin
Richard MacCutchan20-Oct-10 21:58
mveRichard MacCutchan20-Oct-10 21:58 
AnswerRe: CList inside a CMap Pin
Cool_Dev21-Oct-10 0:15
Cool_Dev21-Oct-10 0:15 
Questionvector<string> and find Pin
Jonnster20-Oct-10 3:33
Jonnster20-Oct-10 3:33 
AnswerRe: vector and find [modified] PinPopular
Alain Rist20-Oct-10 5:04
Alain Rist20-Oct-10 5:04 
Questionhow to allocate memory dynamically for 2 dimensional array and use that pointer like and array.... Pin
cmaheshwari1619-Oct-10 18:40
cmaheshwari1619-Oct-10 18:40 
AnswerRe: how to allocate memory dynamically for 2 dimensional array and use that pointer like and array.... Pin
Stuart Dootson20-Oct-10 1:11
professionalStuart Dootson20-Oct-10 1:11 
Questionabout pthread.h Pin
lxlenovostar18-Oct-10 5:36
lxlenovostar18-Oct-10 5:36 
AnswerRe: about pthread.h Pin
Richard MacCutchan18-Oct-10 9:28
mveRichard MacCutchan18-Oct-10 9:28 
GeneralRe: about pthread.h Pin
lxlenovostar18-Oct-10 15:59
lxlenovostar18-Oct-10 15:59 
GeneralRe: about pthread.h Pin
Richard MacCutchan18-Oct-10 22:27
mveRichard MacCutchan18-Oct-10 22:27 

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.