Search results for query: *

  1. E

    Update Data from data set and table adapter

    I also changed it there too Changed: Private cDataSetTA As New RockwareWebTableAdapters.vWebPage01TableAdapter To This: Private cDataSetTA As New RockwareWebTableAdapters.vWebPage02TableAdapter and in the Table adapter I have the specified StoredProcedure to run with the collection of...
  2. E

    Update Data from data set and table adapter

    I have a windows form program that pulls data from a sql server. That same data is being read from a ASP.NET website that sets properties for the site. The SQL server has 3 tables: tblWebPage, tblObjects, tblProperties. and 6 views for the 6 web page: vWebPage01, vWebPage02, vWebPage03..ect...
  3. E

    Dynamic Dataset's for a form

    Ok, Now i have bound the text boxes to the dataset through this: Try 'Some Comment!!! Dim QueryString As String = "SELECT * FROM " & Table '& " WHERE wp01Notes = Contact Header" Dim Adapter As SqlDataAdapter = New SqlDataAdapter(QueryString, pWEB_Server &...
  4. E

    Dynamic Dataset's for a form

    Ok Here is what I got now. I have to bind it to my text boxes next right? and how would I do that? 'Sets tbl to the name of the table Do Until pWEBSiteInfo(0, Ctr0) = Text Ctr0 = Ctr0 + 1 Table = pWEBSiteInfo(2, Ctr0) If Ctr0 = 50 Then...
  5. E

    Dynamic Dataset's for a form

    OK Well here is the scope and see if this makes sense. I have a asp.net website that pulls all of the text from a sql database, and that works great. I also want to create a application that will open the site (or any other site), and be able to edit that site through the application. I am going...
  6. E

    Dynamic Dataset's for a form

    Hi, I have a application that I would like to load a dynamic dataset based off of a array. My array is multidimensional and sets many values for my form. example: pWebSiteInfo(0, 1) = Home (Name of the Form) pWebSiteInfo(1, 1) = index.aspx (File name of the web page it correlates to)...
Back
Top