473,659 Members | 3,420 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Click Event in a DataGrid

Can I set up a DataGrid to do this...

When I click on a particular field in a DataGrid, it opens up another
program called wlk.exe and send it the text of the field I clicked on?

So it would be like wlk Fld1=ClickedFie ld

Nov 20 '05 #1
6 1194
Untested but . . .

In the click event

System.Diagnost ics.Process.Sta rt("wlk.exe.ex e " &
dgPeople.Curren tCell.ToString( ) )

OHM#

Michael Murschell wrote:
Can I set up a DataGrid to do this...

When I click on a particular field in a DataGrid, it opens up another
program called wlk.exe and send it the text of the field I clicked on?

So it would be like wlk Fld1=ClickedFie ld


Regards - OHM# On**********@BT Internet.com
Nov 20 '05 #2
The Click event doesn't seem to work when I click on a field in the
DataGrid. It does work when I click on empty space in the DataGrid.

"One Handed Man [ OHM# ]" <On**********@B TInternet.com> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
Untested but . . .

In the click event

System.Diagnost ics.Process.Sta rt("wlk.exe.ex e " &
dgPeople.Curren tCell.ToString( ) )

OHM#

Michael Murschell wrote:
Can I set up a DataGrid to do this...

When I click on a particular field in a DataGrid, it opens up another
program called wlk.exe and send it the text of the field I clicked on?

So it would be like wlk Fld1=ClickedFie ld


Regards - OHM# On**********@BT Internet.com

Nov 20 '05 #3
OK, then CurrentCellChan ged should do it

OHM#

Michael Murschell wrote:
The Click event doesn't seem to work when I click on a field in the
DataGrid. It does work when I click on empty space in the DataGrid.

"One Handed Man [ OHM# ]" <On**********@B TInternet.com> wrote in
message news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
Untested but . . .

In the click event

System.Diagnost ics.Process.Sta rt("wlk.exe.ex e " &
dgPeople.Curren tCell.ToString( ) )

OHM#

Michael Murschell wrote:
Can I set up a DataGrid to do this...

When I click on a particular field in a DataGrid, it opens up
another program called wlk.exe and send it the text of the field I
clicked on?

So it would be like wlk Fld1=ClickedFie ld


Regards - OHM# On**********@BT Internet.com


Regards - OHM# On**********@BT Internet.com
Nov 20 '05 #4
Perfect!!! Thank you!!!

Now I just need to figure out how to get the text in the field. The
dgPeople.Curren tCell.ToString( ) gives you the coordinance.

"One Handed Man [ OHM# ]" <On**********@B TInternet.com> wrote in message
news:eN******** ******@TK2MSFTN GP12.phx.gbl...
OK, then CurrentCellChan ged should do it

OHM#

Michael Murschell wrote:
The Click event doesn't seem to work when I click on a field in the
DataGrid. It does work when I click on empty space in the DataGrid.

"One Handed Man [ OHM# ]" <On**********@B TInternet.com> wrote in
message news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
Untested but . . .

In the click event

System.Diagnost ics.Process.Sta rt("wlk.exe.ex e " &
dgPeople.Curren tCell.ToString( ) )

OHM#

Michael Murschell wrote:
Can I set up a DataGrid to do this...

When I click on a particular field in a DataGrid, it opens up
another program called wlk.exe and send it the text of the field I
clicked on?

So it would be like wlk Fld1=ClickedFie ld

Regards - OHM# On**********@BT Internet.com


Regards - OHM# On**********@BT Internet.com

Nov 20 '05 #5
I got it...

dgPeople.Item(d gPeople.Current Cell)
"Michael Murschell" <mm********@gon elco.com> wrote in message
news:uO******** ******@TK2MSFTN GP09.phx.gbl...
Perfect!!! Thank you!!!

Now I just need to figure out how to get the text in the field. The
dgPeople.Curren tCell.ToString( ) gives you the coordinance.

"One Handed Man [ OHM# ]" <On**********@B TInternet.com> wrote in message
news:eN******** ******@TK2MSFTN GP12.phx.gbl...
OK, then CurrentCellChan ged should do it

OHM#

Michael Murschell wrote:
The Click event doesn't seem to work when I click on a field in the
DataGrid. It does work when I click on empty space in the DataGrid.

"One Handed Man [ OHM# ]" <On**********@B TInternet.com> wrote in
message news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
> Untested but . . .
>
> In the click event
>
> System.Diagnost ics.Process.Sta rt("wlk.exe.ex e " &
> dgPeople.Curren tCell.ToString( ) )
>
> OHM#
>
> Michael Murschell wrote:
>> Can I set up a DataGrid to do this...
>>
>> When I click on a particular field in a DataGrid, it opens up
>> another program called wlk.exe and send it the text of the field I
>> clicked on?
>>
>> So it would be like wlk Fld1=ClickedFie ld
>
> Regards - OHM# On**********@BT Internet.com


