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 bkrike 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 fowlerlfc

  1. fowlerlfc

    System State not an option

    I am using Backup Exec version 9.1 Rev. 4691. When I create a backup job, I don't have the option on my servers to select system state. I have the appropriate agents installed on all servers, but yet the system state node is not visible. Any ideas? THanks in advance for your help!
  2. fowlerlfc

    Trying to connect to SQL 6.5 with ODBC Connector

    well, that does away with my build error, but it returns a null error on the dataset when i load that page. i know that there's data there. i think the problem lies in how i'm building the connection string dynamically by using a variable from another page. i've built a test page in the ide...
  3. fowlerlfc

    Display Information from one page to another

    here's a super down and dirty way to do it... on page1.aspx: <a href=page2.aspx?page=1>page two</a> then on page2.aspx: dim pagenum as string pagenum = request.querystring("page") response.write(pagenum) this should display the number 1.
  4. fowlerlfc

    Trying to connect to SQL 6.5 with ODBC Connector

    I'm trying to connect to a SQL 6.5 database. I get build errors on the following line: For Each dr In dsname.Tables(0) The error is: Expression is of type 'System.Data.DataTable', which is not a collection type. Forgive me if this is a simple problem, I'm new to ASP.NET. Here's my code...
  5. fowlerlfc

    need help getting return value from SQL stored procedure...

    jshurst, your code was what i needed. after executing it, i found that my stored procedure wasn't returning anything, so i edited it, and now everything is working like a charm! Thanks for your help!
  6. fowlerlfc

    need help getting return value from SQL stored procedure...

    First of all, I'm new to VB.net, so please excuse my ignorance. I'm trying to get a return value from the following stored procedure: CREATE PROCEDURE cc_add ( @username varchar(30), @orderdate datetime ) AS insert into orders (username, orderdate) values (@username, @orderdate) declare...
  7. fowlerlfc

    databound dropdown list problem...

    I've bound SQL data to a dropdownlist successfully, but no matter what choice is made in the dropdownlist, the first item is the only one that will display in ddl.selecteditem.text... For example the first item is #wrtcart001. The secound item is #wrtcart002. If I choose the second item...
  8. fowlerlfc

    databound dropdown list problem...

    I forgot to mention, that this is on a webform..
  9. fowlerlfc

    databound dropdown list problem...

    I've bound SQL data to a dropdownlist successfully, but no matter what choice is made in the dropdownlist, the first item is the only one that will display in ddl.selecteditem.text... For example the first item is #wrtcart001. The secound item is #wrtcart002. If I choose the second item...
  10. fowlerlfc

    how to fix browser differences?

    Thanks for your help!
  11. fowlerlfc

    how to fix browser differences?

    Vragabond, Is the following doctype invalid? <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> I fixed my menu titles. Thanks! Any places to learn more about the box model? Once again, thanks in advance for all of your help!
  12. fowlerlfc

    how to fix browser differences?

    i'm fairly new to css, and i've created a css formatted webpage. it is here: http://www.reuniontitle.com/sc/newindex.htm it renders as intended in internet explorer, but looks crazy in firefox and mozilla. can someone give me some tips on how to fix/workaround these issues? thanks in...
  13. fowlerlfc

    loader component giving me fits!

    i was never able to figure this out... glad you got yours worked out though!
  14. fowlerlfc

    want to split cell data into two seperate cells...

    i have data in one cell formatted like: smith, bob. i want to split that data into two cells. one for the firstname and one for the lastname. i'm not asking anyone to write a formula for me, but if you could maybe just give me guidance on which functions to look at i would be very grateful...

Part and Inventory Search

Back
Top