Click here to Skip to main content
16,017,745 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Add data to existing excel file Pin
SandipG 5-Nov-08 20:06
SandipG 5-Nov-08 20:06 
GeneralRe: Add data to existing excel file Pin
hellogany5-Nov-08 21:39
hellogany5-Nov-08 21:39 
AnswerRe: Add data to existing excel file Pin
Iain Clarke, Warrior Programmer6-Nov-08 1:12
Iain Clarke, Warrior Programmer6-Nov-08 1:12 
AnswerRe: Add data to existing excel file Pin
David Crow6-Nov-08 5:10
David Crow6-Nov-08 5:10 
GeneralRe: Add data to existing excel file Pin
hellogany6-Nov-08 17:01
hellogany6-Nov-08 17:01 
QuestionRe: Add data to existing excel file Pin
David Crow7-Nov-08 2:33
David Crow7-Nov-08 2:33 
Questionhide toolbar buttons progmmatically. Pin
h@$@n5-Nov-08 19:34
h@$@n5-Nov-08 19:34 
QuestionDisplaying tooltip Pin
ashtwin5-Nov-08 19:19
ashtwin5-Nov-08 19:19 
Hi,
i want to display a tooltip when the mouse pointer is over a specific part of window.
I am using the following code
if(IsResizable(ptHit))
			{
				//CRect boundingBox;
				//BOOL rval = TRUE;
				if (::IsWindow(mToolTip.GetSafeHwnd()))
				{
					mToolTip.UpdateTipText(_T("Resizing not possible"), this, 60000);
					mToolTip.Activate(TRUE);
				}
				else
				{
					BOOL rVal = TRUE;
					rVal = mToolTip.Create(this, TTS_ALWAYSTIP);
					if(rVal)
					{
	                    BOOL result = mToolTip.AddTool(this, _T("Resizing not possible"), CRect(100, 150, 200, 200), 60000);
						if(result)
						{
						  mToolTip.Activate(TRUE);
						}
					}
				}
			}

But the tooltip is not coming.

Thanks
AnswerRe: Displaying tooltip Pin
Varghese Paul M5-Nov-08 23:44
Varghese Paul M5-Nov-08 23:44 
GeneralRe: Displaying tooltip Pin
ashtwin17-Nov-08 21:29
ashtwin17-Nov-08 21:29 
QuestionSet Focus on Button Control. Pin
Le@rner5-Nov-08 18:26
Le@rner5-Nov-08 18:26 
AnswerRe: Set Focus on Button Control. Pin
Varghese Paul M5-Nov-08 23:49
Varghese Paul M5-Nov-08 23:49 
GeneralRe: Set Focus on Button Control. Pin
Le@rner6-Nov-08 0:34
Le@rner6-Nov-08 0:34 
QuestionBitmap Image Problem Pin
ShilpiP5-Nov-08 18:23
ShilpiP5-Nov-08 18:23 
AnswerRe: Bitmap Image Problem Pin
Saurabh.Garg5-Nov-08 19:07
Saurabh.Garg5-Nov-08 19:07 
GeneralRe: Bitmap Image Problem Pin
ShilpiP5-Nov-08 19:21
ShilpiP5-Nov-08 19:21 
GeneralRe: Bitmap Image Problem Pin
Saurabh.Garg5-Nov-08 19:47
Saurabh.Garg5-Nov-08 19:47 
GeneralRe: Bitmap Image Problem Pin
ShilpiP5-Nov-08 20:12
ShilpiP5-Nov-08 20:12 
QuestionList View problem Pin
trioum5-Nov-08 18:12
trioum5-Nov-08 18:12 
QuestionHow to convert UNIT into wstring Pin
CodingLover5-Nov-08 17:34
CodingLover5-Nov-08 17:34 
AnswerRe: How to convert UNIT into wstring Pin
Saurabh.Garg5-Nov-08 19:10
Saurabh.Garg5-Nov-08 19:10 
GeneralRe: How to convert UNIT into wstring Pin
CodingLover5-Nov-08 19:17
CodingLover5-Nov-08 19:17 
GeneralRe: How to convert UNIT into wstring Pin
Saurabh.Garg5-Nov-08 19:38
Saurabh.Garg5-Nov-08 19:38 
QuestionHow to Uniquely identify a Windows OS installation Pin
JackWack5-Nov-08 11:13
JackWack5-Nov-08 11:13 
AnswerRe: How to Uniquely identify a Windows OS installation Pin
enhzflep5-Nov-08 14:54
enhzflep5-Nov-08 14:54 

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.