473,396 Members | 2,030 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,396 software developers and data experts.

datagrid OnCancelCommand

My datagrid OnCancelCommand event is not firing.

HTML
OnCancelCommand="AdminGrid_Cancel"

'Code Behind
Sub AdminGrid_Cancel(ByVal sender As Object, ByVal e As
DataGridCommandEventArgs)
AdminGrid.EditItemIndex = -1
BindData()
End Sub

Does anyone have any clues as to why it is not firing?
Thanks,
Brent
Nov 18 '05 #1
8 1699
Brent Burkart wrote:
My datagrid OnCancelCommand event is not firing.

HTML
OnCancelCommand="AdminGrid_Cancel"

'Code Behind
Sub AdminGrid_Cancel(ByVal sender As Object, ByVal e As
DataGridCommandEventArgs)
AdminGrid.EditItemIndex = -1
BindData()
End Sub

Does anyone have any clues as to why it is not firing?
Thanks,
Brent


Brent,

If you are using VS.Net IDE, i had quite the same experience. Try
investigating by looking at the actual declaration of the hook-events
delegation. For some reason, sometimes, the IDE is taking out this
delegation.

hth,
Jonel

Nov 18 '05 #2
Thank Jonel,

I guess I am not sure what you are telling me.

I did add the handler keyword such as the following:

Sub AdminGrid_Cancel(ByVal sender As Object, ByVal e As
DataGridCommandEventArgs) Handles AdminGrid.CancelCommand

This didn't seem to do anything.

I am new to .NET. I am not sure what you mean by delegation.

Thanks for your patience.

Brent

"Jonel Rienton" <csharp@nospam_.core.com> wrote in message
news:3FB92857.9020207@nospam_.core.com...
Brent Burkart wrote:
My datagrid OnCancelCommand event is not firing.

HTML
OnCancelCommand="AdminGrid_Cancel"

'Code Behind
Sub AdminGrid_Cancel(ByVal sender As Object, ByVal e As
DataGridCommandEventArgs)
AdminGrid.EditItemIndex = -1
BindData()
End Sub

Does anyone have any clues as to why it is not firing?
Thanks,
Brent


Brent,

If you are using VS.Net IDE, i had quite the same experience. Try
investigating by looking at the actual declaration of the hook-events
delegation. For some reason, sometimes, the IDE is taking out this
delegation.

hth,
Jonel

Nov 18 '05 #3
Brent,

1) are you using VS.Net? or are you using another IDE?
2) i'm more of a C# developer, so i'll try to give it a shot here

aren't you, in VB.Net, supposed to declare an event-hook handler
somewhere(Page_Load,Page_Init) like:

AddHandler AdminGrid.CancelCommand, AddressOf AdminGrid_Cancel

let me know how it goes,

Jonel
Brent Burkart wrote:
Thank Jonel,

I guess I am not sure what you are telling me.

I did add the handler keyword such as the following:

Sub AdminGrid_Cancel(ByVal sender As Object, ByVal e As
DataGridCommandEventArgs) Handles AdminGrid.CancelCommand

This didn't seem to do anything.

I am new to .NET. I am not sure what you mean by delegation.

Thanks for your patience.

Brent

"Jonel Rienton" <csharp@nospam_.core.com> wrote in message
news:3FB92857.9020207@nospam_.core.com...
Brent Burkart wrote:

My datagrid OnCancelCommand event is not firing.

HTML
OnCancelCommand="AdminGrid_Cancel"

'Code Behind
Sub AdminGrid_Cancel(ByVal sender As Object, ByVal e As
DataGridCommandEventArgs)
AdminGrid.EditItemIndex = -1
BindData()
End Sub

Does anyone have any clues as to why it is not firing?
Thanks,
Brent


Brent,

If you are using VS.Net IDE, i had quite the same experience. Try
investigating by looking at the actual declaration of the hook-events
delegation. For some reason, sometimes, the IDE is taking out this
delegation.

hth,
Jonel


Nov 18 '05 #4
Thanks Jonel,

I am using VS.NET and you were correct in adding the AddHandler statement.
However, the event is still not firing. I appreciate your help because I am
at a loss.

Thanks,
Brent
"Jonel Rienton" <csharp@nospam_.core.com> wrote in message
news:3FB940F6.2060004@nospam_.core.com...
Brent,

