This may be simplistic but you can also limit the input to your boxes with this. It would not allow them to enter anything but numbers.
Private Sub Text2_KeyPress(KeyAscii As Integer)
If KeyAscii < 48 Or KeyAscii > 57 Then
KeyAscii = 0
Beep
(enter the numbers into your variables here)
End If...
I am trying to use Activereports 2.0 to print out a report from a sequential text file. I know it works well with Databases but I am stubborn and want to figure this out. How can I get it to create new fields on the report and populate them with the information that I am reading in using this...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.