Modal forms are great for locking the user out of non focused forms
allowing tight control over program flow, but they have one side
effect which user find very irritating i.e. Access cannot be
minimized.
Perhaps I should be satisfied with the routine I have written which
disables controls on a form before the popup form is opened but a
background form full of disabled controls can look damned ugly in
certain circumstances:-
Function EnableFrm (onoff As Boolean, frm as form)
Dim ctrl As Control
For Each ctrl In frm.Controls
On Error Resume Next
ctrl.Enabled = onoff
Next ctrl
End Function
Other than putting a desktop shortcut in the taskbar does anyone have
any alternative suggestions to this conundrum.
Many Thanks
Chris
allowing tight control over program flow, but they have one side
effect which user find very irritating i.e. Access cannot be
minimized.
Perhaps I should be satisfied with the routine I have written which
disables controls on a form before the popup form is opened but a
background form full of disabled controls can look damned ugly in
certain circumstances:-
Function EnableFrm (onoff As Boolean, frm as form)
Dim ctrl As Control
For Each ctrl In frm.Controls
On Error Resume Next
ctrl.Enabled = onoff
Next ctrl
End Function
Other than putting a desktop shortcut in the taskbar does anyone have
any alternative suggestions to this conundrum.
Many Thanks
Chris
Comment