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