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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jcook32

  1. jcook32

    VB 6 Question

    Does it really matter where the error is . I need code for a do while loop using the recordset EOF do you know what the code is???
  2. jcook32

    VB 6 Question

    when the loop tries to execute This is all my code Private Sub Form_Load() Set objLoginInformation = CreateObject("WScript.Network") Dim adoConn As New ADODB.Connection adoConn.Provider = "SQLOLEDB.1" adoConn.ConnectionString =...
  3. jcook32

    VB 6 Question

    when i run the project. runtime error 438 Object does not support this property or method
  4. jcook32

    VB 6 Question

    I need the code to do a loop using the record set EOF Here is what I have:(i get an error) rsuserinfo.Recordset.MoveFirst Do While Not (rsuserinfo.Recordset.EOF) rsuserinfo.MoveNext Loop thanks
  5. jcook32

    VB 6 Question

    I need to do several things with a VB exe. 1 When a user logs in a login script is run. I need to get the login ID. Not sure if there is a standard way of getting this. 2How do you open a IE browser window automaticly from VB 3What section of the VB project would all of the above go and where...
  6. jcook32

    Need to display total on last set of records

    You are the man!!! Thanks Another question. I want to take those three totals and add them together to get a Total for the whole column which would be the department total. Thanks Hey we have the same last name Cook Any relative in Pittsburgh, PA area?? Joe Cook
  7. jcook32

    Need to display total on last set of records

    I have code that works ok. It keeps a running total and displays it on the screen. the way i have the code set up though is it does not give me a running total for the last set of data. My screen looks like this: Health Care Group |30 | 31-60 |61-90 |91-120 |120 | Net |...
  8. jcook32

    need to display the results from a record set

    the data returned from the sql statement looks like this grpname under 30 days $$ xxx 200 xxx 255 xxx 666 xxx 888 xxx 444 yyy 555 yyy 343 yyy 656 yyy 878 yyy 557 zzz 3434 zzz 454 zzz 322 zzz 0909 zzz...
  9. jcook32

    need to display the results from a record set

    this is my sql statement: SQLstr="SELECT tkinit,tkfirst,tklast,tkloc,ldesc,tkdept,head1,tksect,tsectdes,mclient,clname1," SQLstr=SQLstr& " right(mmatter,5) as matter,mdesc1," SQLstr=SQLstr& " (arf1 + arc1 + aro1 + ari1) as one," SQLstr=SQLstr& " (arf2 + arc2 +...
  10. jcook32

    need to display the results from a record set

    I have a SQL statement that returns some data say 1000 rows. Each row has a Dept in common. Each dept has Groups within it. Say Dept1 has 3 Sub Groups. Each sub group may have any number of records for the question's sake lets say group one has 500 rows and Group 2 has 300 rows and group 3 has...
  11. jcook32

    display rows from a database in ASP

    this is in the wrong forum. It should be in a asp forum.
  12. jcook32

    display rows from a database in ASP

    I have a SQL statement that returns some data say 1000 rows. Each row has a Dept in common. Each dept has Groups within it. Say Dept1 has 3 Sub Groups. Each sub group may have any number of records for the question's sake lets say group one has 500 rows and Group 2 has 300 rows and group 3 has...
  13. jcook32

    diplaying Data from a stored procedure

    Litigation 7029.05 0 0 0 0 7029.05 Litigation 0 0 0 0 148618.679 148618.679 Litigation 0 21615.14 0 0 0 21615.14 Litigation 0 0 0 0 47843.7464 47843.7464 Litigation 0 0 0 0 2630.25 2630.25 Litigation 5860.91 0 0 0 0 5860.91 above a several rows of data the is returned...
  14. jcook32

    diplaying Data from a stored procedure

    I have a stored proc. that returns a bunch or records. There is a col. called head1. there are 5 different departs in head1 I need to display each department once and give running totals of other columns. ex there is say 100 records with the head1 as Litiagation with each row have some numbers...
  15. jcook32

    crystal report issue

    I am using ASP when I run it in the browser

Part and Inventory Search

Back
Top