473,729 Members | 2,405 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Deleting items from a Datagrid

I've got a datagrid with a remove button and I would like to add some code in
the code behind page so as whenthe button is clicked the corresponding row in
the datagrid is removed. The Datagrid is populated by the items in an
arraylist shown in the code below. When the button is clicked I would also
like the code to remove the items from the Arraylist. I've very little
experience working with datagrids and arraylists so im finding this difficult
to do and would really appreciate it if I could get some help from anyone
with this.

I know how to get the event up but not sure what to add into the event below
to achieve what I need to do: -
private void DataGrid1_Delet eCommand(object source,
System.Web.UI.W ebControls.Data GridCommandEven tArgs e)
{

}

This is how I currently create the arraylist and populate the datagrid: -
private void Page_Load(objec t sender, System.EventArg s e)
{
ArrayList addresses;

// when the page is first loaded only
if( !IsPostBack )
{
addresses = new ArrayList(5);
ViewState["Addresses"] = addresses;
}
// on subsequent PostBacks:
else
{
addresses = (ArrayList) ViewState["Addresses"];
if( addresses != null )
{
DataGrid1.DataS ource = addresses;
DataGrid1.DataB ind();
}
}
}

private void Button1_Click(o bject sender, System.EventArg s e)
{
ArrayList addresses;

addresses = (ArrayList) ViewState["Addresses"];

Address newAddress = new Address();
newAddress.Addr ess1 = this.TextBox1.T ext.Trim();
newAddress.Addr ess2 = this.TextBox2.T ext.Trim();
newAddress.Addr ess3 = this.TextBox3.T ext.Trim();
newAddress.Addr ess4 = this.TextBox4.T ext.Trim();
newAddress.Addr ess5 = this.TextBox5.T ext.Trim();
newAddress.Addr ess6 = this.TextBox6.T ext.Trim();
addresses.Add(n ewAddress);
ViewState["Addresses"] = addresses;

DataGrid1.DataS ource = addresses;
DataGrid1.DataB ind();
}

My datagrid code is as follows: -

<asp:DataGrid id="DataGrid1" style="Z-INDEX: 108; LEFT: 73px; POSITION:
absolute; TOP: 306px" runat="server" Width="459px"
AutoGenerateCol umns="false">
<Columns>
<asp:BoundColum n DataField="Addr ess1" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress1" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:BoundColum n DataField="Addr ess2" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress2" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:BoundColum n DataField="Addr ess3" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress3" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:BoundColum n DataField="Addr ess4" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress4" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:BoundColum n DataField="Addr ess5" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress5" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:BoundColum n DataField="Addr ess6" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress6" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:ButtonColu mn Text="Remove" ItemStyle-HorizontalAlign ="Center"
HeaderText="" CommandName="Re move" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k"
HeaderStyle-ForeColor="Whit e"></asp:ButtonColum n>
</Columns>
</asp:DataGrid>
Thanks for any help anyone can give me
Jul 21 '05 #1
3 3051
hi stephen,

you have to delete the item form the arraylist.
arraylist object provides a remove method, u need to pass the item to be
removed, in your case you can pass the string to be deleted.

Ex.
addresses.Remov e("myAddress" );

your next question might be, how do i get the text from the currently
selected row.

the datagrid has a property called the itemindex which returns the currently
selected row index as an integer.

so to get the text from the first cell in the datagrid that is displaying
your data,
u might have to use something similar to the sample shown below.

e.Item.Cells[0].Text

this returns the text in the first cell in the row where the edit button was
clicked.
pass this text to the remove method of the arraylist.
After removing from the arraylist, rebind the datagrid.

Hope this was helpful to you.
Regds,
http://kannanv.blogspot.com
"Stephen" wrote:
I've got a datagrid with a remove button and I would like to add some code in
the code behind page so as whenthe button is clicked the corresponding row in
the datagrid is removed. The Datagrid is populated by the items in an
arraylist shown in the code below. When the button is clicked I would also
like the code to remove the items from the Arraylist. I've very little
experience working with datagrids and arraylists so im finding this difficult
to do and would really appreciate it if I could get some help from anyone
with this.

