S
syng2
Guest
Hi.
HTML is like this.
<td tabindex="0" class="gridbody" id="tdid03" role="gridcell" style="text-align: center;" col_id="DAT_IDX" colindex="3" inputtype="text" tdIndex="3" style_bak="text-align:center;font-weight:bold:undefined">
<nobr class="w2grid_readonly">
<span class="ci3" label="type">typeName</span>
student name
</nobr>
</td>
When I double click 'student name' in ie or chrome, student detail infomation popup is showed.
But in webbrowser not work.
I wanna 'student name' is double clicked.
I did like this.
...Document.GetElementById("tdid03").InvokeMember("dblclick");
But it did not work.
So I did like this.
...Document.GetElementById("tdid03").RaiseEvent("ondblclick"...
Not working. This way did not double click <td> element.
how can i make 'double click' in webbrowser?
Continue reading...
HTML is like this.
<td tabindex="0" class="gridbody" id="tdid03" role="gridcell" style="text-align: center;" col_id="DAT_IDX" colindex="3" inputtype="text" tdIndex="3" style_bak="text-align:center;font-weight:bold:undefined">
<nobr class="w2grid_readonly">
<span class="ci3" label="type">typeName</span>
student name
</nobr>
</td>
When I double click 'student name' in ie or chrome, student detail infomation popup is showed.
But in webbrowser not work.
I wanna 'student name' is double clicked.
I did like this.
...Document.GetElementById("tdid03").InvokeMember("dblclick");
But it did not work.
So I did like this.
...Document.GetElementById("tdid03").RaiseEvent("ondblclick"...
Not working. This way did not double click <td> element.
how can i make 'double click' in webbrowser?
Continue reading...