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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: desse
  • Order by date
  1. desse

    Sort a datagrid column

    Or you can assign it to a dataview and do a dv.sort = "Colname" and bind to the dataview. This way is very easy to manipulate.
  2. desse

    encoding xmldata

    http://www.myite.com/datain.aspx?ID=22&fname=Jack&lname=Giant Then you just use this in the page to request it. If Not (Request.Params("ID") Is Nothing) Then Select Case CINT(Request.Params("ID")) Case 0 'whatever here Case else 'whatever here End Select End If
  3. desse

    Binding Datagrid to stored procedure...

    You actually have to create a dataset or datatable to which to bind the grid from. You can always do a webservice and call the webmethod from your app. The service should look like this. <WebMethod> Public Function GetDS(ByVal strConn As String) as DataSet Dim conn As New...

Part and Inventory Search

Back
Top