1) are you using VS.Net? or are you using another IDE?
2) i'm more of a C# developer, so i'll try to give it a shot here

aren't you, in VB.Net, supposed to declare an event-hook handler
somewhere(Page_Load,Page_Init) like:

AddHandler AdminGrid.CancelCommand, AddressOf AdminGrid_Cancel

let me know how it goes,

Jonel
Brent Burkart wrote:
Thank Jonel,

I guess I am not sure what you are telling me.

I did add the handler keyword such as the following:

Sub AdminGrid_Cancel(ByVal sender As Object, ByVal e As
DataGridCommandEventArgs) Handles AdminGrid.CancelCommand

This didn't seem to do anything.

I am new to .NET. I am not sure what you mean by delegation.

Thanks for your patience.

Brent

"Jonel Rienton" <csharp@nospam_.core.com> wrote in message
news:3FB92857.9020207@nospam_.core.com...
Brent Burkart wrote:
My datagrid OnCancelCommand event is not firing.

HTML
OnCancelCommand="AdminGrid_Cancel"

'Code Behind
Sub AdminGrid_Cancel(ByVal sender As Object, ByVal e As
DataGridCommandEventArgs)
AdminGrid.EditItemIndex = -1
BindData()
End Sub

Does anyone have any clues as to why it is not firing?
Thanks,
Brent

Brent,

If you are using VS.Net IDE, i had quite the same experience. Try
investigating by looking at the actual declaration of the hook-events
delegation. For some reason, sometimes, the IDE is taking out this
delegation.

hth,
Jonel



Nov 18 '05 #5
Brent,

let's take this one step at a time, insert a Debug.WriteLine statement
in your event handler like:

'Code Behind
Sub AdminGrid_Cancel(ByVal sender As Object, ByVal e As
DataGridCommandEventArgs)
System.Diagnostics.Debug.WriteLine("admingrid_canc el called")
AdminGrid.EditItemIndex = -1
BindData()
End Sub

then run your webapp in debug mode and look at your debug window as you
test your application.

Brent Burkart wrote:
Thanks Jonel,

I am using VS.NET and you were correct in adding the AddHandler statement.
However, the event is still not firing. I appreciate your help because I am
at a loss.

Thanks,
Brent
"Jonel Rienton" <csharp@nospam_.core.com> wrote in message
news:3FB940F6.2060004@nospam_.core.com...
Brent,

1) are you using VS.Net? or are you using another IDE?
2) i'm more of a C# developer, so i'll try to give it a shot here

aren't you, in VB.Net, supposed to declare an event-hook handler
somewhere(Page_Load,Page_Init) like:

AddHandler AdminGrid.CancelCommand, AddressOf AdminGrid_Cancel

let me know how it goes,

Jonel
Brent Burkart wrote:

Thank Jonel,

I guess I am not sure what you are telling me.

I did add the handler keyword such as the following:

Sub AdminGrid_Cancel(ByVal sender As Object, ByVal e As
DataGridCommandEventArgs) Handles AdminGrid.CancelCommand

This didn't seem to do anything.

I am new to .NET. I am not sure what you mean by delegation.

Thanks for your patience.

Brent

"Jonel Rienton" <csharp@nospam_.core.com> wrote in message
news:3FB92857.9020207@nospam_.core.com...
Brent Burkart wrote:

>My datagrid OnCancelCommand event is not firing.
>
>HTML
>OnCancelCommand="AdminGrid_Cancel"
>
>'Code Behind
>Sub AdminGrid_Cancel(ByVal sender As Object, ByVal e As
>DataGridCommandEventArgs)
> AdminGrid.EditItemIndex = -1
> BindData()
>End Sub
>
>Does anyone have any clues as to why it is not firing?
>Thanks,
>Brent
>
>

Brent,

If you are using VS.Net IDE, i had quite the same experience. Try
investigating by looking at the actual declaration of the hook-events
delegation. For some reason, sometimes, the IDE is taking out this
delegation.

hth,
Jonel



Nov 18 '05 #6
Thanks Jonel,

I really appreciate your help. I do set a breakpoint and it never hits my
events. I also put the debug statement in and nothing.

