474,042 Members | 1,880 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Event in dataGrid

HS1
Hello
I have a DataGrid and using some TextBox(es) to present data of this
DataGrid. I can show the data by setting fields for these TextBox (in design
view). However, I want to write codes (event handler) so that when I change
focus of each row in DataGrid, the data value of the row will be presented
in TextBox
Thank you
S. Hoa
Nov 21 '05 #1
5 1141
S. Hoa,

I make a short answer because I do not know if you read the answers.

Have a look at binding.

Cor

"HS1"
I have a DataGrid and using some TextBox(es) to present data of this
DataGrid. I can show the data by setting fields for these TextBox (in
design
view). However, I want to write codes (event handler) so that when I
change
focus of each row in DataGrid, the data value of the row will be presented
in TextBox
Thank you
S. Hoa

Nov 21 '05 #2
Hi,

Bind the datagrid and the textbox to the same datasource. The
currency manager with keep them in sync.

Ken
---------------
"HS1" <so*@slingshot. co.nz> wrote in message
news:1098097485 .265898@ftpsrv1 ...
Hello
I have a DataGrid and using some TextBox(es) to present data of this
DataGrid. I can show the data by setting fields for these TextBox (in design
view). However, I want to write codes (event handler) so that when I change
focus of each row in DataGrid, the data value of the row will be presented
in TextBox
Thank you
S. Hoa

Nov 21 '05 #3
HS1
Thank you,
I read all your answers
I think that data binding is available in design form (by setting properties
for TextBox). What I want is a event when I change focus (row) in a datagrid
Thanks
S.Hoa

"Cor Ligthert" <no************ @planet.nl> wrote in message
news:O%******** *******@TK2MSFT NGP09.phx.gbl.. .
S. Hoa,

I make a short answer because I do not know if you read the answers.

Have a look at binding.

Cor

"HS1"
I have a DataGrid and using some TextBox(es) to present data of this
DataGrid. I can show the data by setting fields for these TextBox (in
design
view). However, I want to write codes (event handler) so that when I
change
focus of each row in DataGrid, the data value of the row will be presented in TextBox
Thank you
S. Hoa


Nov 21 '05 #4

"HS1" <so*@slingshot. co.nz>
Thank you,
I read all your answers


Than tell with that if that did fit the question, so I know it was right and
others can use that as well.

Cor
Nov 21 '05 #5
HS1
Thanks

However, this grid is for Details of a Master-Details tables. I already
tried to bind the datagrid of the Detail and the textbox to the same
datasource but when I change the focus for this Grid, value of the textbox
does not change...
Regards

"Ken Tucker [MVP]" <vb***@bellsout h.net> wrote in message
news:uR******** ********@TK2MSF TNGP15.phx.gbl. ..
Hi,

Bind the datagrid and the textbox to the same datasource. The
currency manager with keep them in sync.

Ken
---------------
"HS1" <so*@slingshot. co.nz> wrote in message
news:1098097485 .265898@ftpsrv1 ...
Hello
I have a DataGrid and using some TextBox(es) to present data of this
DataGrid. I can show the data by setting fields for these TextBox (in design view). However, I want to write codes (event handler) so that when I change focus of each row in DataGrid, the data value of the row will be presented
in TextBox
Thank you
S. Hoa

Nov 21 '05 #6

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

Similar topics

0
3224
by: Emerson | last post by:
The following assumes a System.Windows.Forms.DataGrid with a System.Data.DataTable set as the DataSource. I'm programming in C# Here's my scenario I click in a cell on a DataGrid. I enter some text. Before changing to another cell in the DataGrid, I move my mouse pointer off the DataGrid and change the selected item in a ListBox or TreeView. Here's my question Which should fire first, the DataTable's RowChanged/CellChanged event or...
1
2929
by: GregM | last post by:
I have a read only datagrid that is designed to coordinate itself with textboxes. When the user clicks on a row in the datagrid, detailed data for that row is displayed for editing in the textboxes. The datagrid and textboxes are populated from the same underlying SQL Server table but using different strongly typed data adapters and datasets for display and editing. So I coordinate syncronization of the two sets of data using code. I use...
3
9257
by: bardo | last post by:
I have a Datagrid that is inside a panel. I want to use the keyDown event to reconize the arrow keys. But I have no luck at all. The problem is that the keydown event won't fire at all, unless I click on a row (withs will turn blue then) and then click on it again . Now if I press any key the event will fire (except for the arrow keys). I also tried to override the IsInputKey => no luck. I also tried to override the ProcessCmdKey => With...
2
17050
by: Dominic | last post by:
Hi guys, I'm not sure if this question belongs to FAQ, but I couldn't find a concrete answer. I created a Datagrid control using ItemTemplate, but it's NOT a in-place editing datagrid. One of the columns of the data grid contains a DropDownlist. I managed to create this datagrid control as follows.
1
4719
by: wsyeager36 | last post by:
I have a datagrid inside a datalist. The datalist shows parent info and the datagrid shows the child info for that parent. There is a checkbox on each row of the child datagrid. Also inside the datalist is a radiobuttonlist. When this radiobuttonlist is checked, I would like it to iterate thru each row on the child grid and either select or deselct the checkboxes (which are on each row of the child datagrid). In addition, the user can also check...
4
2144
by: The Alchemist | last post by:
I am having a problem with a dynamically-generated Datagrid. It is important to point out that this problem does not exist with a design-time created Datagrid, but only with a dynamically generated Datagrid in a Web Custom Control (WCC) : The datagrid has LinkButton Column which has a select LinkButton for each row. When this button is clicked, the Datagrid raises its 'ItemCommand' event which captures the information for that row and...
4
4499
by: Girish | last post by:
Im trying to create a grid within a grid programmatically. Ive been successful in doing this but I need the embedded grid to fire its ItemDataBound event so I can handle it. The event does not seem to fire for some reason. The code is below. Look towards the end of the CustomerDataGrid_OnItemDataBound(object sender, DataGridItemEventArgs e) method. This is where I register the event and place the programmatically created grid into the...
7
3368
by: Girish | last post by:
OK.. phew. Playing with data grids for the past few days has been fun and a huge learning experience.. My problem. I have a requirement to display a gird with a gird. Within the embedded grid, theres a requirement to show a drop down menu list (this is a control I downloaded online) in one of the columns. For the purposes of this question, Ive implemented the drop down menu as a drop down list instead. Ive got all this working at this...
4
7393
by: Suzanne | last post by:
Hi all, I'm having problems with datagrids and the currentcellchanged event. My problem is this: I have a datagrid on a form, if the user changes the text in a cell on the datagrid then tries to close the form via a button on the toolbar (with going to another cell in the datagrid)I want to be able to popup a messagebox to the user asking them if they want to keep their changes. At the momment I'm accomplishing this by a property that...
10
3005
by: amiga500 | last post by:
Hello, I have one basic simple question. When I have multiple records in the datagrid as follows: Code Product 1 Product 2 Product 3 11111 A B C 22222 D E F 33333 G H I 44444 J K L
0
10538
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
12132
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
11601
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
11138
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
10304
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
8690
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
6829
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
4939
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3965
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.