Hello Expert,
I am new in vb 6, Require code correction to prevent current drop down calendar from displaying below the bottom edge of the application.
the calendar and the code calling the calendar.
Calendar and selection of date works fine except if it is called from a row near the bottom of the screen the calendar extends below the screen.
VB6 application.
I am new in vb 6, Require code correction to prevent current drop down calendar from displaying below the bottom edge of the application.
the calendar and the code calling the calendar.
Calendar and selection of date works fine except if it is called from a row near the bottom of the screen the calendar extends below the screen.
VB6 application.
Code:
// Calling Sub
Private Sub dgGLT_CellButtonClick(ByVal row As Long, ByVal col As Long)
Dim lfrmNewPopup As frmPopup
Select Case col
Case myColREFD
Set lfrmNewPopup = New frmPopup
lfrmNewPopup.EditCellCalendar dgGLT, row, col
Set lfrmNewPopup = Nothing