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 Chriss Miller 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 randysmid

  1. randysmid

    GridView - Limit user selection to only one row?

    Hi, I didn't do anything to enable multiple row selection, but I was given code to check and see which rows were selected. The key lies in the fact that I added a checkbox field to the columns. foreach (GridViewRow row in GridView1.Rows) { CheckBox chk1 = (CheckBox)...
  2. randysmid

    GridView - Limit user selection to only one row?

    Hi, I'm talking about the web GridView control. TIA, Randy
  3. randysmid

    GridView - Limit user selection to only one row?

    Hi ALL, I would like to limit my user selection to only one row in the GridView at a time, instead of the default multi-select. Is there any way to set this to only one row selection at a time? TIA, Randy
  4. randysmid

    Null Date in VB.NET 2005 Gridview

    Hi, If you are using SQL Server 2005, you'll have another "gotcha", because 01/01/0001 is invalid in SQL Server 2005. In SQL Server 2005, the minimum valid date value is 01/01/1753. Don't ask me why, I'm just the messenger!!! In any event, I'm using a initialized date of 01/01/1900. When I'm...
  5. randysmid

    GridView - canShrink, canGrow??? PageSize?

    Hi ALL, Is there anything that I can do that will shrink or grow the size of my GridView, based on the number of rows? For instance, I've set the PageSize to 7, but oftentimes I'll only have one row of data. Othertimes I might have 50 rows of data. Since I have other fields on the aspx...
  6. randysmid

    Looking for 10/100/1000 with print server. Help?

    Hi, Thanks for the great link. Sadly, I need a router/print server that has at least 6 ports. But, this looks like a fantastic product. I've given you a star for helping me find this elusive product on the Linksys web site. Randy
  7. randysmid

    Looking for gigabit router with print server. Ideas??

    Hi ALL, I've noticed that some companies, like Linksys, are now offering routers/switches at 10/100/1000. Does anyone know of a router with a built-in print server that runs at the 10/1001000? Or, is there another solution I'm not aware of? TIA, Randy PS - I posted something similar to...
  8. randysmid

    Looking for 10/100/1000 with print server. Help?

    Hi ALL, I've noticed that Linksys seems to be the leader in offering routers/switches at 10/100/1000. BUT, does anyone know if they sell one with a built-in print server? Or, is there another solution I'm not aware of? OR, is there another brand that offers this solution? TIA, Randy
  9. randysmid

    No records from GridView - ObjectDataSource

    Hi ALL, I wonder if anyone has been using n-tier to bind to a GridView control by using the ObjectDataSource. This is our first OOP web application, and we have no tables. Right now we are simply working with objects in memory. So, it appears as though Microsoft requires that our datamapper...
  10. randysmid

    Web.sitemap - multiple files based on user profile (NOT Roles)

    Hi, I don't really understand that much about the "roles" property as part of web.sitemap. I was under the impression it only provides for 3 roles, such as "Admin" and a one or two more. So, can we create our own roles? If so, how do we implement this into our web forms? Can you refer me to...
  11. randysmid

    Web.sitemap - multiple files based on user profile (NOT Roles)

    Hi, Has anyone tried to set up a MasterPage with multiple Web.sitemap's based on a specific user profile? Actually, I've got the user type (or role) from a Session variable (currentUserType and currentUserName). I have 5 different user/role types (User, Manager, OffSvcsMgr, OffSvcsEmployee...
  12. randysmid

    Horizontal menu does not work properly

    Hi, I just had the same problem and I had to replace this html in the MasterPage source code: <asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server" StartingNodeOffset="0" ShowStartingNode="true" /> <br /> <asp:ContentPlaceHolder ID="ContentPlaceHolder1"...
  13. randysmid

    Proper way to bind GridView to class object??

    Hi ca8msm, Thanks for the links. Lately, I've been having real trouble finding anything useful on the MSDN site. Here's a star for all of your help!!! Randy
  14. randysmid

    Proper way to bind GridView to class object??

    Hi, here is the class for the MaterialRateTable object: public class MaterialRateTable { #region fields private MaterialRateDataMapper materialRateDM;//see property public int Id; public string Description; public double CostPerContainer...
  15. randysmid

    Proper way to bind GridView to class object??

    Hi ca8msm, "mrt" is a list of rows from the class object. So, I am wondering if I need to loop through the list of items (which I can do), but how do I bind these items to the GridView? There are many examples of how to bind regular SQL and Access tables to a GridView, but I have yet to find a...

Part and Inventory Search

Back
Top