Click here to Skip to main content
15,914,070 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Unresolved external symbol in a DLL Pin
George_George18-Dec-08 0:22
George_George18-Dec-08 0:22 
GeneralRe: Unresolved external symbol in a DLL Pin
Stuart Dootson18-Dec-08 0:36
professionalStuart Dootson18-Dec-08 0:36 
GeneralRe: Unresolved external symbol in a DLL Pin
George_George18-Dec-08 1:25
George_George18-Dec-08 1:25 
GeneralRe: Unresolved external symbol in a DLL [modified] Pin
Stuart Dootson18-Dec-08 2:42
professionalStuart Dootson18-Dec-08 2:42 
GeneralRe: Unresolved external symbol in a DLL Pin
George_George20-Dec-08 0:07
George_George20-Dec-08 0:07 
AnswerRe: Unresolved external symbol in a DLL Pin
Stuart Dootson15-Dec-08 12:38
professionalStuart Dootson15-Dec-08 12:38 
GeneralRe: Unresolved external symbol in a DLL Pin
George_George16-Dec-08 1:35
George_George16-Dec-08 1:35 
QuestionPropertySheet in a dialog Pin
Kiran Pinjala14-Dec-08 23:27
Kiran Pinjala14-Dec-08 23:27 
I have created a SDI application with a Form view. In the form view ihave inserted a property sheet like this...
void CMyFormView::OnInitialUpdate()
{
	CFormView::OnInitialUpdate();

	m_PropSheet.AddPage(&m_Page1);
	m_PropSheet.AddPage(&m_Page2);

	m_PropSheet.Create(this, WS_CHILD | WS_VISIBLE, 0);
	m_PropSheet.ModifyStyleEx (0, WS_EX_CONTROLPARENT);
	m_PropSheet.ModifyStyle( 0, WS_TABSTOP );
        m_bViewInitiated = true;

}

I wanted the property sheet to span the whole area of the form view, so i have written few line for that as...
void CMyFormView::OnSize(UINT nType, int cx, int cy)
{
	CFormView::OnSize(nType, cx, cy);
	if(m_bViewInitiated)
	{
		m_PropSheet.SetWindowPos((CWnd*)this, 0, 0, cx, cy,SWP_NOZORDER | SWP_NOACTIVATE );
	}
}


But the property sheet is not behaving as i expected. Its size remains same as the property pages sizes given at the creation time.

Can you help me with this...
Thank you

Tritva

modified on Monday, December 15, 2008 5:33 AM

QuestionGet dependent Dll list Pin
MANISH RASTOGI14-Dec-08 23:22
MANISH RASTOGI14-Dec-08 23:22 
GeneralRe: Get dependent Dll list Pin
CPallini14-Dec-08 23:28
mveCPallini14-Dec-08 23:28 
AnswerRe: Get dependent Dll list Pin
Jijo.Raj14-Dec-08 23:38
Jijo.Raj14-Dec-08 23:38 
AnswerRe: Get dependent Dll list Pin
K. Sushilkumar17-Dec-08 1:41
K. Sushilkumar17-Dec-08 1:41 
QuestionPrivileges Using an Application Manifest Pin
MsmVc14-Dec-08 22:14
MsmVc14-Dec-08 22:14 
QuestionRe: Privileges Using an Application Manifest Pin
Mark Salsbery15-Dec-08 11:16
Mark Salsbery15-Dec-08 11:16 
AnswerRe: Privileges Using an Application Manifest Pin
MsmVc15-Dec-08 17:10
MsmVc15-Dec-08 17:10 
GeneralRe: Privileges Using an Application Manifest [modified] Pin
Mark Salsbery16-Dec-08 5:08
Mark Salsbery16-Dec-08 5:08 
GeneralRe: Privileges Using an Application Manifest Pin
Mark Salsbery16-Dec-08 5:23
Mark Salsbery16-Dec-08 5:23 
Question[Message Deleted] Pin
rukawa8414-Dec-08 22:14
rukawa8414-Dec-08 22:14 
QuestionRe: Conversion from jstring to char* Pin
CPallini14-Dec-08 22:58
mveCPallini14-Dec-08 22:58 
GeneralRe: Conversion from jstring to char* Pin
rukawa8414-Dec-08 23:08
rukawa8414-Dec-08 23:08 
QuestionRe: Conversion from jstring to char* Pin
CPallini14-Dec-08 23:26
mveCPallini14-Dec-08 23:26 
GeneralRe: Conversion from jstring to char* Pin
rukawa8415-Dec-08 0:39
rukawa8415-Dec-08 0:39 
GeneralRe: Conversion from jstring to char* Pin
CPallini15-Dec-08 0:48
mveCPallini15-Dec-08 0:48 
GeneralRe: Conversion from jstring to char* Pin
rukawa8415-Dec-08 15:11
rukawa8415-Dec-08 15:11 
Questionhelp in erasing the part of string Pin
tasumisra14-Dec-08 21:14
tasumisra14-Dec-08 21:14 

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.