Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. kford02

    calculator needs to "see" wrong input

    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...
  2. kford02

    Data Dynamic ActiveReports using Text files with VB?

    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...

Part and Inventory Search

Back
Top