I know how to get the event up but not sure what to add into the event below
to achieve what I need to do: -
private void DataGrid1_Delet eCommand(object source,
System.Web.UI.W ebControls.Data GridCommandEven tArgs e)
{

}

This is how I currently create the arraylist and populate the datagrid: -
private void Page_Load(objec t sender, System.EventArg s e)
{
ArrayList addresses;

// when the page is first loaded only
if( !IsPostBack )
{
addresses = new ArrayList(5);
ViewState["Addresses"] = addresses;
}
// on subsequent PostBacks:
else
{
addresses = (ArrayList) ViewState["Addresses"];
if( addresses != null )
{
DataGrid1.DataS ource = addresses;
DataGrid1.DataB ind();
}
}
}

private void Button1_Click(o bject sender, System.EventArg s e)
{
ArrayList addresses;

addresses = (ArrayList) ViewState["Addresses"];

Address newAddress = new Address();
newAddress.Addr ess1 = this.TextBox1.T ext.Trim();
newAddress.Addr ess2 = this.TextBox2.T ext.Trim();
newAddress.Addr ess3 = this.TextBox3.T ext.Trim();
newAddress.Addr ess4 = this.TextBox4.T ext.Trim();
newAddress.Addr ess5 = this.TextBox5.T ext.Trim();
newAddress.Addr ess6 = this.TextBox6.T ext.Trim();
addresses.Add(n ewAddress);
ViewState["Addresses"] = addresses;

DataGrid1.DataS ource = addresses;
DataGrid1.DataB ind();
}

My datagrid code is as follows: -

<asp:DataGrid id="DataGrid1" style="Z-INDEX: 108; LEFT: 73px; POSITION:
absolute; TOP: 306px" runat="server" Width="459px"
AutoGenerateCol umns="false">
<Columns>
<asp:BoundColum n DataField="Addr ess1" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress1" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:BoundColum n DataField="Addr ess2" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress2" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:BoundColum n DataField="Addr ess3" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress3" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:BoundColum n DataField="Addr ess4" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress4" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:BoundColum n DataField="Addr ess5" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress5" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:BoundColum n DataField="Addr ess6" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress6" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:ButtonColu mn Text="Remove" ItemStyle-HorizontalAlign ="Center"
HeaderText="" CommandName="Re move" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k"
HeaderStyle-ForeColor="Whit e"></asp:ButtonColum n>
</Columns>
</asp:DataGrid>
Thanks for any help anyone can give me

Jul 21 '05 #2
I tried the following and nothing seemed to have happened. Am I along the
correct lines. Thanks for your help so far I definitely understand how to do
it now, im just having difficulty executing it with the code. Do you have
any idea where I am going wrong. At present when the button is clicked
nothing seems to be happening.

private void DataGrid1_Delet eCommand(object source,
System.Web.UI.W ebControls.Data GridCommandEven tArgs e)
{
ArrayList addresses;
addresses = (ArrayList) ViewState["Addresses"];
string myAddress = e.Item.Cells[0].Text;
addresses.Remov e("myAddress" );
DataGrid1.DataS ource = addresses;
DataGrid1.DataB ind();
}

"Kannan.V" wrote:
hi stephen,

you have to delete the item form the arraylist.
arraylist object provides a remove method, u need to pass the item to be
removed, in your case you can pass the string to be deleted.

Ex.
addresses.Remov e("myAddress" );

your next question might be, how do i get the text from the currently
selected row.

the datagrid has a property called the itemindex which returns the currently
selected row index as an integer.

so to get the text from the first cell in the datagrid that is displaying
your data,
u might have to use something similar to the sample shown below.

e.Item.Cells[0].Text

