Search results for query: *

  1. T

    Exporting GridView Data into Excel

    Can someone tell me what I am missing. I am trying to export the data from a Gridview into Excel . I am not getting any errors when doing so but no data is showing up in excel when you click open or save. Any help would be much appricated. T Protected Sub Page_Load(ByVal sender As Object...
  2. T

    Updating Data

    Appened... I assume that I would simply query (SELECT) the existing notes then do an UPDATE fuction which would contain the existing notes + the new notes.... Correct??? Or is there another way of doing this? Thanks T Why we are on the subject of UPDATING.... I do have one other...
  3. T

    Updating Data

    That is corret I am modifying the datasource. SQLExpress
  4. T

    Updating Data

    I have created a Table that contains a WorksheetID field and a SalesNotes field. I can successfully populate that table but I am uncertain as to how I can append to the SalesNotes Field. I want to keep the orginal notes but populate addtional notes. Would I do this by using the UPDATE call...
  5. T

    Browser Back Button

    Can anyone tell me how to disable the Browser's Back button. I have Submit button on a Webform. Once the user clicks this I would like to disable the Browsers Back buton. Any help would be greatly appricated !!! Thomas
  6. T

    Populating Data

    amazing how that works.... :-) Successfully populating !!! Many Thanks
  7. T

    Populating Data

    I have made some code cahanges since my last post. My Current error is.... I am assuming on of the strings is two long for nVChar... String or binary data would be truncated. The statement has been terminated Here is the Code: Dim myCommand As SqlCommand Dim myConnection As SqlConnection...
  8. T

    Unable to INSERT

    Can someone tell me what I am missing... I am not getting any errors returned but No data is being populated within the database????? Any Help would be very much appricated!!!! Dim myCommand As SqlCommand Dim myConnection As SqlConnection Dim insertCmd As String myConnection = New...
  9. T

    Populating Data

    That didnt work but thank you for trying!!!
  10. T

    Populating Data

    Can someone tell me what I am missing... I keep getting this error when trying to write to the database Thank you!!!!! Parameterized Query '(@WorkSheetID nvarchar(14),@Origin nvarchar(5),@DealerName nvarc' expects parameter @Address, which was not supplied. Description: An unhandled...
  11. T

    MessageBox On Page Load

    Sorry... I will post it in the correct place.
  12. T

    MessageBox On Page Load

    When Loading a page I would like to have a messagebox come up rather than having the user click a button. Currently It will work once the page loads and the user clicks the button... But I want it to prompt the user as soon as it loads.. Is this not possible? Thank you!! Protected Sub...
  13. T

    Button Click

    These fucntions would work in most cases but since I wasnt very clear on my first post, the replys wont work in my situation. Here is what I have... I have a WebForm that includes a table with empty fields. I am looking to print this "Credit Application" but I want to do it when the Form...
  14. T

    Button Click

    Is it possible to force a button click for another button within a button? example Protected Sub btnPrint_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnPrint.Click 'Perfom something 'Force a seperate button click on the same page End Sub Many Thanks
  15. T

    Another Printing Question

    I have created a WebForm that contains a Table with empty Textboxes and Labels. I would like to print ONLY the tabels and there lables/textboxes. I have other buttons at the top of the page as well as a header but would prefer to NOT have them included in print job. I have searched everywhere...
  16. T

    Unable to make Connection to SQL Database

    I posted earlier and have made some progress. But Was wondering if someone could PLEASE tell me what I am doing wrong or proint me in the right direction. Many thanks!!!! I keep getting the following message: Object reference not set to an instance of an object. Description: An unhandled...
  17. T

    Binding Textbox data in SQLDatabase

    Any help would be greatly appreciated: First I am VERY new to VS. I have had some VB programming experience in the past but I am very much a novice so I truly apologize in advance if this question is elementary. I have created a new "Web Form" with Many Textbox fields that allow the users to...
Back
Top