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: *

  • Users: ARBEE
  • Order by date
  1. ARBEE

    adding and subtracting

    Create form with three text boxes(text1,text2,text3), one CommandButton(cmdAdd) and one label(label1). Double click on the button and add the following code. Private Sub cmdAdd_Click() Dim x1, x2, x3, sum As Single x1 = Val(Text1.Text) x2 = Val(Text2.Text) x3 = Val(Text3.Text) sum = x1 + x2...
  2. ARBEE

    Bind data to a flex grid in column format instead of rows

    Is there a simple way to bind an ado recordset to a flex grid so that the data is in columns instead of rows without going through each record in a nested for loop and transposing the data?

Part and Inventory Search

Back
Top