I should tell you my AdminGrid_UpdateCommand will not fire either. I don't
know if that sheds any light on anything or not.

Thanks,
Brent
"Jonel Rienton" <csharp@nospam_.core.com> wrote in message
news:3FB94C58.4040503@nospam_.core.com...
Brent,

let's take this one step at a time, insert a Debug.WriteLine statement
in your event handler like:

'Code Behind
Sub AdminGrid_Cancel(ByVal sender As Object, ByVal e As
DataGridCommandEventArgs)
System.Diagnostics.Debug.WriteLine("admingrid_canc el called")
AdminGrid.EditItemIndex = -1
BindData()
End Sub

then run your webapp in debug mode and look at your debug window as you
test your application.

Brent Burkart wrote:
Thanks Jonel,

I am using VS.NET and you were correct in adding the AddHandler statement. However, the event is still not firing. I appreciate your help because I am at a loss.

Thanks,
Brent
"Jonel Rienton" <csharp@nospam_.core.com> wrote in message
news:3FB940F6.2060004@nospam_.core.com...
Brent,

1) are you using VS.Net? or are you using another IDE?
2) i'm more of a C# developer, so i'll try to give it a shot here

aren't you, in VB.Net, supposed to declare an event-hook handler
somewhere(Page_Load,Page_Init) like:

AddHandler AdminGrid.CancelCommand, AddressOf AdminGrid_Cancel

let me know how it goes,

Jonel
Brent Burkart wrote:
Thank Jonel,

I guess I am not sure what you are telling me.

I did add the handler keyword such as the following:

Sub AdminGrid_Cancel(ByVal sender As Object, ByVal e As
DataGridCommandEventArgs) Handles AdminGrid.CancelCommand

This didn't seem to do anything.

I am new to .NET. I am not sure what you mean by delegation.

Thanks for your patience.

Brent

"Jonel Rienton" <csharp@nospam_.core.com> wrote in message
news:3FB92857.9020207@nospam_.core.com...
>Brent Burkart wrote:
>
>
>
>>My datagrid OnCancelCommand event is not firing.
>>
>>HTML
>>OnCancelCommand="AdminGrid_Cancel"
>>
>>'Code Behind
>>Sub AdminGrid_Cancel(ByVal sender As Object, ByVal e As
>>DataGridCommandEventArgs)
>> AdminGrid.EditItemIndex = -1
>> BindData()
>>End Sub
>>
>>Does anyone have any clues as to why it is not firing?
>>Thanks,
>>Brent
>>
>>
>
>Brent,
>
>If you are using VS.Net IDE, i had quite the same experience. Try
>investigating by looking at the actual declaration of the hook-events
>delegation. For some reason, sometimes, the IDE is taking out this
>delegation.
>
>hth,
>Jonel
>


Nov 18 '05 #7
Brent,

are you hooking up the events manually or are you letting VS.Net IDE do
it for you? if the latter, check to make sure that the IDE is indeed
hooking up the events and the eventhandlers.

Jonel

[1] you can send me a snippet of your code offline if you'd like so i
can take a look at it.

Brent Burkart wrote:
Thanks Jonel,

I really appreciate your help. I do set a breakpoint and it never hits my
events. I also put the debug statement in and nothing.

I should tell you my AdminGrid_UpdateCommand will not fire either. I don't
know if that sheds any light on anything or not.

Thanks,
Brent
"Jonel Rienton" <csharp@nospam_.core.com> wrote in message
news:3FB94C58.4040503@nospam_.core.com...
Brent,

let's take this one step at a time, insert a Debug.WriteLine statement
in your event handler like:

'Code Behind
Sub AdminGrid_Cancel(ByVal sender As Object, ByVal e As
DataGridCommandEventArgs)
System.Diagnostics.Debug.WriteLine("admingrid_canc el called")
AdminGrid.EditItemIndex = -1
BindData()
End Sub

then run your webapp in debug mode and look at your debug window as you
test your application.

Brent Burkart wrote:

Thanks Jonel,

I am using VS.NET and you were correct in adding the AddHandler
statement.
However, the event is still not firing. I appreciate your help because
I am
at a loss.

Thanks,
Brent
"Jonel Rienton" <csharp@nospam_.core.com> wrote in message
news:3FB940F6.2060004@nospam_.core.com...
Brent,