this returns the text in the first cell in the row where the edit button was
clicked.
pass this text to the remove method of the arraylist.
After removing from the arraylist, rebind the datagrid.

Hope this was helpful to you.
Regds,
http://kannanv.blogspot.com
"Stephen" wrote:
I've got a datagrid with a remove button and I would like to add some code in
the code behind page so as whenthe button is clicked the corresponding row in
the datagrid is removed. The Datagrid is populated by the items in an
arraylist shown in the code below. When the button is clicked I would also
like the code to remove the items from the Arraylist. I've very little
experience working with datagrids and arraylists so im finding this difficult
to do and would really appreciate it if I could get some help from anyone
with this.

I know how to get the event up but not sure what to add into the event below
to achieve what I need to do: -
private void DataGrid1_Delet eCommand(object source,
System.Web.UI.W ebControls.Data GridCommandEven tArgs e)
{

}

This is how I currently create the arraylist and populate the datagrid: -
private void Page_Load(objec t sender, System.EventArg s e)
{
ArrayList addresses;

// when the page is first loaded only
if( !IsPostBack )
{
addresses = new ArrayList(5);
ViewState["Addresses"] = addresses;
}
// on subsequent PostBacks:
else
{
addresses = (ArrayList) ViewState["Addresses"];
if( addresses != null )
{
DataGrid1.DataS ource = addresses;
DataGrid1.DataB ind();
}
}
}

private void Button1_Click(o bject sender, System.EventArg s e)
{
ArrayList addresses;

addresses = (ArrayList) ViewState["Addresses"];

Address newAddress = new Address();
newAddress.Addr ess1 = this.TextBox1.T ext.Trim();
newAddress.Addr ess2 = this.TextBox2.T ext.Trim();
newAddress.Addr ess3 = this.TextBox3.T ext.Trim();
newAddress.Addr ess4 = this.TextBox4.T ext.Trim();
newAddress.Addr ess5 = this.TextBox5.T ext.Trim();
newAddress.Addr ess6 = this.TextBox6.T ext.Trim();
addresses.Add(n ewAddress);
ViewState["Addresses"] = addresses;

DataGrid1.DataS ource = addresses;
DataGrid1.DataB ind();
}

My datagrid code is as follows: -

<asp:DataGrid id="DataGrid1" style="Z-INDEX: 108; LEFT: 73px; POSITION:
absolute; TOP: 306px" runat="server" Width="459px"
AutoGenerateCol umns="false">
<Columns>
<asp:BoundColum n DataField="Addr ess1" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress1" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:BoundColum n DataField="Addr ess2" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress2" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:BoundColum n DataField="Addr ess3" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress3" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:BoundColum n DataField="Addr ess4" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress4" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:BoundColum n DataField="Addr ess5" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress5" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:BoundColum n DataField="Addr ess6" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress6" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:ButtonColu mn Text="Remove" ItemStyle-HorizontalAlign ="Center"
HeaderText="" CommandName="Re move" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k"
HeaderStyle-ForeColor="Whit e"></asp:ButtonColum n>
</Columns>
</asp:DataGrid>
Thanks for any help anyone can give me

Jul 21 '05 #3
hi stephen......

from the code you have shown below,
****
string myAddress = e.Item.Cells[0].Text;
addresses.Remov e("myAddress" );
****

you have assigned the text from the datagrid to a string variable and in the
second line you are trying to remove a static string by enclosing it within
"Quotes"... ....
remove the "" form the myAddress.
myAddress is a variable of string type and it will replace the value inside
the remove method with the string returned from the previous line and the
item that matches that string will be remove from the arraylist....

Hope it worked....
Regds
http://kannanv.blogspot.com

"Stephen" wrote:
I tried the following and nothing seemed to have happened. Am I along the
correct lines. Thanks for your help so far I definitely understand how to do
it now, im just having difficulty executing it with the code. Do you have
any idea where I am going wrong. At present when the button is clicked
nothing seems to be happening.

