Search results for query: *

  1. D

    Calling SQL stored proc from web app - SP runs but does not update

    I am attempting to update a SQL 2008R2 database from a VB.NET web page, and it appears the SQL stored proc is executing properly, but absolutely nothing is being updated. I have run debug and there are no errors on the VB side, and the SP runs fine within SQL. I fully admit to being rather new...
  2. D

    Question Trying to pass drop down value to URL for SSRS

    I have a page that the user chooses a date range, a name, and a Form type (A, B, E, T). On the basis of that, I populate a grid with the results and hyperlink a report number. When the user clicks the report number, a report is displayed. The issue is how can I insert the drop down list selected...
  3. D

    Databindig issue, I think

    So, here's the scenario: I have a web form application that is basically data entry forms that are entered into a SQL database. The issue I am having is the editing of these forms. If a submitted form is retrieved from the database, some records cause an error upon loading the data, always in...
  4. D

    Question Array sorting

    Sorry..try this: Protected Sub btnAddEquip_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnAddEquip.Click '/check for grower applied check box or chemigation for required eqip tag If Me.txtTimeAppl_1.Text = "" Or Me.txtTimeAppl_1.Text.Length < 4 Then...
  5. D

    Question Array sorting

    Correct, I need the most recent. Here is where the dates are coming from: Protected Sub btnAddEquip_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnAddEquip.Click '/check for grower applied check box or chemigation for required eqip tag If...
  6. D

    Question Array sorting

    I have an application that looks at various dates and compares those dates to yet another date for a time lapse. The problem is that I cannot figure out how to codefor the following scenario: There is a receive date and an application date. There may be multiple application dates, but only one...
Back
Top