How to display dialog box items?

Reply

Join Date: Mar 2007
Posts: 35
Reputation: Tales is an unknown quantity at this point 
Solved Threads: 1
Tales Tales is offline Offline
Light Poster

How to display dialog box items?

 
0
  #1
Apr 12th, 2007
I have this dialog box:
  1. IDD_GRUPO_NOMBRAR DIALOGEX 447, 19, 226, 263
  2. STYLE DS_SETFONT | DS_SETFOREGROUND | WS_POPUP | WS_CAPTION
  3. EXSTYLE WS_EX_CONTEXTHELP | WS_EX_CONTROLPARENT
  4. CAPTION "Nombrar grupos"
  5. FONT 8, "Tahoma", 400, 0, 0x0
  6. BEGIN
  7. CTEXT "Por favor numere los grupos",IDC_STATIC,65,8,92,8
  8. GROUPBOX "Los grupos iguales deben tener el mismo nombre",IDC_STATIC,16,24,189,212,BS_CENTER | BS_FLAT,WS_EX_TRANSPARENT
  9. EDITTEXT IDC_NOMBRAR1,20,38,84,12,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER | NOT WS_TABSTOP,WS_EX_TRANSPARENT
  10. EDITTEXT IDC_NOMBRAR2,20,57,84,12,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER | NOT WS_TABSTOP,WS_EX_TRANSPARENT
  11. EDITTEXT IDC_NOMBRAR3,20,76,84,12,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER | NOT WS_TABSTOP,WS_EX_TRANSPARENT
  12. EDITTEXT IDC_NOMBRAR4,20,95,84,12,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER | NOT WS_TABSTOP,WS_EX_TRANSPARENT
  13. EDITTEXT IDC_NOMBRAR5,20,114,84,12,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER | NOT WS_TABSTOP,WS_EX_TRANSPARENT
  14. EDITTEXT IDC_NOMBRAR6,20,133,84,12,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER | NOT WS_TABSTOP,WS_EX_TRANSPARENT
  15. EDITTEXT IDC_NOMBRAR7,20,152,84,12,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER | NOT WS_TABSTOP,WS_EX_TRANSPARENT
  16. EDITTEXT IDC_NOMBRAR8,20,171,84,12,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER | NOT WS_TABSTOP,WS_EX_TRANSPARENT
  17. EDITTEXT IDC_NOMBRAR9,20,190,84,12,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER | NOT WS_TABSTOP,WS_EX_TRANSPARENT
  18. EDITTEXT IDC_NOMBRAR10,20,209,84,12,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER | NOT WS_TABSTOP,WS_EX_TRANSPARENT
  19. COMBOBOX IDC_COMBO1,137,37,48,30,CBS_DROPDOWN | NOT WS_VISIBLE | WS_VSCROLL | WS_TABSTOP
  20. COMBOBOX IDC_COMBO2,137,56,48,30,CBS_DROPDOWN | NOT WS_VISIBLE | WS_VSCROLL | WS_TABSTOP
  21. COMBOBOX IDC_COMBO3,137,74,48,30,CBS_DROPDOWN | NOT WS_VISIBLE | WS_VSCROLL | WS_TABSTOP
  22. COMBOBOX IDC_COMBO4,137,93,48,30,CBS_DROPDOWN | NOT WS_VISIBLE | WS_VSCROLL | WS_TABSTOP
  23. COMBOBOX IDC_COMBO5,137,112,48,30,CBS_DROPDOWN | NOT WS_VISIBLE | WS_VSCROLL | WS_TABSTOP
  24. COMBOBOX IDC_COMBO6,137,131,48,30,CBS_DROPDOWN | NOT WS_VISIBLE | WS_VSCROLL | WS_TABSTOP
  25. COMBOBOX IDC_COMBO7,137,150,48,30,CBS_DROPDOWN | NOT WS_VISIBLE | WS_VSCROLL | WS_TABSTOP
  26. COMBOBOX IDC_COMBO8,137,169,48,30,CBS_DROPDOWN | NOT WS_VISIBLE | WS_VSCROLL | WS_TABSTOP
  27. COMBOBOX IDC_COMBO9,137,188,48,30,CBS_DROPDOWN | NOT WS_VISIBLE | WS_VSCROLL | WS_TABSTOP
  28. COMBOBOX IDC_COMBO10,137,206,48,30,CBS_DROPDOWN | NOT WS_VISIBLE | WS_VSCROLL | WS_TABSTOP
  29. DEFPUSHBUTTON "Aceptar",IDOK,59,242,50,14
  30. PUSHBUTTON "Cancelar",IDCANCEL,113,242,50,14
  31. END
Can anyone tell me how to make visible the inputs and combobox using a function? or a way to set NOT WS_VISIBLE to WS_VISIBLE ?
Reply With Quote Quick reply to this message  
Join Date: Mar 2007
Posts: 35
Reputation: Tales is an unknown quantity at this point 
Solved Threads: 1
Tales Tales is offline Offline
Light Poster

Re: How to display dialog box items?

 
0
  #2
Apr 13th, 2007
I still wonder why nobody helps me... ?
As far as I know, i'm not asking people to do my work... just to help me figure a way to solve it
Reply With Quote Quick reply to this message  
Join Date: Apr 2006
Posts: 5,050
Reputation: John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold 
Solved Threads: 332
Team Colleague
John A's Avatar
John A John A is offline Offline
Vampirical Lurker

Re: How to display dialog box items?

 
0
  #3
Apr 13th, 2007
>I still wonder why nobody helps me... ?
Probably because this is not a Windows programming forum. True, this is the correct subforum to post questions like these at DaniWeb, however you may be better off in a forum more dedicated to Win32 development. (I myself have done very little Windows GUI programming.)
"Technological progress is like an axe in the hands of a pathological criminal."
Reply With Quote Quick reply to this message  
Join Date: Mar 2007
Posts: 35
Reputation: Tales is an unknown quantity at this point 
Solved Threads: 1
Tales Tales is offline Offline
Light Poster

Re: How to display dialog box items?

 
0
  #4
Apr 15th, 2007
Still no answer? Please this is really important and I'm stuck...
Reply With Quote Quick reply to this message  
Join Date: Apr 2006
Posts: 5,050
Reputation: John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold 
Solved Threads: 332
Team Colleague
John A's Avatar
John A John A is offline Offline
Vampirical Lurker

Re: How to display dialog box items?

 
0
  #5
Apr 15th, 2007
Most of us aren't replying because we're mean or lazy, we just lack the expetise needed with Windows GUI programming to make a suggestion.

No answer after this long means you should definitely go looking for a forum specialized in Win32 GUI development. Sorry.
"Technological progress is like an axe in the hands of a pathological criminal."
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the C Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC