473,406 Members | 2,956 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.

Help with finding datagrid and associating event

I have a page with many controls. Among these controls there is a table
which is a datagrid with nested repeater inside. My problem is that I can
not use DataGridCommandEventArgs to get datagrid elements because submit
button is not in datagrid and uses onClick event btnSaveServicePlanUpdate.
Here is the code:

Sub btnSaveServicePlanUpdate_OnClick(sender As Object, e As EventArgs)
' need to get the key value serviceplanprogram_id and other elements of
datagrid here
.....
Response.Write("<br>Program id: " & intProgramID)
Response.Write("<br>Notes: " & Request.Form("txtNotes"))
.....
End Sub
<asp:table id="tClientNote" runat="server" CellPadding="3" CellSpacing="0">
<asp:tablerow runat="server">
<asp:tablecell runat="server">
.....
<asp:tablerow runat="server">
<asp:tablecell runat="server">Notes</asp:tablecell>
<asp:tablecell runat="server"><ASP:TextBox id="txtNotes" runat="server"
Text="" TextMode="Multiline" Columns="40" Rows="4" /></asp:tablecell>
</asp:tablerow>
<asp:tablerow runat="server">
<asp:tablecell runat="server">Added By</asp:tablecell>
<asp:tablecell runat="server"><asp:label id="lblAdded_by" Text=""
runat="server" /></asp:tablecell>
</asp:tablerow>
....
<asp:tablerow runat="server">
<asp:tablecell columnspan="2" runat="server">
<ASP:DataGrid id="dgrdCurrentServicePlanPrograms" RunAt="Server"
Width="800" BorderWidth="0" CellPadding="3" CellSpacing="0"
HeaderStyle-BackColor="#F6F6F6"
AlternatingItemStyle-BackColor="AliceBlue"
AutoGenerateColumns="False" DataKeyField="serviceplanprogram_id"
AllowPaging="False"
OnItemCommand="Grid_CurrentServicePlanProgramComma nd"

<ItemStyle VerticalAlign="top" />
<Columns>
<asp:BoundColumn Visible="False" HeaderText=""
DataField="serviceplanprogram_id" />
<asp:BoundColumn HeaderText="Program" DataField="program_name" />
<asp:TemplateColumn HeaderText="Notes">
<ItemTemplate>
<ASP:TextBox id="txtActivityNotes" runat="server" Text=""
TextMode="Multiline" columns="15" rows="3" />
</ItemTemplate>
</asp:TemplateColumn>
<asp:TemplateColumn ItemStyle-Width="20%" HeaderText="Current
progress toward goals<br />(1 lowest, 3 highest)">
<ItemTemplate>
<asp:dropdownlist id="ddlCurrent_progress" CssClass="required"
runat="server">
<asp:listitem text="(unspecified)" value="-1" runat="server" />
<asp:listitem text="1" value="1" runat="server" />
<asp:listitem text="2" value="2" runat="server" />
<asp:listitem text="3" value="3" runat="server" />
</asp:dropdownlist>
</ItemTemplate>
</asp:TemplateColumn>

<asp:TemplateColumn HeaderText="Comments">
<ItemTemplate>
<ASP:Repeater id="rptActivities"
DataSource='<%# GetActivities( Container.DataItem("program_id") )
%>'
runat="server">
<ItemTemplate>
<table border="0">
<tr>
<td width="70%">
<ASP:CheckBox id="chkActivityID" Value='<%#
Container.DataItem("activity_id") %>' runat="server" Text='<%#
Container.DataItem("name") %>' />
</td>
<td width="30%">
<ASP:TextBox id="txtActivity_other" visible='<%#
ShowOther(Container.DataItem("is_allow_additional_ text")) %>'
maxlenght="100" runat="server" columnspan="10" />
</td>
</table>
</ItemTemplate>
</ASP:Repeater>
</ItemTemplate>
</asp:TemplateColumn>

</Columns>
</ASP:DataGrid>
</asp:tablecell>
</asp:tablerow>

<asp:tablerow runat="server">
<asp:tablecell columnspan="2" runat="server" HorizontalAlign="center"
runat="server">
<asp:button id="btnSaveServicePlanUpdate" Text="Save" Visible="true"
runat="server" CommandName="saveupdate"
OnClick="btnSaveServicePlanUpdate_OnClick" />
</asp:tablecell>
</asp:tablerow>



