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 John Tel 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 thetickisme

  1. thetickisme

    Too many arguments to 'Public Sub New()'. ??

    What does this mean?? And how can I fix it? Compiler Error Message: BC30057: Too many arguments to 'Public Sub New()'. Source Error: Line 32: If Not Page.IsPostBack() Line 33: ' load an initial, default view of data Line 34: ds = New DataSet( "ProductsData" ) Line 35: da = New...
  2. thetickisme

    Parent Child drop downs

    I finaly got it connected to my SQL Server but now I am stuck on the GRID. I cannot get the grid to display the data selected in the from the dropdowns. Any hints? <%@ Page Language="VB" Debug="True" Trace="false" TraceMode="SortByCategory" %><%@ Import Namespace="System.Data" %> <%@ Register...
  3. thetickisme

    Parent Child drop downs

    I got one to work but I am having a heck of a time trying to change the connection strings to my SQL server using a dataset and grid instead of the OLE Connection. Can someone PLEASE HELP. <%@ Page Language="VB" Debug="True" Trace="false" TraceMode="SortByCategory" %><%@ Import...
  4. thetickisme

    auuug sorting grid

    My sort works but only on the current row of data in the grid. If I go to the next page it's off. And it does not want to desc asc either. why? code <MM:PageBind runat="server" PostBackBind="true" /> <script runat="server"> Protected Sub Sort_Grid(ByVal sender As Object, ByVal e As...
  5. thetickisme

    Questions as always

    I can search using a search and results page fine BUT how can I add search to my current grid and dataset on my master page? And how can I use a drop down select to filter a datagrid? Examples or sites would be greatly appreciated. DW 8 VB.NET vb Thanks
  6. thetickisme

    using a dropdown list to select info

    Trying to find a good tutorial on using drop down selects to populate a grid. I have about 200 categories and I need the user to be able to select category in one vendor in another and click the select button to populate the grid. If possible I would like it to work with my current grid as well...
  7. thetickisme

    Cell color based on field value

    Here's a snip of all of the values it does Sub Datagrid1_ItemDataBound(source As Object, e As DataGridItemEventArgs) If (e.Item.ItemType = ListItemType.Item Or _ e.Item.ItemType = ListItemType.AlternatingItem) Then If e.Item.DataItem("Curr_Qtr") = "Stop" Then _...
  8. thetickisme

    Cell color based on field value

    Here is how I got it to work -with help - so if anyone else needs a snip of working color the cell based on data here you go. And thank you for all of the help. <script runat="server"> Sub Datagrid1_ItemDataBound(source As Object, e As DataGridItemEventArgs) If (e.Item.ItemType =...
  9. thetickisme

    Cell color based on field value

    Since I am lost anyways<G> I went after it another way but I am still wondering around Lost. <ItemTemplate><%# DataSet1.FieldValue("Curr_Qtr", Container) %><%# DataBinder.Eval(Container.DataItem, "Curr_Qtr") %>' ForeColor='<%# IIF(DataBinder.Eval(Container.DataItem, "Qtr_Plus_1") =...
  10. thetickisme

    ItemTemplate

    Is there a way to set the color based on value in the ItemTemplate field? <asp:TemplateColumn HeaderText="Sunset" ItemStyle-Wrap="false" Visible="True"> <ItemTemplate><%#DateTime.Parse (DataSet1.FieldValue("SUNSET", Container)).ToString("MMM d, yyyy") %></ItemTemplate>...
  11. thetickisme

    Cell color based on field value

    Thanks! I keep getting code blocks are not supported in this context .. Hint's? Please
  12. thetickisme

    Cell color based on field value

    How can I change a grids cell color based on another fields value in Dreamweaver MX and VB? THnaks

Part and Inventory Search

Back
Top