fix for bug#31201 - including a vertical scroll bar to scroll for more than 10 configurations - at present the configs are there but we can see them only when we use the arrow to go down

git-svn-id: svn://10.0.0.236/trunk@64236 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
varada%netscape.com 2000-03-27 21:34:55 +00:00
parent 30a4816649
commit d8e6e4adad
3 changed files with 7 additions and 2 deletions

View File

@ -64,12 +64,15 @@ BOOL CSumDlg::OnInitDialog()
for(int i=0; i< GlobalArrayIndex; i++)
{
str2 = GlobalWidgetArray[i].name;
if (GlobalWidgetArray[i].type != "RadioButton"
&& GlobalWidgetArray[i].type != "RadioGroup"
&& GlobalWidgetArray[i].type != "Text"
&& GlobalWidgetArray[i].type != "BoldText"
&& GlobalWidgetArray[i].type != "Button"
&& GlobalWidgetArray[i].type != "GroupBox"
&& GlobalWidgetArray[i].type != "BoldGroup" )
&& GlobalWidgetArray[i].type != "BoldGroup"
&& str2.Left(1) != "_")
{
if (GlobalWidgetArray[i].name != "")
{

View File

@ -1168,6 +1168,7 @@ void CWizardMachineApp::CreateNewCache()
if (CompareValue)
{
if (GlobalWidgetArray[i].type != "RadioButton"
&& GlobalWidgetArray[i].type != "RadioGroup"
&& GlobalWidgetArray[i].type != "Text"
&& GlobalWidgetArray[i].type != "BoldText"
&& GlobalWidgetArray[i].type != "Button"
@ -1183,6 +1184,7 @@ void CWizardMachineApp::CreateNewCache()
}
}
else if (GlobalWidgetArray[i].type != "RadioButton"
&& GlobalWidgetArray[i].type != "RadioGroup"
&& GlobalWidgetArray[i].type != "Text"
&& GlobalWidgetArray[i].type != "BoldText"
&& GlobalWidgetArray[i].type != "Button"

View File

@ -698,7 +698,7 @@ void CWizardUI::CreateControls()
}
else if (widgetType == "ComboBox") {
curWidget->control = new CComboBox;
rv = ((CComboBox*)curWidget->control)->Create(CBS_DROPDOWNLIST | WS_TABSTOP, tmpRect, this, ID);
rv = ((CComboBox*)curWidget->control)->Create(CBS_DROPDOWNLIST | WS_TABSTOP|WS_VSCROLL , tmpRect, this, ID);
}
else if ((widgetType == "GroupBox") || (widgetType == "BoldGroup")) {