.....
Thanks
Nov 18 '05 #1
4 1507
Also one more point, there are few grids on this page, but I need to
reference only this one

"News" <ge**@lycos.com> wrote in message
news:du********************@magma.ca...
I have a page with many controls. Among these controls there is a table
which is a datagrid with nested repeater inside. My problem is that I can
not use DataGridCommandEventArgs to get datagrid elements because submit
button is not in datagrid and uses onClick event btnSaveServicePlanUpdate.
Here is the code:

Sub btnSaveServicePlanUpdate_OnClick(sender As Object, e As EventArgs)
' need to get the key value serviceplanprogram_id and other elements of
datagrid here
....
Response.Write("<br>Program id: " & intProgramID)
Response.Write("<br>Notes: " & Request.Form("txtNotes"))
....
End Sub
<asp:table id="tClientNote" runat="server" CellPadding="3" CellSpacing="0"> <asp:tablerow runat="server">
<asp:tablecell runat="server">
....
<asp:tablerow runat="server">
<asp:tablecell runat="server">Notes</asp:tablecell>
<asp:tablecell runat="server"><ASP:TextBox id="txtNotes" runat="server" Text="" TextMode="Multiline" Columns="40" Rows="4" /></asp:tablecell>
</asp:tablerow>
<asp:tablerow runat="server">
<asp:tablecell runat="server">Added By</asp:tablecell>
<asp:tablecell runat="server"><asp:label id="lblAdded_by" Text=""
runat="server" /></asp:tablecell>
</asp:tablerow>
...
<asp:tablerow runat="server">
<asp:tablecell columnspan="2" runat="server">
<ASP:DataGrid id="dgrdCurrentServicePlanPrograms" RunAt="Server"
Width="800" BorderWidth="0" CellPadding="3" CellSpacing="0"
HeaderStyle-BackColor="#F6F6F6"
AlternatingItemStyle-BackColor="AliceBlue"
AutoGenerateColumns="False" DataKeyField="serviceplanprogram_id"
AllowPaging="False"
OnItemCommand="Grid_CurrentServicePlanProgramComma nd"
> <ItemStyle VerticalAlign="top" />
<Columns>
<asp:BoundColumn Visible="False" HeaderText=""
DataField="serviceplanprogram_id" />
<asp:BoundColumn HeaderText="Program" DataField="program_name" />
<asp:TemplateColumn HeaderText="Notes">
<ItemTemplate>
<ASP:TextBox id="txtActivityNotes" runat="server" Text=""
TextMode="Multiline" columns="15" rows="3" />
</ItemTemplate>
</asp:TemplateColumn>
<asp:TemplateColumn ItemStyle-Width="20%" HeaderText="Current
progress toward goals<br />(1 lowest, 3 highest)">
<ItemTemplate>
<asp:dropdownlist id="ddlCurrent_progress" CssClass="required"
runat="server">
<asp:listitem text="(unspecified)" value="-1" runat="server" />
<asp:listitem text="1" value="1" runat="server" />
<asp:listitem text="2" value="2" runat="server" />
<asp:listitem text="3" value="3" runat="server" />
</asp:dropdownlist>
</ItemTemplate>
</asp:TemplateColumn>

<asp:TemplateColumn HeaderText="Comments">
<ItemTemplate>
<ASP:Repeater id="rptActivities"
DataSource='<%# GetActivities(

Container.DataItem("program_id") ) %>'
runat="server">
<ItemTemplate>
<table border="0">
<tr>
<td width="70%">
<ASP:CheckBox id="chkActivityID" Value='<%#
Container.DataItem("activity_id") %>' runat="server" Text='<%#
Container.DataItem("name") %>' />
</td>
<td width="30%">
<ASP:TextBox id="txtActivity_other" visible='<%#
ShowOther(Container.DataItem("is_allow_additional_ text")) %>'
maxlenght="100" runat="server" columnspan="10" />
</td>
</table>
</ItemTemplate>
</ASP:Repeater>
</ItemTemplate>
</asp:TemplateColumn>

</Columns>
</ASP:DataGrid>
</asp:tablecell>
</asp:tablerow>