1) are you using VS.Net? or are you using another IDE?
2) i'm more of a C# developer, so i'll try to give it a shot here

aren't you, in VB.Net, supposed to declare an event-hook handler
somewhere(Page_Load,Page_Init) like:

AddHandler AdminGrid.CancelCommand, AddressOf AdminGrid_Cancel

let me know how it goes,

Jonel
Brent Burkart wrote:

>Thank Jonel,
>
>I guess I am not sure what you are telling me.
>
>I did add the handler keyword such as the following:
>
>Sub AdminGrid_Cancel(ByVal sender As Object, ByVal e As
>DataGridCommandEventArgs) Handles AdminGrid.CancelCommand
>
>This didn't seem to do anything.
>
>I am new to .NET. I am not sure what you mean by delegation.
>
>Thanks for your patience.
>
>Brent
>
>"Jonel Rienton" <csharp@nospam_.core.com> wrote in message
>news:3FB92857.9020207@nospam_.core.com...
>
>
>
>>Brent Burkart wrote:
>>
>>
>>
>>
>>>My datagrid OnCancelCommand event is not firing.
>>>
>>>HTML
>>>OnCancelCommand="AdminGrid_Cancel"
>>>
>>>'Code Behind
>>>Sub AdminGrid_Cancel(ByVal sender As Object, ByVal e As
>>>DataGridCommandEventArgs)
>>> AdminGrid.EditItemIndex = -1
>>> BindData()
>>>End Sub
>>>
>>>Does anyone have any clues as to why it is not firing?
>>>Thanks,
>>>Brent
>>>
>>>
>>
>>Brent,
>>
>>If you are using VS.Net IDE, i had quite the same experience. Try
>>investigating by looking at the actual declaration of the hook-events
>>delegation. For some reason, sometimes, the IDE is taking out this
>>delegation.
>>
>>hth,
>>Jonel
>>
>
>
>



Nov 18 '05 #8
Jonel,

Here is the code. Thanks so much for your help

HTML
<form runat="server">

<asp:DataGrid runat="server" id="AdminGrid" BorderColor="#CCCCCC" BorderStyle="None" BorderWidth="1px" BackColor="White" CellPadding="3" Width="742px" Height="231px" DataKeyField="ProductID" AutoGenerateColumns="False" OnEditCommand="AdminGrid_EditCommand" OnCancelCommand="AdminGrid_CancelCommand" OnUpdateCommand="AdminGrid_UpdateCommand">

<SelectedItemStyle Font-Bold="True" ForeColor="White" BackColor="#669999"></SelectedItemStyle>

<ItemStyle ForeColor="#000066"></ItemStyle>

<HeaderStyle Font-Bold="True" ForeColor="White" BackColor="#006699"></HeaderStyle>

<FooterStyle ForeColor="#000066" BackColor="White"></FooterStyle>

<Columns>

<asp:EditCommandColumn ButtonType="LinkButton" UpdateText="Update" CancelText="Cancel" EditText="Edit"></asp:EditCommandColumn>

<asp:BoundColumn DataField="ModelName" HeaderText="Product Name"></asp:BoundColumn>

<asp:BoundColumn DataField="ModelNumber" HeaderText="Product Number"></asp:BoundColumn>

<asp:BoundColumn DataField="ProductImage" HeaderText="Product Image"></asp:BoundColumn>

<asp:BoundColumn DataField="itemcount" HeaderText="Item Count">

<HeaderStyle Width="35px"></HeaderStyle>

</asp:BoundColumn>

<asp:HyperLinkColumn Text="Level Setup" DataNavigateUrlField="ProductID" NavigateUrl="AdminPrice.aspx?id={0}">

<HeaderStyle Width="35px"></HeaderStyle>

</asp:HyperLinkColumn>

<asp:BoundColumn DataField="description" HeaderText="Description">

<HeaderStyle Width="150px"></HeaderStyle>

</asp:BoundColumn>

</Columns>

<PagerStyle HorizontalAlign="Left" ForeColor="#000066" BackColor="White" Mode="NumericPages"></PagerStyle>

</asp:DataGrid></form>

'Code Behind
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

If Not Page.IsPostBack Then

