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

  1. oldmanbernie

    Gridview Issue with Selecting Row for SQL Stored Procedure

    On every row of a gridview, I want to add a button that will invoke a SQL Stored Procedure. One of the parameters I need for the stored procedure is on one of the columns of the gridview based on the corresponding row. How do I go about adding that parameter in the following form...
  2. oldmanbernie

    Displaying Barcode on ASP.Net Pages

    I will probably looking at a server solution. Are there any open sourced barcode server applications, or is it something that I will have to pay for?
  3. oldmanbernie

    Displaying Barcode on ASP.Net Pages

    I am wondering if you guys know whether there is a way to display C39S barcode on an ASP.Net. Preferrably, it would be a free solution. Thanks!
  4. oldmanbernie

    How to catch a InvalidCastException before a Gridview is generated?

    I created a method with a try-catch to catch the InvalidCastException to handle the problem. It seems to be working now. Thanks for the help!
  5. oldmanbernie

    How to catch a InvalidCastException before a Gridview is generated?

    I have a gridview that is bound with a SQLDataSource by stored procedures on SQL Server. The stored procedure is a left outer join between two tables that may yield null values for 3 bit-typed variables. This causes a problem because the Gridview would not accept null values. Is there a way...
  6. oldmanbernie

    DataSet Issue: "member names cannot be the same as their enclosing.."

    BLL: using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using FooResultTableAdapters...
  7. oldmanbernie

    DataSet Issue: "member names cannot be the same as their enclosing.."

    I created a dataset for my DAL, and when I tried to build the project, I received an error message saying, "member names cannot be the same as their enclosing types." I've tried renaming the class and object, but it doesn't seem to work. I am wondering if any of you had experienced this error...
  8. oldmanbernie

    ASP.Net Gridview (Allow edits for all rows)

    Thanks! I'm reading it over now.
  9. oldmanbernie

    ASP.Net Gridview (Allow edits for all rows)

    I am relatively new to using Gridview. I am wondering if there is a way for me to allow edits for all rows. Right now, I have a Gridview created that is bound by a SQL Data Source. It appears the only control I have in controlling what fields I can edit is based on the EditIndex value. This...

Part and Inventory Search

Back
Top