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 TouchToneTommy 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 tpr25

  1. tpr25

    DropdownList on Datagrid

    Hello, I am trying to use a dropdownlist bound to a datagrid on ItemType. I have no problem getting the values populated into the lists, but when I try to create the command OnSelectedIndexChange for the dropdownlist i get the error "BC30408: Method 'Public Sub Update(sender As Object, E As...
  2. tpr25

    Summary Rows for Datagrid

    Hello, I am trying to use a datagrid to give summary data. However, the column I am trying to summarize is not counting correctly. Here is the code: Private Sub SummaryGrid_ItemDataBound(ByVal sender As Object, _ ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles...
  3. tpr25

    DATAGRID ROW COLOR

    On Itemdatabound, Dim drv As DataRowView = CType(e.Item.DataItem, DataRowView) Then choose your datarow: If drv("Datarow") = "Whatever You Want" Then e.Item.BackColor = System.Drawing.Color.Orange End If
  4. tpr25

    Summary Totals on a Datagrid

    Hello, I am trying to use a datagrid to give summary data. However, the column I am trying to summarize is not counting correctly. Here is the code: Private Sub SummaryGrid_ItemDataBound(ByVal sender As Object, _ ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles...
  5. tpr25

    Calling an event on Page Change

    Tracking the activity on Page2 would not work because the controls on Page1 are being used to update the records. Using session variables to track the page might work, though I am using a tab strip control(.ascx) to navigate between pages. Is calling a function on page1 from the control an...
  6. tpr25

    Calling an event on Page Change

    Hello, I am creating an ASP application and I am trying to call a stored procedure when the user changes the page within the application. For example, the user is on Page1, then navigates to Page2. When the user leaves Page1, I would like to update records on a server without having to click a...

Part and Inventory Search

Back
Top