private void DataGrid1_Delet eCommand(object source,
System.Web.UI.W ebControls.Data GridCommandEven tArgs e)
{
ArrayList addresses;
addresses = (ArrayList) ViewState["Addresses"];
string myAddress = e.Item.Cells[0].Text;
addresses.Remov e("myAddress" );
DataGrid1.DataS ource = addresses;
DataGrid1.DataB ind();
}

"Kannan.V" wrote:
hi stephen,

you have to delete the item form the arraylist.
arraylist object provides a remove method, u need to pass the item to be
removed, in your case you can pass the string to be deleted.

Ex.
addresses.Remov e("myAddress" );

your next question might be, how do i get the text from the currently
selected row.

the datagrid has a property called the itemindex which returns the currently
selected row index as an integer.

so to get the text from the first cell in the datagrid that is displaying
your data,
u might have to use something similar to the sample shown below.

e.Item.Cells[0].Text

this returns the text in the first cell in the row where the edit button was
clicked.
pass this text to the remove method of the arraylist.
After removing from the arraylist, rebind the datagrid.

Hope this was helpful to you.
Regds,
http://kannanv.blogspot.com
"Stephen" wrote:
I've got a datagrid with a remove button and I would like to add some code in
the code behind page so as whenthe button is clicked the corresponding row in
the datagrid is removed. The Datagrid is populated by the items in an
arraylist shown in the code below. When the button is clicked I would also
like the code to remove the items from the Arraylist. I've very little
experience working with datagrids and arraylists so im finding this difficult
to do and would really appreciate it if I could get some help from anyone
with this.

I know how to get the event up but not sure what to add into the event below
to achieve what I need to do: -
private void DataGrid1_Delet eCommand(object source,
System.Web.UI.W ebControls.Data GridCommandEven tArgs e)
{

}

This is how I currently create the arraylist and populate the datagrid: -
private void Page_Load(objec t sender, System.EventArg s e)
{
ArrayList addresses;

// when the page is first loaded only
if( !IsPostBack )
{
addresses = new ArrayList(5);
ViewState["Addresses"] = addresses;
}
// on subsequent PostBacks:
else
{
addresses = (ArrayList) ViewState["Addresses"];
if( addresses != null )
{
DataGrid1.DataS ource = addresses;
DataGrid1.DataB ind();
}
}
}

private void Button1_Click(o bject sender, System.EventArg s e)
{
ArrayList addresses;

addresses = (ArrayList) ViewState["Addresses"];

Address newAddress = new Address();
newAddress.Addr ess1 = this.TextBox1.T ext.Trim();
newAddress.Addr ess2 = this.TextBox2.T ext.Trim();
newAddress.Addr ess3 = this.TextBox3.T ext.Trim();
newAddress.Addr ess4 = this.TextBox4.T ext.Trim();
newAddress.Addr ess5 = this.TextBox5.T ext.Trim();
newAddress.Addr ess6 = this.TextBox6.T ext.Trim();
addresses.Add(n ewAddress);
ViewState["Addresses"] = addresses;

DataGrid1.DataS ource = addresses;
DataGrid1.DataB ind();
}

My datagrid code is as follows: -

<asp:DataGrid id="DataGrid1" style="Z-INDEX: 108; LEFT: 73px; POSITION:
absolute; TOP: 306px" runat="server" Width="459px"
AutoGenerateCol umns="false">
<Columns>
<asp:BoundColum n DataField="Addr ess1" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress1" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:BoundColum n DataField="Addr ess2" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress2" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:BoundColum n DataField="Addr ess3" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress3" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:BoundColum n DataField="Addr ess4" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress4" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:BoundColum n DataField="Addr ess5" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress5" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:BoundColum n DataField="Addr ess6" ItemStyle-HorizontalAlign ="Center"
HeaderText="Add ress6" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k" HeaderStyle-ForeColor="Whit e"></asp:BoundColumn >
<asp:ButtonColu mn Text="Remove" ItemStyle-HorizontalAlign ="Center"
HeaderText="" CommandName="Re move" HeaderStyle-HorizontalAlign ="Center"
HeaderStyle-BackColor="blac k"
HeaderStyle-ForeColor="Whit e"></asp:ButtonColum n>
</Columns>
</asp:DataGrid>
Thanks for any help anyone can give me

