Click here to Skip to main content
15,890,512 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Opening an URL in MFC Pin
ThatsAlok15-Jan-06 19:08
ThatsAlok15-Jan-06 19:08 
QuestionAround 500 controls in a Dialog Pin
AnsGe13-Jan-06 3:03
AnsGe13-Jan-06 3:03 
AnswerRe: Around 500 controls in a Dialog Pin
toxcct13-Jan-06 3:10
toxcct13-Jan-06 3:10 
AnswerRe: Around 500 controls in a Dialog Pin
Maximilien13-Jan-06 3:13
Maximilien13-Jan-06 3:13 
GeneralRe: Around 500 controls in a Dialog Pin
Rajesh R Subramanian13-Jan-06 18:55
professionalRajesh R Subramanian13-Jan-06 18:55 
AnswerRe: Around 500 controls in a Dialog Pin
khan++13-Jan-06 3:18
khan++13-Jan-06 3:18 
GeneralRe: Around 500 controls in a Dialog Pin
Shraddhan23-Jan-06 0:19
Shraddhan23-Jan-06 0:19 
GeneralRe: Around 500 controls in a Dialog Pin
khan++23-Jan-06 0:45
khan++23-Jan-06 0:45 
No I am not sure that they all will fit on one dialog. If you are using it maximized with screen resolutions 1024 x 768, then maybe it is possible.

Actually it all depends on the size of individual controls, and what you choose to put in them, like text, icons, images etc.

Suggestion:
You should rather use a property sheet with a few property pages in it. That way, you can put fewer controls on each page, and it would be easier to create and use, and would fit in a smaller screen area.

Now about your code:
CStatic m_Static[500];// is not a very good idea.<br />
//You should rather use:<br />
CStatic* m_pStatic;<br />
m_pStatic = new CStatic[500];// etc


However, I strongly recommend using property sheet and pages.


this is this.
GeneralRe: Around 500 controls in a Dialog Pin
Shraddhan23-Jan-06 1:04
Shraddhan23-Jan-06 1:04 
GeneralRe: Around 500 controls in a Dialog Pin
khan++23-Jan-06 1:13
khan++23-Jan-06 1:13 
GeneralRe: Around 500 controls in a Dialog Pin
Shraddhan23-Jan-06 1:22
Shraddhan23-Jan-06 1:22 
GeneralRe: Around 500 controls in a Dialog Pin
khan++23-Jan-06 1:32
khan++23-Jan-06 1:32 
AnswerRe: Around 500 controls in a Dialog Pin
Sheng Jiang 蒋晟13-Jan-06 18:18
Sheng Jiang 蒋晟13-Jan-06 18:18 
AnswerRe: Around 500 controls in a Dialog Pin
ThatsAlok15-Jan-06 18:54
ThatsAlok15-Jan-06 18:54 
QuestionDebug a 6.0.DLL from VS.NET Pin
eddyroth13-Jan-06 2:40
eddyroth13-Jan-06 2:40 
AnswerRe: Debug a 6.0.DLL from VS.NET Pin
Chris Losinger13-Jan-06 4:36
professionalChris Losinger13-Jan-06 4:36 
GeneralRe: Debug a 6.0.DLL from VS.NET Pin
eddyroth13-Jan-06 5:44
eddyroth13-Jan-06 5:44 
GeneralRe: Debug a 6.0.DLL from VS.NET Pin
Chris Losinger13-Jan-06 5:46
professionalChris Losinger13-Jan-06 5:46 
GeneralRe: Debug a 6.0.DLL from VS.NET Pin
eddyroth13-Jan-06 6:01
eddyroth13-Jan-06 6:01 
GeneralRe: Debug a 6.0.DLL from VS.NET Pin
Nish Nishant13-Jan-06 6:26
sitebuilderNish Nishant13-Jan-06 6:26 
GeneralRe: Debug a 6.0.DLL from VS.NET Pin
eddyroth13-Jan-06 6:51
eddyroth13-Jan-06 6:51 
GeneralRe: Debug a 6.0.DLL from VS.NET Pin
Nish Nishant13-Jan-06 10:16
sitebuilderNish Nishant13-Jan-06 10:16 
GeneralRe: Debug a 6.0.DLL from VS.NET Pin
eddyroth15-Jan-06 21:40
eddyroth15-Jan-06 21:40 
GeneralRe: Debug a 6.0.DLL from VS.NET Pin
Chris Losinger13-Jan-06 7:32
professionalChris Losinger13-Jan-06 7:32 
GeneralRe: Debug a 6.0.DLL from VS.NET Pin
eddyroth15-Jan-06 21:43
eddyroth15-Jan-06 21:43 

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.