Search results
Search results 1-2 of 2.
Dear visitor, welcome to Jabaco - Community.
If this is your first visit here, please read the Help. It explains in detail how this page works.
To use all features of this page, you should consider registering.
Please use the registration form, to register here or read more information about the registration process.
If you are already registered, please login here.
Does anybody know how to read a text file (.txt) and display it in a scrollable textbox? I have various text files (250-500 lines long) that I want to open and display in textbox. Many thanks in advance!!!
Hi, I have a textbox that Iwant to prevent some characters from not being input (%, $, @, #, ? etc) Can anybody tell me how to do tis in Jabaco. My Visual Basic code is.... Private Sub Text1_KeyPress(KeyAscii As Integer) KeyAscii = Asc(Chr$(KeyAscii)) If KeyAscii < 48 Then If KeyAscii <> 45 Then If KeyAscii <> 8 Then KeyAscii = 0 If KeyAscii = 91 Then KeyAscii = 0 If KeyAscii > 58 Then If KeyAscii < 65 Then KeyAscii = 0 If KeyAscii > 92 Then If KeyAscii < 97 Then KeyAscii = 0 If KeyAscii > 122 T...