Click here to Skip to main content
Sign Up to vote bad
good
See more: VS2008MFCVC++
I am creating a static text dynamically for tab control
 
BOOL abc::OnInitDialog()
{
m_cTab.Create("live picture",1040,0,180,255,0,30,152); //item id is 1040,tabID is 0
}
In resource.h
#define IDC_IMAGE 1040
I have a button on Dialog box
I want take handle of this static field on click event
my code is
void abc::bntclick()
{
HWND wnd=::GetDlgItem(m_hWnd, IDC_IMAGE);
}
It shows wnd = 0x00000000 {unused=??? }
Posted 11 Sep '12 - 23:47

Comments
Jochen Arndt - 12 Sep '12 - 6:30
What kind of control is m_cTab? Your Create() call parameters does not match for common CWnd derived classes. Also, why did you use the numeric value 1040 in some places and the definition IDC_IMAGE in other places? Finally, if m_cTab is the member variable of your static control, why did not use m_cTab.m_hWnd or m_cTab.GetSafeHwnd()?

1 solution

viod abc::bntclick()
{
HWND wnd=::GetDlgItem(m_cTab.GetSafeHwnd(), id);
}
  Permalink  

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Sergey Alexandrovich Kryukov 353
1 OriginalGriff 345
2 Arun Vasu 315
3 Maciej Los 208
4 Aarti Meswania 180
0 Sergey Alexandrovich Kryukov 9,680
1 OriginalGriff 7,539
2 CPallini 4,018
3 Rohan Leuva 3,362
4 Maciej Los 2,951


Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 13 Sep 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid