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: Dogss
  • Order by date
  1. Dogss

    Running SAS by VB OLE Heko

    Hello all, I am running a program in VB that generate 4 variables (B1,B2,B3,B4). I have a quartic polynomial equation such that B1x^4 + B2x^3 + B3x^2 + B4x = 0 Where I need to solve for x I was having great difficulty in trying to solve this using VB script and thought it may be simpler to...
  2. Dogss

    SAS Code

    I am trying to understand the following SAS code so that I may try and use it in Visual Basic. The SAS code I am using is START FLEISHMAN; X1 = COEF[1] X2 = COEF[2] X3 = COEF[3] F = (X1**2+6*X1*X3+2*X2**2+15*X3**2-1)// (2*X2*(X1**2+24*X1*X3+105*X3**2+2)-SKWENESS)// ...etc...
  3. Dogss

    Updating text box value

    Thanks heaps, DSUM worked.
  4. Dogss

    Updating text box value

    I am trying to sum values from a query and enter the summation into a text box. I am using the following code; txt_Sum.ControlSource= "SELECT SUM(qry_final.Temp) FROM qry_final WHERE qry_final.Hour>= '" & StartTime & "' AND qry_final.Code = '" & ADL & "' AND qry_final.Hour <= '" & FinishTime...

Part and Inventory Search

Back
Top