Click here to Skip to main content
16,016,712 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: USB Communication Pin
Anonymous11-Sep-05 4:18
Anonymous11-Sep-05 4:18 
GeneralRe: USB Communication Src Pin
Nautilus Master11-Sep-05 4:40
Nautilus Master11-Sep-05 4:40 
GeneralON_WM_CREATE() Definition Pin
LiYS12-Aug-05 1:23
LiYS12-Aug-05 1:23 
GeneralRe: ON_WM_CREATE() Definition Pin
Bob Stanneveld12-Aug-05 2:39
Bob Stanneveld12-Aug-05 2:39 
GeneralRe: ON_WM_CREATE() Definition Pin
Anonymous12-Aug-05 3:45
Anonymous12-Aug-05 3:45 
GeneralRe: ON_WM_CREATE() Definition Pin
LiYS12-Aug-05 4:21
LiYS12-Aug-05 4:21 
GeneralRe: ON_WM_CREATE() Definition Pin
Bob Stanneveld12-Aug-05 4:59
Bob Stanneveld12-Aug-05 4:59 
GeneralTooltips in VS .NET 2003 Pin
Ulrich12-Aug-05 1:02
Ulrich12-Aug-05 1:02 
Dear all,

I have a problem in Visual Studio .NET 2003 about implementing tooltips for dialog based controls e.g. buttons migrating from Visual Studio 6.0 which drives me crazy. In VS 6.0 the tooltips work without any problem for all controls using the method listed below:

void ...:: OnInitDialog()
{ ...
EnableToolTips (TRUE);
... };

ON_NOTIFY_EX(TTN_NEEDTEXT, 0, OnToolTipNotify)

BOOL ...::OnToolTipNotify (UINT id, NMHDR* pNMHDR, LRESULT* pResult)
{
// Tooltip Daten holen
TOOLTIPTEXT *pTTT = (TOOLTIPTEXT*) pNMHDR;

// ID des sendenden Dialogelementes holen
UINT nID = pTTT->hdr.idFrom;

...}

If I compile and link the source code using .NET 2003 Professional the tooltips appear for some controls, and for some controls NOT. I don't know why. I found that for some controls the message handler OnToolTipNotify will be started, for some controls not. I could check it setting a break point.

Is there any solution for this problem known ? Thanks for all help.


Ulrich
QuestionHow to fetch the columns from a table using vc++ CRecordSet Pin
G.Radhakrishna12-Aug-05 0:10
G.Radhakrishna12-Aug-05 0:10 
AnswerRe: How to fetch the columns from a table using vc++ CRecordSet Pin
Cedric Moonen12-Aug-05 1:31
Cedric Moonen12-Aug-05 1:31 
Generaliocp threads exit Pin
Michael Olsen11-Aug-05 23:54
Michael Olsen11-Aug-05 23:54 
GeneralRe: iocp threads exit Pin
geo_m13-Aug-05 21:36
geo_m13-Aug-05 21:36 
GeneralDisplaying Jpeg image in a dialog box Pin
jj92111-Aug-05 23:52
jj92111-Aug-05 23:52 
GeneralRe: Displaying Jpeg image in a dialog box Pin
ThatsAlok12-Aug-05 0:27
ThatsAlok12-Aug-05 0:27 
GeneralRe: Displaying Jpeg image in a dialog box Pin
Anonymous12-Aug-05 21:54
Anonymous12-Aug-05 21:54 
GeneralRe: Displaying Jpeg image in a dialog box Pin
ThatsAlok12-Aug-05 22:08
ThatsAlok12-Aug-05 22:08 
GeneralHelpNeeded Pin
nayankumarp11-Aug-05 23:52
nayankumarp11-Aug-05 23:52 
GeneralWinVer Pin
Anonymous11-Aug-05 23:48
Anonymous11-Aug-05 23:48 
GeneralRe: WinVer Pin
Trollslayer12-Aug-05 1:21
mentorTrollslayer12-Aug-05 1:21 
GeneralRe: WinVer Pin
Bob Stanneveld12-Aug-05 2:43
Bob Stanneveld12-Aug-05 2:43 
Generala command for a searching an .exe-file Pin
iboett2s11-Aug-05 23:19
iboett2s11-Aug-05 23:19 
GeneralRe: a command for a searching an .exe-file Pin
David Crow12-Aug-05 2:59
David Crow12-Aug-05 2:59 
GeneralMenu Message Handling Pin
Anonymous11-Aug-05 23:09
Anonymous11-Aug-05 23:09 
GeneralRe: Menu Message Handling Pin
ThatsAlok12-Aug-05 0:26
ThatsAlok12-Aug-05 0:26 
GeneralRe: Menu Message Handling Pin
toxcct12-Aug-05 1:15
toxcct12-Aug-05 1: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.