<asp:tablerow runat="server">
<asp:tablecell columnspan="2" runat="server" HorizontalAlign="center"
runat="server">
<asp:button id="btnSaveServicePlanUpdate" Text="Save" Visible="true"
runat="server" CommandName="saveupdate"
OnClick="btnSaveServicePlanUpdate_OnClick" />
</asp:tablecell>
</asp:tablerow>



....
Thanks

Nov 18 '05 #2
May be I didn't get the problem right. If you know the datagrid name, why
can't you navigate it in the button's OnClick event handler using all
available datagrid members, like SelectrdItem, SelectedIndex?

Eliyahu

"News" <ge**@lycos.com> wrote in message
news:du********************@magma.ca...
I have a page with many controls. Among these controls there is a table
which is a datagrid with nested repeater inside. My problem is that I can
not use DataGridCommandEventArgs to get datagrid elements because submit
button is not in datagrid and uses onClick event btnSaveServicePlanUpdate.
Here is the code:

Sub btnSaveServicePlanUpdate_OnClick(sender As Object, e As EventArgs)
' need to get the key value serviceplanprogram_id and other elements of
datagrid here
....
Response.Write("<br>Program id: " & intProgramID)
Response.Write("<br>Notes: " & Request.Form("txtNotes"))
....
End Sub
<asp:table id="tClientNote" runat="server" CellPadding="3" CellSpacing="0"> <asp:tablerow runat="server">
<asp:tablecell runat="server">
....
<asp:tablerow runat="server">
<asp:tablecell runat="server">Notes</asp:tablecell>
<asp:tablecell runat="server"><ASP:TextBox id="txtNotes" runat="server" Text="" TextMode="Multiline" Columns="40" Rows="4" /></asp:tablecell>
</asp:tablerow>
<asp:tablerow runat="server">
<asp:tablecell runat="server">Added By</asp:tablecell>
<asp:tablecell runat="server"><asp:label id="lblAdded_by" Text=""
runat="server" /></asp:tablecell>
</asp:tablerow>
...
<asp:tablerow runat="server">
<asp:tablecell columnspan="2" runat="server">
<ASP:DataGrid id="dgrdCurrentServicePlanPrograms" RunAt="Server"
Width="800" BorderWidth="0" CellPadding="3" CellSpacing="0"
HeaderStyle-BackColor="#F6F6F6"
AlternatingItemStyle-BackColor="AliceBlue"
AutoGenerateColumns="False" DataKeyField="serviceplanprogram_id"
AllowPaging="False"
OnItemCommand="Grid_CurrentServicePlanProgramComma nd"
> <ItemStyle VerticalAlign="top" />
<Columns>
<asp:BoundColumn Visible="False" HeaderText=""
DataField="serviceplanprogram_id" />
<asp:BoundColumn HeaderText="Program" DataField="program_name" />
<asp:TemplateColumn HeaderText="Notes">
<ItemTemplate>
<ASP:TextBox id="txtActivityNotes" runat="server" Text=""
TextMode="Multiline" columns="15" rows="3" />
</ItemTemplate>
</asp:TemplateColumn>
<asp:TemplateColumn ItemStyle-Width="20%" HeaderText="Current
progress toward goals<br />(1 lowest, 3 highest)">
<ItemTemplate>
<asp:dropdownlist id="ddlCurrent_progress" CssClass="required"
runat="server">
<asp:listitem text="(unspecified)" value="-1" runat="server" />
<asp:listitem text="1" value="1" runat="server" />
<asp:listitem text="2" value="2" runat="server" />
<asp:listitem text="3" value="3" runat="server" />
</asp:dropdownlist>
</ItemTemplate>
</asp:TemplateColumn>

<asp:TemplateColumn HeaderText="Comments">
<ItemTemplate>
<ASP:Repeater id="rptActivities"
DataSource='<%# GetActivities(

Container.DataItem("program_id") ) %>'
runat="server">
<ItemTemplate>
<table border="0">
<tr>
<td width="70%">
<ASP:CheckBox id="chkActivityID" Value='<%#
Container.DataItem("activity_id") %>' runat="server" Text='<%#
Container.DataItem("name") %>' />
</td>
<td width="30%">
<ASP:TextBox id="txtActivity_other" visible='<%#
ShowOther(Container.DataItem("is_allow_additional_ text")) %>'
maxlenght="100" runat="server" columnspan="10" />
</td>
</table>
</ItemTemplate>
</ASP:Repeater>
</ItemTemplate>
</asp:TemplateColumn>

</Columns>
</ASP:DataGrid>
</asp:tablecell>
</asp:tablerow>

<asp:tablerow runat="server">
<asp:tablecell columnspan="2" runat="server" HorizontalAlign="center"
runat="server">
<asp:button id="btnSaveServicePlanUpdate" Text="Save" Visible="true"
runat="server" CommandName="saveupdate"
OnClick="btnSaveServicePlanUpdate_OnClick" />
</asp:tablecell>
</asp:tablerow>



....
Thanks

Nov 18 '05 #3
Yes, I know the name but I can not find a way to directly reference it.
I am sure this is more simple than I have come up with, I did it this way:

Dim dgItem As DataGridItem

For Each rptItem In oRepeater.Items
intProgramID = dgItem.Cells(0).Text
....

Next


"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:ON*************@tk2msftngp13.phx.gbl...
May be I didn't get the problem right. If you know the datagrid name, why
can't you navigate it in the button's OnClick event handler using all
available datagrid members, like SelectrdItem, SelectedIndex?

Eliyahu

"News" <ge**@lycos.com> wrote in message
news:du********************@magma.ca...
I have a page with many controls. Among these controls there is a table
which is a datagrid with nested repeater inside. My problem is that I can not use DataGridCommandEventArgs to get datagrid elements because submit
button is not in datagrid and uses onClick event btnSaveServicePlanUpdate.

Here is the code:

Sub btnSaveServicePlanUpdate_OnClick(sender As Object, e As EventArgs)
' need to get the key value serviceplanprogram_id and other elements of
datagrid here
....
Response.Write("<br>Program id: " & intProgramID)
Response.Write("<br>Notes: " & Request.Form("txtNotes"))
....
End Sub
<asp:table id="tClientNote" runat="server" CellPadding="3"

CellSpacing="0">
<asp:tablerow runat="server">
<asp:tablecell runat="server">
....
<asp:tablerow runat="server">
<asp:tablecell runat="server">Notes</asp:tablecell>
<asp:tablecell runat="server"><ASP:TextBox id="txtNotes"

runat="server"
Text="" TextMode="Multiline" Columns="40" Rows="4" /></asp:tablecell>
</asp:tablerow>
<asp:tablerow runat="server">
<asp:tablecell runat="server">Added By</asp:tablecell>
<asp:tablecell runat="server"><asp:label id="lblAdded_by" Text=""
runat="server" /></asp:tablecell>
</asp:tablerow>
...
<asp:tablerow runat="server">
<asp:tablecell columnspan="2" runat="server">
<ASP:DataGrid id="dgrdCurrentServicePlanPrograms" RunAt="Server"
Width="800" BorderWidth="0" CellPadding="3" CellSpacing="0"
HeaderStyle-BackColor="#F6F6F6"
AlternatingItemStyle-BackColor="AliceBlue"
AutoGenerateColumns="False" DataKeyField="serviceplanprogram_id"
AllowPaging="False"
OnItemCommand="Grid_CurrentServicePlanProgramComma nd"
>

<ItemStyle VerticalAlign="top" />
<Columns>
<asp:BoundColumn Visible="False" HeaderText=""
DataField="serviceplanprogram_id" />
<asp:BoundColumn HeaderText="Program" DataField="program_name" /> <asp:TemplateColumn HeaderText="Notes">
<ItemTemplate>
<ASP:TextBox id="txtActivityNotes" runat="server" Text=""
TextMode="Multiline" columns="15" rows="3" />
</ItemTemplate>
</asp:TemplateColumn>
<asp:TemplateColumn ItemStyle-Width="20%" HeaderText="Current
progress toward goals<br />(1 lowest, 3 highest)">
<ItemTemplate>
<asp:dropdownlist id="ddlCurrent_progress" CssClass="required"
runat="server">
<asp:listitem text="(unspecified)" value="-1" runat="server" /> <asp:listitem text="1" value="1" runat="server" />
<asp:listitem text="2" value="2" runat="server" />
<asp:listitem text="3" value="3" runat="server" />
</asp:dropdownlist>
</ItemTemplate>
</asp:TemplateColumn>

