From 28c4b12a54fbd424958b728b06dbf11a7eb181b0 Mon Sep 17 00:00:00 2001 From: Behrend Cornelius Date: Mon, 1 Oct 2001 14:39:53 +0000 Subject: #91427# Focus now set to Listbox --- wizards/source/webwizard/HtmlAutoPilotBasic.xba | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'wizards/source/webwizard') diff --git a/wizards/source/webwizard/HtmlAutoPilotBasic.xba b/wizards/source/webwizard/HtmlAutoPilotBasic.xba index dd2b713624d9..b474841a29b4 100644 --- a/wizards/source/webwizard/HtmlAutoPilotBasic.xba +++ b/wizards/source/webwizard/HtmlAutoPilotBasic.xba @@ -79,6 +79,7 @@ Sub Main sBitmapPath = SOBitmapPath & "webwizard.bmp" DialogModel.ImagePreview.ImageURL = sBitmapPath ToggleOptionButtons(DialogModel, bWithBackGraphic) + MainDialog.GetControl("lbTemplate").SetFocus = True DialogModel.cbGoOn.DefaultButton = True MainDialog.Execute @@ -104,7 +105,7 @@ Dim CurInd as Integer 'On Local Error Goto ErrorOcurred ' Todo:Check if the pointer is really disabled, when set to Hourglass ToggleDialogControls(False) - oBaseDocument.LockControllers +' oBaseDocument.LockControllers ' Get selected list entry and corresponding file name CurInd = GetCurIndex(DialogModel.lbTemplate, Layout(), NumberofLayouts%, 2) oCursor = oBaseDocument.Text.CreateTextCursor() @@ -118,9 +119,9 @@ ErrorOcurred: If Err <> 0 Then MsgBox(WebWiz_gErrWhileReloading$, 16, WebWiz_gWizardName$) End If - oBaseDocument.UnlockControllers +' oBaseDocument.UnlockControllers oViewCursor.GotoStart(False) - ToggleDialogControls(True) + ToggleDialogControls(True, "lbTemplate") End Sub @@ -146,7 +147,7 @@ Dim CurIndex as Integer CheckControls(oBaseDocument.DrawPage) oViewCursor.GotoStart(False) oBaseDocument.UnlockControllers - ToggleDialogControls(True) + ToggleDialogControls(True, "lbStyles") End Sub @@ -396,7 +397,7 @@ Dim sBitmapPath as String End Sub -Sub ToggleDialogControls(ByVal bDoEnable as Boolean) +Sub ToggleDialogControls(ByVal bDoEnable as Boolean, Optional FocusControlName as String) With DialogModel .cbCancel.Enabled = bDoEnable .cbGoOn.Enabled = bDoEnable @@ -409,6 +410,7 @@ Sub ToggleDialogControls(ByVal bDoEnable as Boolean) If bDoEnable Then ' Enable Controls referring to Background graphic only when this Property is set bDoEnable = bWithBackGraphic + MainDialog.GetControl(FocusControlName).SetFocus = True End If ToggleOptionButtons(DialogModel, bDoEnable) End With -- cgit v1.2.3