Needs scroll bar help in form popup window thanks!

D

devastator442

Hello,

I use the DoCmd.OpenForm command in a button on one of my forms to open
another form. The form that opens is in a special window with no maximize or
minimize button on the corner and no vertical scroll bar. Tha data is cutoff
and extends vertically past the limits of my screen. I open the form this
way because I have the main form refresh after the subform is closed (saw it
on another posting). Can anyone tell me how to add a vertical scroll bar to
this form window that pops up? Thanks.


Private Sub SoftwareButton_Click()
On Error GoTo Err_SoftwareButton_Click


DoCmd.OpenForm "SoftwareTBL", , , , , acDialog

DoCmd.DoMenuItem acFormBar, acRecordsMenu, 5, , acMenuVer70

Exit_SoftwareButton_Click:
Exit Sub

Err_SoftwareButton_Click:
MsgBox Err.Description
Resume Exit_SoftwareButton_Click

End Sub
 
Top