Jul 21 '05 #4

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

Similar topics

1
4173
by: Junkguy | last post by:
I'm having difficulty deleting rows from a datagrid. I want to put a "delete" button on a form and achieve the same functionality as hitting the "delete" key on the keyboard for the selected row of a datagrid. I really want to do it generically so I have subclassed datagrid and made my own delete row method but I can only get it to work for datasources that are datatables or dataviews. Specifically when the datasource is a DataSet I...
5
14740
by: Mojtaba Faridzad | last post by:
Hi, with SetDataBinding( ) a DataGrid shows a DataView. user can select some rows in the grid by holding cotrol key. when user clicks on Delete button, I should delete all selected rows. I am trying to delete these lines from the dataview like this: for (int i=0; i < dataView.Count; i++) if (dataGrid.IsSelected(i)) dataView.Delete(i);
0
1358
by: Stephen | last post by:
I have a datagrid with a remove button and I would like to add some code in the code behind page so as whenthe button is clicked the corresponding row in the datagrid is removed. The Datagrid is populated by the items in an arraylist shown in the code below. When the button is clicked I would also like the code to remove the items from the Arraylist. I've very little experience working with datagrids and arraylists so im finding this...
5
4502
by: nadeem_far | last post by:
Hello All, I have been trying to solve the following issue and it seems like there is no solution available any where and maybe people at Microsoft should may be of some help. I am writing a .Net desktop application using C# and framework version 1.1 I have a arraylist of some objects of the same type and I am showing
0
1410
by: Hrvoje Vrbanc | last post by:
Hello, this is a problem I came upon while building a site based on MCMS 2002 but it's not strictly MCMS-oriented: I have a page that displays a certain content in presentation mode but when an editor clicks "Switch To Edit Site" in MCMS console on the page, the page displays a different content, an interface that editor use for upload and deleting files on the web server. There are no problems with the upload but there is a problem...
4
1575
by: Lisa | last post by:
Hey all, I've spent an hour reading posts to see how to delete a row in a datagrid but none of them work for me (most are VB.NET and I'm coding in C#). Specifically, I have a checkbox next to each row and a "Delete" button at the bottom. What I want is for each row that is checked to get deleted on the click event.... this is what I got.. <asp:datagrid id="grdUpload" runat="server" DataKeyField="UploadID" AutoGenerateColumns="false"...
0
1535
by: steven.shannon | last post by:
Hello, I'm writing an app that involves deleting all the items in a specified Outlook folder regardless of item type (i.e. Contacts, Tasks, etc.). This code was ported from VBA where it worked okay, but now in .NET it is exceedingly too slow when attempting to delete large collections (roughly 10,000). It is on the order of 10 items deleted every 30 seconds. My function is as follows: Private Sub DeleteAllEntries()
3
253
by: Stephen | last post by:
I've got a datagrid with a remove button and I would like to add some code in the code behind page so as whenthe button is clicked the corresponding row in the datagrid is removed. The Datagrid is populated by the items in an arraylist shown in the code below. When the button is clicked I would also like the code to remove the items from the Arraylist. I've very little experience working with datagrids and arraylists so im finding this...
10
2344
by: Nick | last post by:
Hello, Please pardon my ignorance as I'm sure this is easy to do. I have a datagrid where I want to let the user delete columns. I added a context menu to the datagrid that has a delete option. If the user right clicks on a column heading can I highlight that column and then delete it? I'm not exactly sure how to highlight it or figure out what column has been clicked. In my testing so far when I use the context menu I always get the...
0
8921
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
8763
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9284
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
9148
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
8151
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...
0
4796
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3238
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
2683
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2165
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.