Click here to Skip to main content
15,895,557 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: how can list box display other language? Pin
eusto14-Jul-06 0:05
eusto14-Jul-06 0:05 
AnswerRe: how can list box display other language? Pin
Hamid_RT14-Jul-06 1:30
Hamid_RT14-Jul-06 1:30 
GeneralRe: how can list box display other language? Pin
mimimimilaw14-Jul-06 18:04
mimimimilaw14-Jul-06 18:04 
GeneralRe: how can list box display other language? Pin
Hamid_RT15-Jul-06 5:08
Hamid_RT15-Jul-06 5:08 
QuestionSpin control Pin
ashish dogra13-Jul-06 22:55
ashish dogra13-Jul-06 22:55 
AnswerRe: Spin control Pin
_AnsHUMAN_ 13-Jul-06 23:02
_AnsHUMAN_ 13-Jul-06 23:02 
GeneralRe: Spin control Pin
ashish dogra13-Jul-06 23:12
ashish dogra13-Jul-06 23:12 
GeneralRe: Spin control Pin
_AnsHUMAN_ 13-Jul-06 23:16
_AnsHUMAN_ 13-Jul-06 23:16 
You need to override the function for OnDeltaposSpin1:
void CTestDlg::OnDeltaposSpin1(NMHDR *pNMHDR, LRESULT *pResult)
{
	LPNMUPDOWN pNMUpDown = reinterpret_cast<LPNMUPDOWN>(pNMHDR);
	CString s;s.Format ("%d",pNMUpDown->iPos );
	m_edit.SetWindowText (s);
	// TODO: Add your control notification handler code here
	*pResult = 0;
}



Somethings seem HARD to do, until we know how to do them.
Wink | ;-) _AnShUmAn_
GeneralRe: Spin control Pin
ashish dogra13-Jul-06 23:24
ashish dogra13-Jul-06 23:24 
GeneralRe: Spin control Pin
_AnsHUMAN_ 13-Jul-06 23:33
_AnsHUMAN_ 13-Jul-06 23:33 
GeneralRe: Spin control Pin
ashish dogra13-Jul-06 23:44
ashish dogra13-Jul-06 23:44 
GeneralRe: Spin control Pin
_AnsHUMAN_ 14-Jul-06 0:19
_AnsHUMAN_ 14-Jul-06 0:19 
GeneralRe: Spin control Pin
Hamid_RT14-Jul-06 2:21
Hamid_RT14-Jul-06 2:21 
AnswerRe: Spin control Pin
Parthi_Appu13-Jul-06 23:04
Parthi_Appu13-Jul-06 23:04 
GeneralRe: Spin control Pin
ashish dogra13-Jul-06 23:28
ashish dogra13-Jul-06 23:28 
QuestionSetWinEventHook [modified] Pin
Abhi Lahare13-Jul-06 22:48
Abhi Lahare13-Jul-06 22:48 
AnswerRe: SetWinEventHook Pin
Hamid_RT14-Jul-06 1:27
Hamid_RT14-Jul-06 1:27 
QuestionWhile the [Maximize] button is clicked? Pin
Maxwell Chen13-Jul-06 22:32
Maxwell Chen13-Jul-06 22:32 
AnswerRe: While the [Maximize] button is clicked? Pin
Nibu babu thomas13-Jul-06 22:40
Nibu babu thomas13-Jul-06 22:40 
GeneralRe: While the [Maximize] button is clicked? [modified] Pin
Maxwell Chen13-Jul-06 23:04
Maxwell Chen13-Jul-06 23:04 
GeneralRe: While the [Maximize] button is clicked? [modified] Pin
Maxwell Chen13-Jul-06 23:09
Maxwell Chen13-Jul-06 23:09 
AnswerRe: While the [Maximize] button is clicked? Pin
Parthi_Appu13-Jul-06 23:02
Parthi_Appu13-Jul-06 23:02 
GeneralRe: While the [Maximize] button is clicked? Pin
Maxwell Chen13-Jul-06 23:05
Maxwell Chen13-Jul-06 23:05 
AnswerRe: While the [Maximize] button is clicked? Pin
Hamid_RT14-Jul-06 1:34
Hamid_RT14-Jul-06 1:34 
GeneralRe: While the [Maximize] button is clicked? Pin
Maxwell Chen16-Jul-06 7:36
Maxwell Chen16-Jul-06 7:36 

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.