Hello,
I created a xbrowse without vertical scrolling and the program crashed at line 2466 of xbrowse.prg:
I already fixed it locally:
I hope it is useful,
Perry
I created a xbrowse without vertical scrolling and the program crashed at line 2466 of xbrowse.prg:
case nKey == K_PGUP
::oVScroll:PageUp()
case nKey == K_PGDN
::oVScroll:PageDown()I already fixed it locally:
case nKey == K_PGUP
if ::oVScroll != nil
::oVScroll:PageUp()
endif
case nKey == K_PGDN
if ::oVScroll != nil
::oVScroll:PageDown()
endifI hope it is useful,
Perry