I don't understand why a left-right scroll bar was never implemented for reading the long entries when at a low resolution (Safe Mode).
in frmMain.frm
Begin VB.TextBox txtHelp Height = 3735 Left = 120 Locked = -1 'True MultiLine = -1 'True ScrollBars = 2 'Vertical TabIndex = 7 Top = 240 Width = 5895 End
to:
Begin VB.TextBox txtHelp Height = 3735 Left = 120 Locked = -1 'True MultiLine = -1 'True ScrollBars = 3 'Both TabIndex = 7 Top = 240 Width = 5895 End
Hi Mark,
Would you like to participate improving HJT? I'm looking for VB6 dev to improve it.
Loucif
I tried that but it doesn't seem to work on my end.
that textbox is not the one Fety is talking about, he is talking about the main textbox where you see the results with the diff checkbox.
Solution for other textboxes is similar just change the ScrollBars = 2 'Vertical property to ScrollBars = 3 'Both for the specific textbox
Fixed frmMain to include the scrollbar on the scan click + resize of the window.
thank you for that. Added to the code and tested. works.
Log in to post a comment.
in frmMain.frm
Begin VB.TextBox txtHelp
Height = 3735
Left = 120
Locked = -1 'True
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 7
Top = 240
Width = 5895
End
to:
Begin VB.TextBox txtHelp
Height = 3735
Left = 120
Locked = -1 'True
MultiLine = -1 'True
ScrollBars = 3 'Both
TabIndex = 7
Top = 240
Width = 5895
End
Hi Mark,
Would you like to participate improving HJT? I'm looking for VB6 dev to improve it.
Loucif
I tried that but it doesn't seem to work on my end.
that textbox is not the one Fety is talking about, he is talking about the main textbox where you see the results with the diff checkbox.
Solution for other textboxes is similar just change the
ScrollBars = 2 'Vertical
property to
ScrollBars = 3 'Both
for the specific textbox
Fixed frmMain to include the scrollbar on the scan click + resize of the window.
thank you for that. Added to the code and tested. works.