BindData()

End If

AddHandler AdminGrid.CancelCommand, AddressOf AdminGrid_CancelCommand

AddHandler AdminGrid.UpdateCommand, AddressOf AdminGrid_UpdateCommand

End Sub

Sub BindData()

Dim CategoryID As Integer = CInt(Request.Params("categoryid"))



' Obtain Product Details

Dim products As ProductsDB = New ProductsDB()





' Databind Gridcontrol with Shopping Cart Items

AdminGrid.DataSource = products.GetCompleteProductDetails(CategoryID)

AdminGrid.DataBind()





End Sub

Private Sub AdminGrid_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AdminGrid.SelectedIndexChanged



End Sub

Sub AdminGrid_EditCommand(ByVal sender As Object, ByVal e As DataGridCommandEventArgs)

AdminGrid.EditItemIndex = e.Item.ItemIndex

BindData()

End Sub

Sub AdminGrid_CancelCommand(ByVal sender As Object, ByVal e As DataGridCommandEventArgs) Handles AdminGrid.CancelCommand

System.Diagnostics.Debug.WriteLine("admingrid_canc el called")

AdminGrid.EditItemIndex = -1

BindData()

End Sub



Sub AdminGrid_UpdateCommand(ByVal sender As Object, ByVal e As DataGridCommandEventArgs) Handles AdminGrid.UpdateCommand



Dim product As ASPNET.StarterKit.Commerce.ProductsDB = New ASPNET.StarterKit.Commerce.ProductsDB()

'Iterate through all rows within datagrid



Dim i As Integer

For i = 0 To AdminGrid.Items.Count - 1

Dim ProductIdTxt As TextBox = CType(AdminGrid.Items(i).FindControl("productid"), TextBox)

Dim ModelNumberTxt As TextBox = CType(AdminGrid.Items(i).FindControl("ModelNumber" ), TextBox)

Dim ModelNameTxt As TextBox = CType(AdminGrid.Items(i).FindControl("ModelName"), TextBox)

Dim ProductImageTxt As TextBox = CType(AdminGrid.Items(i).FindControl("ProductImage "), TextBox)

Dim DescriptionTxt As TextBox = CType(AdminGrid.Items(i).FindControl("Description" ), TextBox)

Dim ItemCountTxt As TextBox = CType(AdminGrid.Items(i).FindControl("ItemCount"), TextBox)

Dim ProductId As Integer

Dim ModelNumber As String

Dim ModelName As String

Dim ProductImage As String

Dim Description As String

Dim ItemCount As Integer



product.UpdateDetails(ProductId, ModelNumber, ModelName, ProductImage, Description, ItemCount)



AdminGrid.EditItemIndex = -1

BindData()

Next

End Sub

"Jonel Rienton" <csharp@nospam_.core.com> wrote in message news:3FB98ECA.1070309@nospam_.core.com...
Brent,

are you hooking up the events manually or are you letting VS.Net IDE do
it for you? if the latter, check to make sure that the IDE is indeed
hooking up the events and the eventhandlers.

Jonel

[1] you can send me a snippet of your code offline if you'd like so i
can take a look at it.

Brent Burkart wrote:
Thanks Jonel,

I really appreciate your help. I do set a breakpoint and it never hits my
events. I also put the debug statement in and nothing.

I should tell you my AdminGrid_UpdateCommand will not fire either. I don't
know if that sheds any light on anything or not.

Thanks,
Brent
"Jonel Rienton" <csharp@nospam_.core.com> wrote in message
news:3FB94C58.4040503@nospam_.core.com...
Brent,

let's take this one step at a time, insert a Debug.WriteLine statement
in your event handler like:

'Code Behind
Sub AdminGrid_Cancel(ByVal sender As Object, ByVal e As
DataGridCommandEventArgs)
System.Diagnostics.Debug.WriteLine("admingrid_canc el called")
AdminGrid.EditItemIndex = -1
BindData()
End Sub

then run your webapp in debug mode and look at your debug window as you
test your application.

Brent Burkart wrote:
Thanks Jonel,

I am using VS.NET and you were correct in adding the AddHandler


statement.
However, the event is still not firing. I appreciate your help because


I am
at a loss.

