473,406 Members | 2,713 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

How to capture the delete row event handler in the datagrid?


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
I want when the user select the third row which holds the following
value: 33333, G, H, and I and presses the Delete key in the keyboard a
prompt message pops up saying: Are you sure you wish to delete record #
3333? If the user selects YES then it deletes that row. I know how to
do the rest what I don't know how to do is catch and trap the delete
key when that row is select to prompt that message. Can anyone help me
please? Thanks in advance.

Jan 11 '07 #1
10 2921
Hello am******@gmail.com,

http://www.syncfusion.com/FAQ/aspnet/WEB_c4c.aspx#q589q
http://www.syncfusion.com/FAQ/aspnet/WEB_c4c.aspx#q587q
---
WBR,
Michael Nemtsev [C# MVP] :: blog: http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo
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
I want when the user select the third row which holds the following
value: 33333, G, H, and I and presses the Delete key in the keyboard a
prompt message pops up saying: Are you sure you wish to delete record
# 3333? If the user selects YES then it deletes that row. I know how
to do the rest what I don't know how to do is catch and trap the
delete key when that row is select to prompt that message. Can anyone
help me please? Thanks in advance.

Jan 11 '07 #2
I am sorry they did not help me at all. According to these two tips I
am suppose to make make my very own subroutine that have the delete
code in it then make a button where it will delete the rows...what I
want is a handler to fire when I highlight a single row and push the
delete button in the keyboard. I know how to do the other one easily
however I don't know how to do this...here is why I need it. We have a
shipping program that sometimes have a complete row with null value,
this causes this program to halt with an error of a null value, we
naturally want to delete that row and upload the inventory in the
server, however in order to do that we must first click the button save
before we upload that. We want to skip that process in such away that
when we delete that row (null values) it automatically saves it so that
we just click one button which is called upload instead of SAVE button
THEN Upload button. How to catch an event handler when the user
highlights that row and pushes the delete button? I have been in that
website and they failed miserably in assisting me in my problem. Can
anyone here help me please? Thanks in advance.

On Jan 11, 11:20 am, Michael Nemtsev <nemt...@msn.comwrote:
Hello amiga...@gmail.com,

http://www.syncfusion.com/FAQ/aspnet...c4c.aspx#q587q

---
WBR,
Michael Nemtsev [C# MVP] :: blog:http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo
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
I want when the user select the third row which holds the following
value: 33333, G, H, and I and presses the Delete key in the keyboard a
prompt message pops up saying: Are you sure you wish to delete record
# 3333? If the user selects YES then it deletes that row. I know how
to do the rest what I don't know how to do is catch and trap the
delete key when that row is select to prompt that message. Can anyone
help me please? Thanks in advance.
Jan 11 '07 #3
Thank you for the help but I solved the problem, for people out there
who have failed or stuck in the same predicament this is the answer:

Private Sub DATAGRIDNAMEHERE_PreviewKeyDown(ByVal sender As Object,
ByVal e As System.Windows.Forms.PreviewKeyDownEventArgs) Handles
dgRATemp.PreviewKeyDown
If e.KeyCode = Keys.Delete Then
.....
End If
End Sub

Jan 11 '07 #4

Right but now I am in a different delima..my boss wants the event to
occure AFTER the row is deleted not before the row is deleted. For
example

Row1: contains value X

When highlight Row1: that contains value X and I press the delete key
and the row is deleted THEN he wants the save to change not save the
change before the value is deleted. How do I do that?
On Jan 11, 11:29 am, amiga...@gmail.com wrote:
I am sorry they did not help me at all. According to these two tips I
am suppose to make make my very own subroutine that have the delete
code in it then make a button where it will delete the rows...what I
want is a handler to fire when I highlight a single row and push the
delete button in the keyboard. I know how to do the other one easily
however I don't know how to do this...here is why I need it. We have a
shipping program that sometimes have a complete row with null value,
this causes this program to halt with an error of a null value, we
naturally want to delete that row and upload the inventory in the
server, however in order to do that we must first click the button save
before we upload that. We want to skip that process in such away that
when we delete that row (null values) it automatically saves it so that
we just click one button which is called upload instead of SAVE button
THEN Upload button. How to catch an event handler when the user
highlights that row and pushes the delete button? I have been in that
website and they failed miserably in assisting me in my problem. Can
anyone here help me please? Thanks in advance.

On Jan 11, 11:20 am, Michael Nemtsev <nemt...@msn.comwrote:
Hello amiga...@gmail.com,
http://www.syncfusion.com/FAQ/aspnet...http://www.syn...
---
WBR,
Michael Nemtsev [C# MVP] :: blog:http://spaces.live.com/laflour
"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo
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
I want when the user select the third row which holds the following
value: 33333, G, H, and I and presses the Delete key in the keyboard a
prompt message pops up saying: Are you sure you wish to delete record
# 3333? If the user selects YES then it deletes that row. I know how
to do the rest what I don't know how to do is catch and trap the
delete key when that row is select to prompt that message. Can anyone
help me please? Thanks in advance.
Jan 11 '07 #5
Hello am******@gmail.com,

Sorry for the wrong info relating to my post - missed your point :)

About post-delete action. Why not to perform your custom tast on DataTable.RowDeleted
event?

---
WBR,
Michael Nemtsev [C# MVP] :: blog: http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo
Right but now I am in a different delima..my boss wants the event to
occure AFTER the row is deleted not before the row is deleted. For
example

Row1: contains value X

When highlight Row1: that contains value X and I press the delete key
and the row is deleted THEN he wants the save to change not save the
change before the value is deleted. How do I do that?

On Jan 11, 11:29 am, amiga...@gmail.com wrote:
>I am sorry they did not help me at all. According to these two tips
I am suppose to make make my very own subroutine that have the delete
code in it then make a button where it will delete the rows...what I
want is a handler to fire when I highlight a single row and push the
delete button in the keyboard. I know how to do the other one easily
however I don't know how to do this...here is why I need it. We have
a shipping program that sometimes have a complete row with null
value, this causes this program to halt with an error of a null
value, we naturally want to delete that row and upload the inventory
in the server, however in order to do that we must first click the
button save before we upload that. We want to skip that process in
such away that when we delete that row (null values) it automatically
saves it so that we just click one button which is called upload
instead of SAVE button THEN Upload button. How to catch an event
handler when the user highlights that row and pushes the delete
button? I have been in that website and they failed miserably in
assisting me in my problem. Can anyone here help me please? Thanks in
advance.

On Jan 11, 11:20 am, Michael Nemtsev <nemt...@msn.comwrote:
>>Hello amiga...@gmail.com,

http://www.syncfusion.com/FAQ/aspnet...qhttp://www.sy
n...

---
WBR,
Michael Nemtsev [C# MVP] :: blog:http://spaces.live.com/laflour
"The greatest danger for most of us is not that our aim is too high
and we miss it, but that it is too low and we reach it" (c)
Michelangelo

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
I want when the user select the third row which holds the following
value: 33333, G, H, and I and presses the Delete key in the
keyboard a
prompt message pops up saying: Are you sure you wish to delete
record
# 3333? If the user selects YES then it deletes that row. I know
how
to do the rest what I don't know how to do is catch and trap the
delete key when that row is select to prompt that message. Can
anyone
help me please? Thanks in advance.

Jan 11 '07 #6
But can this event .RowDeleted be available in the datagrid object? I
am not using datatable, I am using datagrid...two different objects,
no? I did a trick called timer, using my dicovery above I triggered
the timer to be enabled true then after the row deleted the timer
executed what ever code resides there then IMMEDIATLY DISABLED itself
and stopped right away as to not to repeat the code again and again. I
consider this...PLAY around the game or hack your WAY through or be
imaginative..however if there is a more professional way of an approach
it will be greatly appreciate it. I know datagrid is not the same as
datatable, so how do I get the same result from datatable with
datagrid?

On Jan 11, 11:53 am, Michael Nemtsev <nemt...@msn.comwrote:
Hello amiga...@gmail.com,

Sorry for the wrong info relating to my post - missed your point :)

About post-delete action. Why not to perform your custom tast on DataTable.RowDeleted
event?

---
WBR,
Michael Nemtsev [C# MVP] :: blog:http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo
Right but now I am in a different delima..my boss wants the event to
occure AFTER the row is deleted not before the row is deleted. For
example
Row1: contains value X
When highlight Row1: that contains value X and I press the delete key
and the row is deleted THEN he wants the save to change not save the
change before the value is deleted. How do I do that?
On Jan 11, 11:29 am, amiga...@gmail.com wrote:
I am sorry they did not help me at all. According to these two tips
I am suppose to make make my very own subroutine that have the delete
code in it then make a button where it will delete the rows...what I
want is a handler to fire when I highlight a single row and push the
delete button in the keyboard. I know how to do the other one easily
however I don't know how to do this...here is why I need it. We have
a shipping program that sometimes have a complete row with null
value, this causes this program to halt with an error of a null
value, we naturally want to delete that row and upload the inventory
in the server, however in order to do that we must first click the
button save before we upload that. We want to skip that process in
such away that when we delete that row (null values) it automatically
saves it so that we just click one button which is called upload
instead of SAVE button THEN Upload button. How to catch an event
handler when the user highlights that row and pushes the delete
button? I have been in that website and they failed miserably in
assisting me in my problem. Can anyone here help me please? Thanks in
advance.
On Jan 11, 11:20 am, Michael Nemtsev <nemt...@msn.comwrote:
>Hello amiga...@gmail.com,
>>http://www.syncfusion.com/FAQ/aspnet...qhttp://www.sy
n...
>---
WBR,
Michael Nemtsev [C# MVP] :: blog:http://spaces.live.com/laflour
"The greatest danger for most of us is not that our aim is too high
and we miss it, but that it is too low and we reach it" (c)
Michelangelo
>>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
I want when the user select the third row which holds the following
value: 33333, G, H, and I and presses the Delete key in the
keyboard a
prompt message pops up saying: Are you sure you wish to delete
record
# 3333? If the user selects YES then it deletes that row. I know
how
to do the rest what I don't know how to do is catch and trap the
delete key when that row is select to prompt that message. Can
anyone
help me please? Thanks in advance.
Jan 11 '07 #7
I think you can better accomplish this by making use of both the KeyUp event
for the datagrid and the rowdeleted even on the datatable. You wouldn't
need a timer.

Datagrid
OnKeyPress()
If KeyDelete then
If msgbox("Are you sure?") = dialogResult.yes then
row.delete
DataTable
OnRowDeleted
PerformSave
UpdateDatagrid

If you are not using a datatable, you must be using a list of somesort. The
list either has notification events already, or you can simply add them and
then handle them.

If you are not using a datatable and are binding to a list of object, I
recommend that you use a BindingList. It has all the provisions to do as
you are asking.
<am******@gmail.comwrote in message
news:11**********************@i39g2000hsf.googlegr oups.com...
But can this event .RowDeleted be available in the datagrid object? I
am not using datatable, I am using datagrid...two different objects,
no? I did a trick called timer, using my dicovery above I triggered
the timer to be enabled true then after the row deleted the timer
executed what ever code resides there then IMMEDIATLY DISABLED itself
and stopped right away as to not to repeat the code again and again. I
consider this...PLAY around the game or hack your WAY through or be
imaginative..however if there is a more professional way of an approach
it will be greatly appreciate it. I know datagrid is not the same as
datatable, so how do I get the same result from datatable with
datagrid?

On Jan 11, 11:53 am, Michael Nemtsev <nemt...@msn.comwrote:
>Hello amiga...@gmail.com,

Sorry for the wrong info relating to my post - missed your point :)

About post-delete action. Why not to perform your custom tast on
DataTable.RowDeleted
event?

---
WBR,
Michael Nemtsev [C# MVP] :: blog:http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and
we
miss it, but that it is too low and we reach it" (c) Michelangelo
Right but now I am in a different delima..my boss wants the event to
occure AFTER the row is deleted not before the row is deleted. For
example
Row1: contains value X
When highlight Row1: that contains value X and I press the delete key
and the row is deleted THEN he wants the save to change not save the
change before the value is deleted. How do I do that?
On Jan 11, 11:29 am, amiga...@gmail.com wrote:
>I am sorry they did not help me at all. According to these two tips
I am suppose to make make my very own subroutine that have the delete
code in it then make a button where it will delete the rows...what I
want is a handler to fire when I highlight a single row and push the
delete button in the keyboard. I know how to do the other one easily
however I don't know how to do this...here is why I need it. We have
a shipping program that sometimes have a complete row with null
value, this causes this program to halt with an error of a null
value, we naturally want to delete that row and upload the inventory
in the server, however in order to do that we must first click the
button save before we upload that. We want to skip that process in
such away that when we delete that row (null values) it automatically
saves it so that we just click one button which is called upload
instead of SAVE button THEN Upload button. How to catch an event
handler when the user highlights that row and pushes the delete
button? I have been in that website and they failed miserably in
assisting me in my problem. Can anyone here help me please? Thanks in
advance.
>On Jan 11, 11:20 am, Michael Nemtsev <nemt...@msn.comwrote:
>>Hello amiga...@gmail.com,
>>>http://www.syncfusion.com/FAQ/aspnet...qhttp://www.sy
n...
>>---
WBR,
Michael Nemtsev [C# MVP] :: blog:http://spaces.live.com/laflour
"The greatest danger for most of us is not that our aim is too high
and we miss it, but that it is too low and we reach it" (c)
Michelangelo
>>>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
I want when the user select the third row which holds the following
value: 33333, G, H, and I and presses the Delete key in the
keyboard a
prompt message pops up saying: Are you sure you wish to delete
record
# 3333? If the user selects YES then it deletes that row. I know
how
to do the rest what I don't know how to do is catch and trap the
delete key when that row is select to prompt that message. Can
anyone
help me please? Thanks in advance.

Jan 11 '07 #8
But I am simply just using datagrid. Really. That is it. Nothing more
complicated then, "I am using a datagrid." So far with datagrid it
doesn't have what you guys are talking about.

On Jan 11, 1:14 pm, "AMDRIT" <amd...@hotmail.comwrote:
I think you can better accomplish this by making use of both the KeyUp event
for the datagrid and the rowdeleted even on the datatable. You wouldn't
need a timer.

Datagrid
OnKeyPress()
If KeyDelete then
If msgbox("Are you sure?") = dialogResult.yes then
row.delete

DataTable
OnRowDeleted
PerformSave
UpdateDatagrid

If you are not using a datatable, you must be using a list of somesort. The
list either has notification events already, or you can simply add them and
then handle them.

If you are not using a datatable and are binding to a list of object, I
recommend that you use a BindingList. It has all the provisions to do as
you are asking.

<amiga...@gmail.comwrote in messagenews:11**********************@i39g2000hsf.g ooglegroups.com...
But can this event .RowDeleted be available in the datagrid object? I
am not using datatable, I am using datagrid...two different objects,
no? I did a trick called timer, using my dicovery above I triggered
the timer to be enabled true then after the row deleted the timer
executed what ever code resides there then IMMEDIATLY DISABLED itself
and stopped right away as to not to repeat the code again and again. I
consider this...PLAY around the game or hack your WAY through or be
imaginative..however if there is a more professional way of an approach
it will be greatly appreciate it. I know datagrid is not the same as
datatable, so how do I get the same result from datatable with
datagrid?
On Jan 11, 11:53 am, Michael Nemtsev <nemt...@msn.comwrote:
Hello amiga...@gmail.com,
Sorry for the wrong info relating to my post - missed your point :)
About post-delete action. Why not to perform your custom tast on
DataTable.RowDeleted
event?
---
WBR,
Michael Nemtsev [C# MVP] :: blog:http://spaces.live.com/laflour
"The greatest danger for most of us is not that our aim is too high and
we
miss it, but that it is too low and we reach it" (c) Michelangelo
Right but now I am in a different delima..my boss wants the event to
occure AFTER the row is deleted not before the row is deleted. For
example
Row1: contains value X
When highlight Row1: that contains value X and I press the delete key
and the row is deleted THEN he wants the save to change not save the
change before the value is deleted. How do I do that?
On Jan 11, 11:29 am, amiga...@gmail.com wrote:
I am sorry they did not help me at all. According to these two tips
I am suppose to make make my very own subroutine that have the delete
code in it then make a button where it will delete the rows...what I
want is a handler to fire when I highlight a single row and push the
delete button in the keyboard. I know how to do the other one easily
however I don't know how to do this...here is why I need it. We have
a shipping program that sometimes have a complete row with null
value, this causes this program to halt with an error of a null
value, we naturally want to delete that row and upload the inventory
in the server, however in order to do that we must first click the
button save before we upload that. We want to skip that process in
such away that when we delete that row (null values) it automatically
saves it so that we just click one button which is called upload
instead of SAVE button THEN Upload button. How to catch an event
handler when the user highlights that row and pushes the delete
button? I have been in that website and they failed miserably in
assisting me in my problem. Can anyone here help me please? Thanks in
advance.
On Jan 11, 11:20 am, Michael Nemtsev <nemt...@msn.comwrote:
>Hello amiga...@gmail.com,
>>http://www.syncfusion.com/FAQ/aspnet...qhttp://www.sy
n...
>---
WBR,
Michael Nemtsev [C# MVP] :: blog:http://spaces.live.com/laflour
"The greatest danger for most of us is not that our aim is too high
and we miss it, but that it is too low and we reach it" (c)
Michelangelo
>>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
I want when the user select the third row which holds the following
value: 33333, G, H, and I and presses the Delete key in the
keyboard a
prompt message pops up saying: Are you sure you wish to delete
record
# 3333? If the user selects YES then it deletes that row. I know
how
to do the rest what I don't know how to do is catch and trap the
delete key when that row is select to prompt that message. Can
anyone
help me please? Thanks in advance.
Jan 11 '07 #9
Your paradigm is far different from expectations of those of us throwing out
suggestions. No offense. I simply have a question, how do you populate
the datagrid without specifying a datasource, every day is an opportunity to
learn something new. I just do not see any methods for adding rows manually
to the datagrid.
<am******@gmail.comwrote in message
news:11**********************@i39g2000hsf.googlegr oups.com...
But I am simply just using datagrid. Really. That is it. Nothing more
complicated then, "I am using a datagrid." So far with datagrid it
doesn't have what you guys are talking about.

On Jan 11, 1:14 pm, "AMDRIT" <amd...@hotmail.comwrote:
>I think you can better accomplish this by making use of both the KeyUp
event
for the datagrid and the rowdeleted even on the datatable. You wouldn't
need a timer.

Datagrid
OnKeyPress()
If KeyDelete then
If msgbox("Are you sure?") = dialogResult.yes then
row.delete

DataTable
OnRowDeleted
PerformSave
UpdateDatagrid

If you are not using a datatable, you must be using a list of somesort.
The
list either has notification events already, or you can simply add them
and
then handle them.

If you are not using a datatable and are binding to a list of object, I
recommend that you use a BindingList. It has all the provisions to do as
you are asking.

<amiga...@gmail.comwrote in
messagenews:11**********************@i39g2000hsf. googlegroups.com...
But can this event .RowDeleted be available in the datagrid object? I
am not using datatable, I am using datagrid...two different objects,
no? I did a trick called timer, using my dicovery above I triggered
the timer to be enabled true then after the row deleted the timer
executed what ever code resides there then IMMEDIATLY DISABLED itself
and stopped right away as to not to repeat the code again and again. I
consider this...PLAY around the game or hack your WAY through or be
imaginative..however if there is a more professional way of an approach
it will be greatly appreciate it. I know datagrid is not the same as
datatable, so how do I get the same result from datatable with
datagrid?
On Jan 11, 11:53 am, Michael Nemtsev <nemt...@msn.comwrote:
Hello amiga...@gmail.com,
>Sorry for the wrong info relating to my post - missed your point :)
>About post-delete action. Why not to perform your custom tast on
DataTable.RowDeleted
event?
>---
WBR,
Michael Nemtsev [C# MVP] :: blog:http://spaces.live.com/laflour
>"The greatest danger for most of us is not that our aim is too high
and
we
miss it, but that it is too low and we reach it" (c) Michelangelo
Right but now I am in a different delima..my boss wants the event to
occure AFTER the row is deleted not before the row is deleted. For
example
Row1: contains value X
When highlight Row1: that contains value X and I press the delete
key
and the row is deleted THEN he wants the save to change not save the
change before the value is deleted. How do I do that?
On Jan 11, 11:29 am, amiga...@gmail.com wrote:
>I am sorry they did not help me at all. According to these two
tips
I am suppose to make make my very own subroutine that have the
delete
code in it then make a button where it will delete the rows...what
I
want is a handler to fire when I highlight a single row and push
the
delete button in the keyboard. I know how to do the other one
easily
however I don't know how to do this...here is why I need it. We
have
a shipping program that sometimes have a complete row with null
value, this causes this program to halt with an error of a null
value, we naturally want to delete that row and upload the
inventory
in the server, however in order to do that we must first click the
button save before we upload that. We want to skip that process in
such away that when we delete that row (null values) it
automatically
saves it so that we just click one button which is called upload
instead of SAVE button THEN Upload button. How to catch an event
handler when the user highlights that row and pushes the delete
button? I have been in that website and they failed miserably in
assisting me in my problem. Can anyone here help me please? Thanks
in
advance.
>On Jan 11, 11:20 am, Michael Nemtsev <nemt...@msn.comwrote:
>>Hello amiga...@gmail.com,
>>>http://www.syncfusion.com/FAQ/aspnet...qhttp://www.sy
n...
>>---
WBR,
Michael Nemtsev [C# MVP] :: blog:http://spaces.live.com/laflour
"The greatest danger for most of us is not that our aim is too
high
and we miss it, but that it is too low and we reach it" (c)
Michelangelo
>>>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
I want when the user select the third row which holds the
following
value: 33333, G, H, and I and presses the Delete key in the
keyboard a
prompt message pops up saying: Are you sure you wish to delete
record
# 3333? If the user selects YES then it deletes that row. I know
how
to do the rest what I don't know how to do is catch and trap the
delete key when that row is select to prompt that message. Can
anyone
help me please? Thanks in advance.

Jan 11 '07 #10
You are right I ment absolutely no offense, forgive me if I sounded
rude. Ones again that is not my intention :) Here let me paste the
code:

With dgRATemp
.DataSource = ds.Tables("Local")
.TableStyles.Clear()
.CaptionText = "
End With

With tableStyle
.MappingName = "Local"
.RowHeaderWidth = 5
.PreferredRowHeight = 5

With .GridColumnStyles

.Add(New DataGridTextBoxColumn)
With .Item(0)

.MappingName = "ID"
.HeaderText = "ID"
.Width = 0
.ReadOnly = True

End With
.Add(New DataGridTextBoxColumn)
With .Item(1)

.MappingName = "RANumber"
.HeaderText = "RANumber"
.Width = 0
.ReadOnly = True

End With

.Add(New DataGridTextBoxColumn)
With .Item(2)
.MappingName = "PromoItem"
.HeaderText = "PromoItem"
.Width = 120
.NullText = String.Empty
.ReadOnly = True
End With
.Add(New DataGridTextBoxColumn)
With .Item(3)

.MappingName = "ItemNumber"
.HeaderText = "ItemNumber"
.Width = 120
.ReadOnly = True

End With

.Add(New DataGridTextBoxColumn)
With .Item(4)
.MappingName = "TotalQtyPer"
.HeaderText = "Location"
.ReadOnly = True
.Width = 100

End With

.Add(New DataGridTextBoxColumn)
With .Item(5)
.MappingName = "Qty"
.HeaderText = "Qty"
.Width = 60
.ReadOnly = False
.NullText = 0
End With

.Add(New DataGridTextBoxColumn)
With .Item(6)
.MappingName = "Def"
.HeaderText = "Def"
.Width = 60
.ReadOnly = False
.NullText = 0
End With
.Add(New DataGridTextBoxColumn)
With .Item(7)
.MappingName = "PromoBit"
.HeaderText = "PromoBit"
.Width = 0
.ReadOnly = True
.NullText = 0

End With

.Add(New DataGridTextBoxColumn)
With .Item(8)
.MappingName = "DateModified"
.HeaderText = "Mod"
.Width = 0
.ReadOnly = True
.NullText = Now()

End With
End With
End With
dgRATemp.TableStyles.Add(tableStyle)

On Jan 11, 1:48 pm, "AMDRIT" <amd...@hotmail.comwrote:
Your paradigm is far different from expectations of those of us throwing out
suggestions. No offense. I simply have a question, how do you populate
the datagrid without specifying a datasource, every day is an opportunity to
learn something new. I just do not see any methods for adding rows manually
to the datagrid.

<amiga...@gmail.comwrote in messagenews:11**********************@i39g2000hsf.g ooglegroups.com...
But I am simply just using datagrid. Really. That is it. Nothing more
complicated then, "I am using a datagrid." So far with datagrid it
doesn't have what you guys are talking about.
On Jan 11, 1:14 pm, "AMDRIT" <amd...@hotmail.comwrote:
I think you can better accomplish this by making use of both the KeyUp
event
for the datagrid and the rowdeleted even on the datatable. You wouldn't
need a timer.
Datagrid
OnKeyPress()
If KeyDelete then
If msgbox("Are you sure?") = dialogResult.yes then
row.delete
DataTable
OnRowDeleted
PerformSave
UpdateDatagrid
If you are not using a datatable, you must be using a list of somesort.
The
list either has notification events already, or you can simply add them
and
then handle them.
If you are not using a datatable and are binding to a list of object, I
recommend that you use a BindingList. It has all the provisions to do as
you are asking.
<amiga...@gmail.comwrote in
messagenews:11**********************@i39g2000hsf.g ooglegroups.com...
But can this event .RowDeleted be available in the datagrid object? I
am not using datatable, I am using datagrid...two different objects,
no? I did a trick called timer, using my dicovery above I triggered
the timer to be enabled true then after the row deleted the timer
executed what ever code resides there then IMMEDIATLY DISABLED itself
and stopped right away as to not to repeat the code again and again. I
consider this...PLAY around the game or hack your WAY through or be
imaginative..however if there is a more professional way of an approach
it will be greatly appreciate it. I know datagrid is not the same as
datatable, so how do I get the same result from datatable with
datagrid?
On Jan 11, 11:53 am, Michael Nemtsev <nemt...@msn.comwrote:
Hello amiga...@gmail.com,
Sorry for the wrong info relating to my post - missed your point :)
About post-delete action. Why not to perform your custom tast on
DataTable.RowDeleted
event?
---
WBR,
Michael Nemtsev [C# MVP] :: blog:http://spaces.live.com/laflour
"The greatest danger for most of us is not that our aim is too high
and
we
miss it, but that it is too low and we reach it" (c) Michelangelo
Right but now I am in a different delima..my boss wants the event to
occure AFTER the row is deleted not before the row is deleted. For
example
Row1: contains value X
When highlight Row1: that contains value X and I press the delete
key
and the row is deleted THEN he wants the save to change not save the
change before the value is deleted. How do I do that?
On Jan 11, 11:29 am, amiga...@gmail.com wrote:
I am sorry they did not help me at all. According to these two
tips
I am suppose to make make my very own subroutine that have the
delete
code in it then make a button where it will delete the rows...what
I
want is a handler to fire when I highlight a single row and push
the
delete button in the keyboard. I know how to do the other one
easily
however I don't know how to do this...here is why I need it. We
have
a shipping program that sometimes have a complete row with null
value, this causes this program to halt with an error of a null
value, we naturally want to delete that row and upload the
inventory
in the server, however in order to do that we must first click the
button save before we upload that. We want to skip that process in
such away that when we delete that row (null values) it
automatically
saves it so that we just click one button which is called upload
instead of SAVE button THEN Upload button. How to catch an event
handler when the user highlights that row and pushes the delete
button? I have been in that website and they failed miserably in
assisting me in my problem. Can anyone here help me please? Thanks
in
advance.
On Jan 11, 11:20 am, Michael Nemtsev <nemt...@msn.comwrote:
>Hello amiga...@gmail.com,
>>http://www.syncfusion.com/FAQ/aspnet...qhttp://www.sy
n...
>---
WBR,
Michael Nemtsev [C# MVP] :: blog:http://spaces.live.com/laflour
"The greatest danger for most of us is not that our aim is too
high
and we miss it, but that it is too low and we reach it" (c)
Michelangelo
>>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
I want when the user select the third row which holds the
following
value: 33333, G, H, and I and presses the Delete key in the
keyboard a
prompt message pops up saying: Are you sure you wish to delete
record
# 3333? If the user selects YES then it deletes that row. I know
how
to do the rest what I don't know how to do is catch and trap the
delete key when that row is select to prompt that message. Can
anyone
help me please? Thanks in advance.
Jan 11 '07 #11

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

Similar topics

0
by: Richard Payne | last post by:
I am developing a web application that utilises multiple grids, panels, validation controls etc on the same page. I have added the appropriate code to pop up dialogs to confirm delete in...
0
by: Richard Payne | last post by:
I am developing a web application that utilises multiple grids, panels, validation controls etc on the same page. I have added the appropriate code to pop up dialogs to confirm delete in...
4
by: Stephen | last post by:
I have got an event below to remove items from an arraylist and then to rebind the arraylist to the datagrid subsequently deleting the appropriate row. My problem is that my code makes sense and I...
1
by: ywchan | last post by:
I would like to have a datagrid that can be edited but not delete... and I have no idea how to capture the del key press event. Please help, thank!
7
by: Rémi | last post by:
Hello. I have just gotten a client-side delete confirmation Javascript button to work, using this FAQ question as a basis (3rd question down, URL...
7
by: DanB | last post by:
I want to asked the user if he is sure before deleting a row in a datagrid. I've created an event handler for the underlying table using the RowDeleting Event. If the user responds that he...
3
by: Melson | last post by:
hi can anyone help me how can i capture ENTER keystroke when the cell in datagrid is in editing mode. I'm now creating a data entry form with primary key in header and details in datagrid. So...
4
by: drakuu | last post by:
Hello there, I have DataGrid with some records and I would like to edit it right in the datagrid using the built in commands. I can't figure out a way to pass to the SQL query the record ID...
0
by: crferguson | last post by:
I've been looking in every place I can to find a solution for this and I believe I've pieced a solid one together so I thought I'd share since I've found so much help on these groups... This is...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
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,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
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...
0
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,...
0
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...

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.