2017-01-18 4 views
1

하위 폼이있는 분할 폼이 있습니다. 양식이로드 될 때마다 하위 양식 데이터가 자동으로 확장됩니다.스플릿 폼 데이터 시트보기 형식 수정

폼이로드 될 때 자동으로 하위 폼의 데이터 시트보기를 축소 할 수 있습니까?

enter image description here

답변

1

사용 VBA가로드 될 때 자동으로 하위 폼을 축소하기 :

Dim strExpand As String 

With Forms("Purchase Orders") 

strExpand = InputBox("Expand subdatasheets? Y/N") 

Select Case strExpand 
    Case "Y" 
     .SubdatasheetExpanded = True 
    Case "N" 
     .SubdatasheetExpanded = False 
    Case Else 
     MsgBox "Can't determine subdatasheet expansion state." 
End Select 

End With 
+0

(더 쉽게하고, 당신이'strExpand =있는 MsgBox를 사용해야합니다 예 또는 아니요 말 사용자를 강제로 "서브 데이터 시트 확장?", vbYesNo)'오히려 – Seb