Click here to Skip to main content
15,896,348 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: read a file using Readfile() Pin
rahuljin20-Jun-09 1:55
rahuljin20-Jun-09 1:55 
GeneralRe: read a file using Readfile() Pin
chandu00420-Jun-09 2:06
chandu00420-Jun-09 2:06 
GeneralRe: read a file using Readfile() Pin
rahuljin20-Jun-09 3:21
rahuljin20-Jun-09 3:21 
AnswerRe: read a file using Readfile() Pin
krmed20-Jun-09 3:42
krmed20-Jun-09 3:42 
GeneralRe: read a file using Readfile() Pin
rahuljin20-Jun-09 8:13
rahuljin20-Jun-09 8:13 
GeneralRe: read a file using Readfile() Pin
krmed20-Jun-09 9:34
krmed20-Jun-09 9:34 
GeneralRe: read a file using Readfile() Pin
rahuljin20-Jun-09 22:01
rahuljin20-Jun-09 22:01 
Questionincrease the size of the DialogBox during RunTime Pin
p_196020-Jun-09 0:27
p_196020-Jun-09 0:27 
Hi,
im using the below code to increase the size of the DialogBox along with the controls inside it during Runtime...ie im overriding DoModal()function...

CTestDlgDlg is my application name....

INT_PTR CTestDlgDlg::DoModal()
{

CDialogTemplate dlt;
int nResult;
// load dialog template
//CTestDlg::IDD is the ID of my resoource...
if (!dlt.Load(MAKEINTRESOURCE(CTestDlg::IDD))) return -1;

// set your own font, for example "Arial", 10 pts.
dlt.SetFont(L"Arial", 12);

// get pointer to the modified dialog template
LPSTR pdata = (LPSTR)GlobalLock(dlt.m_hTemplate);

// let MFC know that you are using your own template
m_lpszTemplateName = NULL;
InitModalIndirect(pdata);

// display dialog box
nResult = CDialog::DoModal();

// unlock memory object
GlobalUnlock(dlt.m_hTemplate);

return nResult;
}

The issue every control in the DialogBox is getting increased except checkbox,Radio button..please let me know can i increase the size of the checkbox,RadioButton in this case....
AnswerRe: increase the size of the DialogBox during RunTime Pin
Sarath C20-Jun-09 0:35
Sarath C20-Jun-09 0:35 
GeneralRe: increase the size of the DialogBox during RunTime Pin
p_196020-Jun-09 0:42
p_196020-Jun-09 0:42 
GeneralRe: increase the size of the DialogBox during RunTime Pin
p_196020-Jun-09 1:08
p_196020-Jun-09 1:08 
AnswerRe: increase the size of the DialogBox during RunTime Pin
Ozer Karaagac20-Jun-09 15:21
professionalOzer Karaagac20-Jun-09 15:21 
AnswerRe: increase the size of the DialogBox during RunTime Pin
Rajesh R Subramanian20-Jun-09 3:02
professionalRajesh R Subramanian20-Jun-09 3:02 
GeneralRe: increase the size of the DialogBox during RunTime Pin
p_196020-Jun-09 18:05
p_196020-Jun-09 18:05 
QuestionHow to close the window? Pin
Nikesh Jagtap19-Jun-09 22:07
Nikesh Jagtap19-Jun-09 22:07 
AnswerRe: How to close the window? Pin
Rajesh R Subramanian19-Jun-09 22:44
professionalRajesh R Subramanian19-Jun-09 22:44 
QuestionHow to close the window? Pin
Nikesh Jagtap19-Jun-09 22:01
Nikesh Jagtap19-Jun-09 22:01 
AnswerRe: How to close the window? Pin
Sarath C20-Jun-09 0:30
Sarath C20-Jun-09 0:30 
QuestionComboBox in WIN32 programming. Pin
birajendu19-Jun-09 20:49
birajendu19-Jun-09 20:49 
AnswerRe: ComboBox in WIN32 programming. Pin
Sarath C20-Jun-09 0:20
Sarath C20-Jun-09 0:20 
GeneralRe: ComboBox in WIN32 programming. Pin
birajendu20-Jun-09 9:03
birajendu20-Jun-09 9:03 
QuestionNeed simple way to Launch a web based Php program from Windows MFC app Pin
Stevej19-Jun-09 16:59
Stevej19-Jun-09 16:59 
AnswerRe: Need simple way to Launch a web based Php program from Windows MFC app Pin
Sarath C19-Jun-09 19:33
Sarath C19-Jun-09 19:33 
QuestionSOLVED - MFC CFormView SB_TOP bug? [modified] Pin
Vaclav_19-Jun-09 13:48
Vaclav_19-Jun-09 13:48 
AnswerRe: MFC CFormView SB_TOP bug? Pin
Ozer Karaagac19-Jun-09 15:04
professionalOzer Karaagac19-Jun-09 15:04 

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.