<asp:TemplateColumn HeaderText="Comments">
<ItemTemplate>
<ASP:Repeater id="rptActivities"
DataSource='<%# GetActivities(

Container.DataItem("program_id") )
%>'
runat="server">
<ItemTemplate>
<table border="0">
<tr>
<td width="70%">
<ASP:CheckBox id="chkActivityID" Value='<%#
Container.DataItem("activity_id") %>' runat="server" Text='<%#
Container.DataItem("name") %>' />
</td>
<td width="30%">
<ASP:TextBox id="txtActivity_other" visible='<%#
ShowOther(Container.DataItem("is_allow_additional_ text")) %>'
maxlenght="100" runat="server" columnspan="10" />
</td>
</table>
</ItemTemplate>
</ASP:Repeater>
</ItemTemplate>
</asp:TemplateColumn>

</Columns>
</ASP:DataGrid>
</asp:tablecell>
</asp:tablerow>

<asp:tablerow runat="server">
<asp:tablecell columnspan="2" runat="server" HorizontalAlign="center" runat="server">
<asp:button id="btnSaveServicePlanUpdate" Text="Save" Visible="true" runat="server" CommandName="saveupdate"
OnClick="btnSaveServicePlanUpdate_OnClick" />
</asp:tablecell>
</asp:tablerow>



....
Thanks


Nov 18 '05 #4
dgrdCurrentServicePlanPrograms.Items doesn't work ?????

Eliyahu

"News" <ge**@lycos.com> wrote in message
news:PK********************@magma.ca...
Yes, I know the name but I can not find a way to directly reference it.
I am sure this is more simple than I have come up with, I did it this way:

Dim dgItem As DataGridItem

For Each rptItem In oRepeater.Items
intProgramID = dgItem.Cells(0).Text
....

Next


"Eliyahu Goldin" <re*************@monarchmed.com> wrote in message
news:ON*************@tk2msftngp13.phx.gbl...
May be I didn't get the problem right. If you know the datagrid name, why
can't you navigate it in the button's OnClick event handler using all
available datagrid members, like SelectrdItem, SelectedIndex?

Eliyahu

"News" <ge**@lycos.com> wrote in message
news:du********************@magma.ca...
I have a page with many controls. Among these controls there is a table which is a datagrid with nested repeater inside. My problem is that I
can not use DataGridCommandEventArgs to get datagrid elements because submit button is not in datagrid and uses onClick event btnSaveServicePlanUpdate.

Here is the code:

Sub btnSaveServicePlanUpdate_OnClick(sender As Object, e As EventArgs)
' need to get the key value serviceplanprogram_id and other elements of datagrid here
....
Response.Write("<br>Program id: " & intProgramID)
Response.Write("<br>Notes: " & Request.Form("txtNotes"))
....
End Sub
<asp:table id="tClientNote" runat="server" CellPadding="3"

CellSpacing="0">
<asp:tablerow runat="server">
<asp:tablecell runat="server">
....
<asp:tablerow runat="server">
<asp:tablecell runat="server">Notes</asp:tablecell>
<asp:tablecell runat="server"><ASP:TextBox id="txtNotes"

runat="server"
Text="" TextMode="Multiline" Columns="40" Rows="4" /></asp:tablecell>
</asp:tablerow>
<asp:tablerow runat="server">
<asp:tablecell runat="server">Added By</asp:tablecell>
<asp:tablecell runat="server"><asp:label id="lblAdded_by" Text=""
runat="server" /></asp:tablecell>
</asp:tablerow>
...
<asp:tablerow runat="server">
<asp:tablecell columnspan="2" runat="server">
<ASP:DataGrid id="dgrdCurrentServicePlanPrograms" RunAt="Server"
Width="800" BorderWidth="0" CellPadding="3" CellSpacing="0"
HeaderStyle-BackColor="#F6F6F6"
AlternatingItemStyle-BackColor="AliceBlue"
AutoGenerateColumns="False" DataKeyField="serviceplanprogram_id" AllowPaging="False"
OnItemCommand="Grid_CurrentServicePlanProgramComma nd"
>
<ItemStyle VerticalAlign="top" />
<Columns>
<asp:BoundColumn Visible="False" HeaderText=""
DataField="serviceplanprogram_id" />
<asp:BoundColumn HeaderText="Program" DataField="program_name" /> <asp:TemplateColumn HeaderText="Notes">
<ItemTemplate>
<ASP:TextBox id="txtActivityNotes" runat="server" Text=""
TextMode="Multiline" columns="15" rows="3" />
</ItemTemplate>
</asp:TemplateColumn>
<asp:TemplateColumn ItemStyle-Width="20%" HeaderText="Current
progress toward goals<br />(1 lowest, 3 highest)">
<ItemTemplate>
<asp:dropdownlist id="ddlCurrent_progress" CssClass="required" runat="server">
<asp:listitem text="(unspecified)" value="-1"
runat="server" /> <asp:listitem text="1" value="1" runat="server" />
<asp:listitem text="2" value="2" runat="server" />
<asp:listitem text="3" value="3" runat="server" />
</asp:dropdownlist>
</ItemTemplate>
</asp:TemplateColumn>