Regards - OHM# On**********@BT Internet.com


Nov 20 '05 #6
Glad I could help.

OHM#

Michael Murschell wrote:
I got it...

dgPeople.Item(d gPeople.Current Cell)
"Michael Murschell" <mm********@gon elco.com> wrote in message
news:uO******** ******@TK2MSFTN GP09.phx.gbl...
Perfect!!! Thank you!!!

Now I just need to figure out how to get the text in the field. The
dgPeople.Curren tCell.ToString( ) gives you the coordinance.

"One Handed Man [ OHM# ]" <On**********@B TInternet.com> wrote in
message news:eN******** ******@TK2MSFTN GP12.phx.gbl...
OK, then CurrentCellChan ged should do it

OHM#

Michael Murschell wrote:
The Click event doesn't seem to work when I click on a field in the
DataGrid. It does work when I click on empty space in the DataGrid.

"One Handed Man [ OHM# ]" <On**********@B TInternet.com> wrote in
message news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
> Untested but . . .
>
> In the click event
>
> System.Diagnost ics.Process.Sta rt("wlk.exe.ex e " &
> dgPeople.Curren tCell.ToString( ) )
>
> OHM#
>
> Michael Murschell wrote:
>> Can I set up a DataGrid to do this...
>>
>> When I click on a particular field in a DataGrid, it opens up
>> another program called wlk.exe and send it the text of the field
>> I clicked on?
>>
>> So it would be like wlk Fld1=ClickedFie ld
>
> Regards - OHM# On**********@BT Internet.com

Regards - OHM# On**********@BT Internet.com


Regards - OHM# On**********@BT Internet.com
Nov 20 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
6241
by: Frederik | last post by:
Hi all, Situation: Windows Forms, DataGrid, CSharp, WinXP Pro, VS 2003 How can I add a click event to an Image? The Imageis in a DataGrid, drawn with the 'DrawImage' mehtod. The Image does not seem to have a click event! Thank you for your time and help,
1
4956
by: Lalit Bhatia | last post by:
Hi when focus is on a cell in datagrid. double click event does not occur. when I double click on rowheader, columnheader then this event fires. I am using DataGridTableStyle in the grid. -- Regards, Lalit Bhatia
5
6166
by: J McD | last post by:
Hi I have a DataGrid with an ImageButton column. When I click on an imagebutton I get a postback but it doesn't run the OnImgBtnClick method. I can actually comment out the line where I add this Click event to the ImageButton Column and it makes no difference, I still get a postback. This is driving me crazy...something seems to be causing an OnClick postback and it isn't my Click event I've included the code below....any help will be...
1
977
by: Mac via DotNetMonster.com | last post by:
Hi all, For a datagrid, I would like to have a label (outside the datagrid) that reflects the current record in the datagrid. A click event work fine when you click on the row header or on a datagrid separator line, but when you click into a cell, the event is not raised. Is there another event I should be using? Why isn't there any cell based events?
0
1363
by: Ben | last post by:
I have a DataGrid in where I have code in the MouseUp Event that checks the area of the Grid clicked, and highlights the entire row. Problem is, that if you the "Right-Click" on another row, it highlights that row and any subsequent rows using the "Right-Click". In essence, the Right-Click of a mouse is inadvertently turning my Grid into a Multi-Select, which I do not want. I thought about finding a way to disable Right-Clicking in...
5
4734
by: Nick | last post by:
Hey guys, I have 2 events on a windows forms datagrid, the mouse move as well as the double click events. What's happening is that when I double click on a row in the grid, the mouse move event gets triggered and the double click is not identified at all. Is there any way I can invoke the double click when the mouse move also exists?
2
2600
by: Ryan Liu | last post by:
Hi, I need the MouseDown event be trigged everytime when you press mouse in a datagrid (System.Windows.Forms). But seems mouse event will only fire once, and it seems changed to edit mode for the cell (even the cell is read). The mouse event won't fire again until I click on some other cell and come back and click on the original again.
1
1171
by: hiuentsang | last post by:
Hi, How can I access the event generated by the click on a linkbutton in a datagrid? My requirement is like this... I've placed a linkbutton in a datagrid. The user clicks on it, and some value is stored in the ViewState. I am not able to capture the event of click. Please Help. Thanks & Regards
2
7196
by: Hardy Wang | last post by:
Hi all, We have DataGrid control in Web Form, our client requires to be able to click anywhere of a row to fire the event same as LinkBotton column is clicked. We we did in ASP.NET 1.1 is in ASPX page <asp:DataGrid id="MyGrid" runat="server" AutoGenerateColumns="False" AllowSorting="True" AllowPaging="True" runat="server" EnableViewState="True"> <Columns>
0
8428
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8851
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8628
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7359
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6181
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4175
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2754
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1978
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1739
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.