Thanks,
Brent
"Jonel Rienton" <csharp@nospam_.core.com> wrote in message
news:3FB940F6.2060004@nospam_.core.com...
>Brent,
>
>1) are you using VS.Net? or are you using another IDE?
>2) i'm more of a C# developer, so i'll try to give it a shot here
>
> aren't you, in VB.Net, supposed to declare an event-hook handler
>somewhere(Page_Load,Page_Init) like:
>
>AddHandler AdminGrid.CancelCommand, AddressOf AdminGrid_Cancel
>
>let me know how it goes,
>
>Jonel
>
>
>Brent Burkart wrote:
>
>
>
>>Thank Jonel,
>>
>>I guess I am not sure what you are telling me.
>>
>>I did add the handler keyword such as the following:
>>
>>Sub AdminGrid_Cancel(ByVal sender As Object, ByVal e As
>>DataGridCommandEventArgs) Handles AdminGrid.CancelCommand
>>
>>This didn't seem to do anything.
>>
>>I am new to .NET. I am not sure what you mean by delegation.
>>
>>Thanks for your patience.
>>
>>Brent
>>
>>"Jonel Rienton" <csharp@nospam_.core.com> wrote in message
>>news:3FB92857.9020207@nospam_.core.com...
>>
>>
>>
>>>Brent Burkart wrote:
>>>
>>>
>>>
>>>
>>>>My datagrid OnCancelCommand event is not firing.
>>>>
>>>>HTML
>>>>OnCancelCommand="AdminGrid_Cancel"
>>>>
>>>>'Code Behind
>>>>Sub AdminGrid_Cancel(ByVal sender As Object, ByVal e As
>>>>DataGridCommandEventArgs)
>>>> AdminGrid.EditItemIndex = -1
>>>> BindData()
>>>>End Sub
>>>>
>>>>Does anyone have any clues as to why it is not firing?
>>>>Thanks,
>>>>Brent
>>>>
>>>>
>>>
>>>Brent,
>>>
>>>If you are using VS.Net IDE, i had quite the same experience. Try
>>>investigating by looking at the actual declaration of the hook-events
>>>delegation. For some reason, sometimes, the IDE is taking out this
>>>delegation.
>>>
>>>hth,
>>>Jonel
>>>
>>
>>
>>



Nov 18 '05 #9

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

Similar topics

0
by: shamila | last post by:
</asp:label><asp:datagrid id="DataGrid3" runat="server" cssclass="DataGrid" showfooter="True" onupdatecommand="DataGrid3_Update"ondeletecommand="DataGrid3_Delete" oneditcommand="DataGrid3_Edit"...
1
by: Rick | last post by:
Hello all, I hope all is well with you. I am having a seriously difficult time with this problem. Allow me to set up the problem. I have a System.Web.UI.Page with the following controls...
0
by: Linus | last post by:
Hi, I have a datagrid nested inside another datagrid, the edit/update/cancel command works fine on the outter datagrid but I'm having problems with the inner one. There are 2 problems and here's...
9
by: tshad | last post by:
How do I find (and set) a couple of labels in the Footer after a DataGrid is filled? I have a bunch of DataGrids that get displayed nested inside a DataList. The datagrid looks like: ...
4
by: tshad | last post by:
I am having trouble with links in my DataGrid. I have Links all over my page set to smaller and they are consistant all over the page in both Mozilla and IE, except for the DataGrid. Here is a...
1
by: Joe | last post by:
Hi, I have form with datagrid. This is what my form tag looks like, <form runat="server"> <asp:label runat="server" id="lblMessage" /> <asp:DataGrid runat="server" id="articleList"...
0
by: Chris | last post by:
I've been searching all over and think I am close, but keep getting the error "Index out of range" when trying to reference a nested datagrid when an OnEditCommand event is raised. When the...
6
by: p.mc | last post by:
Hi all, I'm having major problems with a userControl which contains a datagrid. My problem concerns data binding. The Page_Load() procedure calls the DataBind procedure to bind the datagrid...
1
by: johnlim20088 | last post by:
Hi, Hi, i have a datagrid in my mypage.aspx, I used the Bound column consisted of Edit, Save, Cancel, button. When I press edit, my datagrid change to editable mode, which the Save and Cancel...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
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
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...
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,...

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.