<asp:TemplateColumn HeaderText="Comments">
<ItemTemplate>
<ASP:Repeater id="rptActivities"
DataSource='<%# GetActivities(

Container.DataItem("program_id") )
%>'
runat="server">
<ItemTemplate>
<table border="0">
<tr>
<td width="70%">
<ASP:CheckBox id="chkActivityID" Value='<%#
Container.DataItem("activity_id") %>' runat="server" Text='<%#
Container.DataItem("name") %>' />
</td>
<td width="30%">
<ASP:TextBox id="txtActivity_other" visible='<%#
ShowOther(Container.DataItem("is_allow_additional_ text")) %>'
maxlenght="100" runat="server" columnspan="10" />
</td>
</table>
</ItemTemplate>
</ASP:Repeater>
</ItemTemplate>
</asp:TemplateColumn>

</Columns>
</ASP:DataGrid>
</asp:tablecell>
</asp:tablerow>

<asp:tablerow runat="server">
<asp:tablecell columnspan="2" runat="server" HorizontalAlign="center" runat="server">
<asp:button id="btnSaveServicePlanUpdate" Text="Save" Visible="true" runat="server" CommandName="saveupdate"
OnClick="btnSaveServicePlanUpdate_OnClick" />
</asp:tablecell>
</asp:tablerow>



....
Thanks



Nov 18 '05 #5

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

Similar topics

2
by: John R. Dougherty | last post by:
Using VB.NET: I am populating a DataTable from a SQL Server table, then associating that DataTable to a DataGrid control. I want to disallow the user from inserting new records on that DataGrid,...
3
by: Fortra | last post by:
I'm having trouble with the UpdateCommand event with the DataGrid control. The event is wired up in the InitializeComponents properly, this.sitesDataGrid.UpdateCommand += new...
0
by: Stephen Cairns | last post by:
I am very new to programming and in particular datagrids and am finding it difficult to add code to the event handler below to run an UpdateCommand on a row in my datagrid. Could someone please...
1
by: Shourie | last post by:
I've noticed that none of the child controls events are firing for the first time from the dynamic user control. Here is the event cycle. 1) MainPage_load 2) User control1_Load user clicks a...
2
by: hansiman | last post by:
When I want to add a js confirm box to a delete button that is positioned in the last column in a datagrid row I do the following in the ItemDataBound event: Dim delBtn As LinkButton =...
11
by: CM Manager via DotNetMonster.com | last post by:
I am very frustrated due to this exception error I am receiving. I've tried searching numerous user support groups, Microsoft Support Net, Google, etc. and haven't found exactly my situation....
4
by: Jeff User | last post by:
Hi I tryed to solve this problem over in the framework.asp group, but still am having trouble. Hope someone here can help. using .net 1.1, VS 2003 and C# I have an asp.DataGrid control with a...
7
by: Rob Dob | last post by:
The following code is giving me a timeout problem., no matter what I do I can't send a piece of mail using .net2.0 System.Net.Mail.SmtpClient via port 465 and using ssl, if however I try using...
275
by: Astley Le Jasper | last post by:
Sorry for the numpty question ... How do you find the reference name of an object? So if i have this bob = modulename.objectname() how do i find that the name is 'bob'
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: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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: 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:
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
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.