Link to home
Start Free TrialLog in
Avatar of Jeanette Durham
Jeanette DurhamFlag for United States of America

asked on

DataGrid Double-Click Event Causing Problems By Selecting Cells While Event is Executing

Dear Experts,

I have an odd problem which I'm not sure how to fix. I have an event wired to the datagrid, on the double click, so something like..
Private Sub mydatagrid_CellDoubleMouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellMouseEventArgs) Handles mydatagrid.CellMouseDoubleClick

What the code in the event does is figure out which cell they clicked on, and take the value and then look up that record on a website. The whole time it is looking up the record (due to the delay of web this could take 5 seconds) any movement of the mouse causes multiple cells to hilite along wherever the mouse goes.

So I've been trying to think of ways to stop this behaviour, and it seems like I have to find a way to let the double click event end, like immediatly, and then run my code to open the web pages.

I tried to do this with something like:
        RaiseEvent EP_myDataGrid_DblClick(sender, e)
        ClearAllOtherSelected(sender, e)   'I have posted the code for ClearAllOtherSelected Below

..but what I discovered is that simply raising an event from an event doesn't cause the first event to finish, but rather everything is asyncronous. I'm not sure then what I should do, but does anyone have any ideas? I'm hesitant to set up all the web code on a different thread, because there are so many functions and subs involved, I'm not sure how I'd like to handle it, plus if they double click any other record while the other thread is running, and I try to start yet another instance, which would mean another instance of my web form (which is a form hosting a webbrowser), what will it do? I kinda really only want it to be looking up one at any given time.

Any ideas? Thanks! ~Michael


Private Sub mydatagrid_CellDoubleMouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellMouseEventArgs) Handles mydatagrid.CellMouseDoubleClick
        RaiseEvent EP_myDataGrid_DblClick(sender, e)
        ClearAllOtherSelected(sender, e)
    End Sub
 
    Private Sub EventProc_myDataGrid_DblClick(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellMouseEventArgs) Handles Me.EP_myDataGrid_DblClick
        My.Application.DoEvents()
        Dim colName$, parcelNum$, county$
        If e.ColumnIndex = -1 And e.RowIndex > -1 Then
            'This occurs when they double-click on the absolute left-most column (Not data)
            'we can open the single record view form
            SingleRecView.flagCameFromDGDblClick = True
            btnSRV_Click(sender, New System.EventArgs)
            Exit Sub
        ElseIf e.RowIndex < 0 Or e.ColumnIndex < 0 Then
            'This occurs any time when they double-click somewhere that isn't data
            Exit Sub
        End If
 
        'Otherwise If it's a Parcel, Send it off to the Web
        colName = Me.mydatagrid.Columns(e.ColumnIndex).Name
        If colName.ToUpper() = "PARCEL" Then
            parcelNum = nz(Me.mydatagrid.Rows(e.RowIndex).Cells("Parcel").Value)
            county = UCase(nz(Me.mydatagrid.Rows(e.RowIndex).Cells("County").Value))
            '
            If parcelNum <> "" And county <> "" Then
                'ClearAllOtherSelected(sender, e)
                EnterWebEntry(parcelNum, county)
                'ClearAllOtherSelected(sender, e)
                'My.Application.DoEvents()
            End If
        End If
    End Sub
 
    Private Sub ClearAllOtherSelected(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellMouseEventArgs)
        'Line should prevent cells from all hiliting while web is loading
        Try
            Me.mydatagrid.ClearSelection()
            Me.mydatagrid.Rows(e.RowIndex).Cells(e.ColumnIndex).Selected = True
        Catch ex As Exception
            'this happens when they switch to the singlerecview while the webpage is loading
        End Try
    End Sub

Open in new window

Avatar of oobayly
oobayly
Flag of United Kingdom of Great Britain and Northern Ireland image

Can you show the code that causes multiple cells to be highlighted when you doubleclick a cell. If the code in the event handler blocks the UI thread I can't see how any issues occur.
ASKER CERTIFIED SOLUTION
Avatar of srinivasbn
srinivasbn
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Jeanette Durham

ASKER

oobayly:

there is no code that hilites cells, it's unmanaged, just part of the datagrid functionality. I have code that tries to unhilite the grid, but it doesn't work. I think the actual hiliting of the datagrid is occuring when the program waits for the web page to load, because it uses my.application.doevents in a loop until the web pages finishes. I suppose I could have the program appear to freeze and not use my.application.doevents or something but I really don't want it to appear frozen to our users. Really, I just wish I could let the event finish, and then after it's totally done, call up my web page, but I don't know how to do that without linking events to one another and this seems to result in the first staying in action until the second finishes.

srinivasbn:
actually, this is not a bad idea, and I tried it and it's the first thing I've tried that does work. If no one can come up with any other way to do what I originally intended I will take this as acceptable and give you the points.

Thanks for your help guys! ~Michael