CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: dr225

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,181

    Datagridview Header

    Hi,

    On my datagridview cellmouseclick event I have this code:


    Index = e.RowIndex
    Dim selectedRow As DataGridViewRow
    selectedRow = DgTenantDetails.Rows(index)

    Now, at...
  2. Replies
    0
    Views
    722

    Refresh record on datagridview

    Hi,

    I have a datagridview called - DgTenantsDetails

    On form load it is populated with data from a bindingsource,

    Cells include:


    Firstname
  3. Thread: Update Statement

    by dr225
    Replies
    4
    Views
    1,298

    Re: Update Statement

    Ok -

    I changed it to this



    Dim Tenant_Read As New System.Data.SqlClient.SqlCommand(("Select nationalID from tblTenants where nationalID ='" &
    ...
  4. Thread: Update Statement

    by dr225
    Replies
    4
    Views
    1,298

    Update Statement

    Hi,

    I have an update Statement that append the data in the table and create a record in the history table.


    Private Sub UpdatedTenantDetails()

    Dim conn As SqlConnection =...
  5. Replies
    1
    Views
    1,914

    Exceptional Handler - Buffer cannot be null

    Hi,

    I have a datagridview and on cellmouseclick the following code is called:


    Private Sub DgTenantDetails_CellMouseClick(sender As System.Object, e As...
  6. Replies
    1
    Views
    1,249

    InvalidCastException

    Hi,

    I am trying to retrieve an image from the SQL database to my form (VB.NET) on a Picturebox.

    See code below:



    Private Sub BtnRetrieve_Click(sender As Object, e As EventArgs) Handles...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured