473,396 Members | 2,036 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.

Binding a textbox to a dataview

I have a textbox bound to a dataview, when I update the text in the textbox no changes take place in the underlying dataset. Why is this??

any answers appreciated, as to due to the underlying structure of the datasets, i.e lots of child tables etc, I cannot use bindingcontext

Nov 16 '05 #1
13 4273
Paul,

If you are not using binding context, then how are you binding to the
data set? The DataBindings collection and the BindingContext classes are
tied together, and you can't really have one without the other.

What exactly are you doing in order to create a data binding?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Paul Slavin" <Pa********@discussions.microsoft.com> wrote in message
news:B9**********************************@microsof t.com...
I have a textbox bound to a dataview, when I update the text in the textbox no changes take place in the underlying dataset. Why is this??
any answers appreciated, as to due to the underlying structure of the datasets, i.e lots of child tables etc, I cannot use bindingcontext

Nov 16 '05 #2
thanks for your reply... heres a bit more detail

I'm binding to a dataview:

this.rgiDataView = new DataView();
this.rgiDataView.Table = this.ds.Tables["ATPBlockOrOL"];
this.rgiNormTxtBox.DataBindings.Add( "text", rgiDataView, "RailGapIndicatorId" );

and I change the view in the textbox based on the currently selected item in a combobox on the same form:

this.rgiDataView.RowFilter = "BlockOrOLId = '" + this.blockIdComboBox.SelectedValue + "'";

when I change the selection in the combobox, the text in the text box changes correctly, but when I change text in the textbox the changes aren't reflected in the dataset. Am I doing something fundamentaly wrong?

If I do exactly the same thing but binding to a datagrid rather than the textbox it updates the dataset correctly
"Nicholas Paldino [.NET/C# MVP]" wrote:
Paul,

If you are not using binding context, then how are you binding to the
data set? The DataBindings collection and the BindingContext classes are
tied together, and you can't really have one without the other.

What exactly are you doing in order to create a data binding?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Paul Slavin" <Pa********@discussions.microsoft.com> wrote in message
news:B9**********************************@microsof t.com...
I have a textbox bound to a dataview, when I update the text in the

textbox no changes take place in the underlying dataset. Why is this??

any answers appreciated, as to due to the underlying structure of the

datasets, i.e lots of child tables etc, I cannot use bindingcontext


Nov 16 '05 #3
Paul,

When checking the value in the textbox, have you left the focus of the
textbox? The value will not be written to the dataset until the focus is
lost (more specifically, when validation is complete, which usually happens
when focus is lost).
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Paul Slavin" <Pa********@discussions.microsoft.com> wrote in message
news:1C**********************************@microsof t.com...
thanks for your reply... heres a bit more detail

I'm binding to a dataview:

this.rgiDataView = new DataView();
this.rgiDataView.Table = this.ds.Tables["ATPBlockOrOL"];
this.rgiNormTxtBox.DataBindings.Add( "text", rgiDataView, "RailGapIndicatorId" );
and I change the view in the textbox based on the currently selected item in a combobox on the same form:
this.rgiDataView.RowFilter = "BlockOrOLId = '" + this.blockIdComboBox.SelectedValue + "'";
when I change the selection in the combobox, the text in the text box changes correctly, but when I change text in the textbox the changes aren't
reflected in the dataset. Am I doing something fundamentaly wrong?
If I do exactly the same thing but binding to a datagrid rather than the textbox it updates the dataset correctly

"Nicholas Paldino [.NET/C# MVP]" wrote:
Paul,

If you are not using binding context, then how are you binding to the data set? The DataBindings collection and the BindingContext classes are tied together, and you can't really have one without the other.

What exactly are you doing in order to create a data binding?
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Paul Slavin" <Pa********@discussions.microsoft.com> wrote in message
news:B9**********************************@microsof t.com...
I have a textbox bound to a dataview, when I update the text in the

textbox no changes take place in the underlying dataset. Why is this??

any answers appreciated, as to due to the underlying structure of the

datasets, i.e lots of child tables etc, I cannot use bindingcontext


Nov 16 '05 #4
thanks for replying yesterday Nicholas,

after further debugging, ive discovered that the change is actually taking place in the dataset but the rowstate remains as Unchanged!!!! so when I write back to the database no changes found and hence none are commited.... now i'm even more confused, i'm not accepting changes anywhere before I try and update.... oh well more debugging!!!!

"Paul Slavin" wrote:
I have a textbox bound to a dataview, when I update the text in the textbox no changes take place in the underlying dataset. Why is this??

any answers appreciated, as to due to the underlying structure of the datasets, i.e lots of child tables etc, I cannot use bindingcontext

Nov 16 '05 #5
thanks for replying yesterday Nicholas,

after further debugging, ive discovered that the change is actually taking place in the dataset but the rowstate remains as Unchanged!!!! so when I write back to the database no changes found and hence none are commited.... now i'm even more confused, i'm not accepting changes anywhere before I try and update.... oh well more debugging!!!!
"Paul Slavin" wrote:
In order for the updates to be written from the dataset to the database, i have to hit a save button on the form which ensures that any changed controls have lost focus!!
"Nicholas Paldino [.NET/C# MVP]" wrote:
Paul,

When checking the value in the textbox, have you left the focus of the
textbox? The value will not be written to the dataset until the focus is
lost (more specifically, when validation is complete, which usually happens
when focus is lost).
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Paul Slavin" <Pa********@discussions.microsoft.com> wrote in message
news:1C**********************************@microsof t.com...
thanks for your reply... heres a bit more detail

I'm binding to a dataview:

this.rgiDataView = new DataView();
this.rgiDataView.Table = this.ds.Tables["ATPBlockOrOL"];
this.rgiNormTxtBox.DataBindings.Add( "text", rgiDataView,

"RailGapIndicatorId" );

and I change the view in the textbox based on the currently selected item

in a combobox on the same form:

this.rgiDataView.RowFilter = "BlockOrOLId = '" +

this.blockIdComboBox.SelectedValue + "'";

when I change the selection in the combobox, the text in the text box

changes correctly, but when I change text in the textbox the changes aren't
reflected in the dataset. Am I doing something fundamentaly wrong?

If I do exactly the same thing but binding to a datagrid rather than the

textbox it updates the dataset correctly


"Nicholas Paldino [.NET/C# MVP]" wrote:

> Paul,
>
> If you are not using binding context, then how are you binding to

the
> data set? The DataBindings collection and the BindingContext classes

are
> tied together, and you can't really have one without the other.
>
> What exactly are you doing in order to create a data binding?
>
>
> --
> - Nicholas Paldino [.NET/C# MVP]
> - mv*@spam.guard.caspershouse.com
>
> "Paul Slavin" <Pa********@discussions.microsoft.com> wrote in message
> news:B9**********************************@microsof t.com...
> > I have a textbox bound to a dataview, when I update the text in the
> textbox no changes take place in the underlying dataset. Why is this??
> >
> > any answers appreciated, as to due to the underlying structure of the
> datasets, i.e lots of child tables etc, I cannot use bindingcontext
> >
>
>
>


Nov 16 '05 #6
thanks for replying yesterday Nicholas,

after further debugging, ive discovered that the change is actually taking place in the dataset but the rowstate remains as Unchanged!!!! so when I write back to the database no changes found and hence none are commited.... now i'm even more confused, i'm not accepting changes anywhere before I try and update.... oh well more debugging!!!!
"Paul Slavin" wrote:
In order for the updates to be written from the dataset to the database, i have to hit a save button on the form which ensures that any changed controls have lost focus!!
"Nicholas Paldino [.NET/C# MVP]" wrote:
Paul,

When checking the value in the textbox, have you left the focus of the
textbox? The value will not be written to the dataset until the focus is
lost (more specifically, when validation is complete, which usually happens
when focus is lost).
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Paul Slavin" <Pa********@discussions.microsoft.com> wrote in message
news:1C**********************************@microsof t.com...
thanks for your reply... heres a bit more detail

I'm binding to a dataview:

this.rgiDataView = new DataView();
this.rgiDataView.Table = this.ds.Tables["ATPBlockOrOL"];
this.rgiNormTxtBox.DataBindings.Add( "text", rgiDataView,

"RailGapIndicatorId" );

and I change the view in the textbox based on the currently selected item

in a combobox on the same form:

this.rgiDataView.RowFilter = "BlockOrOLId = '" +

this.blockIdComboBox.SelectedValue + "'";

when I change the selection in the combobox, the text in the text box

changes correctly, but when I change text in the textbox the changes aren't
reflected in the dataset. Am I doing something fundamentaly wrong?

If I do exactly the same thing but binding to a datagrid rather than the

textbox it updates the dataset correctly


"Nicholas Paldino [.NET/C# MVP]" wrote:

> Paul,
>
> If you are not using binding context, then how are you binding to

the
> data set? The DataBindings collection and the BindingContext classes

are
> tied together, and you can't really have one without the other.
>
> What exactly are you doing in order to create a data binding?
>
>
> --
> - Nicholas Paldino [.NET/C# MVP]
> - mv*@spam.guard.caspershouse.com
>
> "Paul Slavin" <Pa********@discussions.microsoft.com> wrote in message
> news:B9**********************************@microsof t.com...
> > I have a textbox bound to a dataview, when I update the text in the
> textbox no changes take place in the underlying dataset. Why is this??
> >
> > any answers appreciated, as to due to the underlying structure of the
> datasets, i.e lots of child tables etc, I cannot use bindingcontext
> >
>
>
>


Nov 16 '05 #7
thanks for replying yesterday Nicholas,

after further debugging, ive discovered that the change is actually taking place in the dataset but the rowstate remains as Unchanged!!!! so when I write back to the database no changes found and hence none are commited.... now i'm even more confused, i'm not accepting changes anywhere before I try and update.... oh well more debugging!!!!

"Paul Slavin" wrote:
I have a textbox bound to a dataview, when I update the text in the textbox no changes take place in the underlying dataset. Why is this??

any answers appreciated, as to due to the underlying structure of the datasets, i.e lots of child tables etc, I cannot use bindingcontext

Nov 16 '05 #8
thanks for replying yesterday Nicholas,

after further debugging, ive discovered that the change is actually taking place in the dataset but the rowstate remains as Unchanged!!!! so when I write back to the database no changes found and hence none are commited.... now i'm even more confused, i'm not accepting changes anywhere before I try and update.... oh well more debugging!!!!

"Paul Slavin" wrote:
I have a textbox bound to a dataview, when I update the text in the textbox no changes take place in the underlying dataset. Why is this??

any answers appreciated, as to due to the underlying structure of the datasets, i.e lots of child tables etc, I cannot use bindingcontext

Nov 16 '05 #9
thanks for replying yesterday Nicholas,

after further debugging, ive discovered that the change is actually taking place in the dataset but the rowstate remains as Unchanged!!!! so when I write back to the database no changes found and hence none are commited.... now i'm even more confused, i'm not accepting changes anywhere before I try and update.... oh well more debugging!!!!
"Paul Slavin" wrote:
In order for the updates to be written from the dataset to the database, i have to hit a save button on the form which ensures that any changed controls have lost focus!!
"Nicholas Paldino [.NET/C# MVP]" wrote:
Paul,

When checking the value in the textbox, have you left the focus of the
textbox? The value will not be written to the dataset until the focus is
lost (more specifically, when validation is complete, which usually happens
when focus is lost).
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Paul Slavin" <Pa********@discussions.microsoft.com> wrote in message
news:1C**********************************@microsof t.com...
thanks for your reply... heres a bit more detail

I'm binding to a dataview:

this.rgiDataView = new DataView();
this.rgiDataView.Table = this.ds.Tables["ATPBlockOrOL"];
this.rgiNormTxtBox.DataBindings.Add( "text", rgiDataView,

"RailGapIndicatorId" );

and I change the view in the textbox based on the currently selected item

in a combobox on the same form:

this.rgiDataView.RowFilter = "BlockOrOLId = '" +

this.blockIdComboBox.SelectedValue + "'";

when I change the selection in the combobox, the text in the text box

changes correctly, but when I change text in the textbox the changes aren't
reflected in the dataset. Am I doing something fundamentaly wrong?

If I do exactly the same thing but binding to a datagrid rather than the

textbox it updates the dataset correctly


"Nicholas Paldino [.NET/C# MVP]" wrote:

> Paul,
>
> If you are not using binding context, then how are you binding to

the
> data set? The DataBindings collection and the BindingContext classes

are
> tied together, and you can't really have one without the other.
>
> What exactly are you doing in order to create a data binding?
>
>
> --
> - Nicholas Paldino [.NET/C# MVP]
> - mv*@spam.guard.caspershouse.com
>
> "Paul Slavin" <Pa********@discussions.microsoft.com> wrote in message
> news:B9**********************************@microsof t.com...
> > I have a textbox bound to a dataview, when I update the text in the
> textbox no changes take place in the underlying dataset. Why is this??
> >
> > any answers appreciated, as to due to the underlying structure of the
> datasets, i.e lots of child tables etc, I cannot use bindingcontext
> >
>
>
>


Nov 16 '05 #10
thanks for replying yesterday Nicholas,

after further debugging, ive discovered that the change is actually taking place in the dataset but the rowstate remains as Unchanged!!!! so when I write back to the database no changes found and hence none are commited.... now i'm even more confused, i'm not accepting changes anywhere before I try and update.... oh well more debugging!!!!
"Paul Slavin" wrote:
In order for the updates to be written from the dataset to the database, i have to hit a save button on the form which ensures that any changed controls have lost focus!!
"Nicholas Paldino [.NET/C# MVP]" wrote:
Paul,

When checking the value in the textbox, have you left the focus of the
textbox? The value will not be written to the dataset until the focus is
lost (more specifically, when validation is complete, which usually happens
when focus is lost).
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Paul Slavin" <Pa********@discussions.microsoft.com> wrote in message
news:1C**********************************@microsof t.com...
thanks for your reply... heres a bit more detail

I'm binding to a dataview:

this.rgiDataView = new DataView();
this.rgiDataView.Table = this.ds.Tables["ATPBlockOrOL"];
this.rgiNormTxtBox.DataBindings.Add( "text", rgiDataView,

"RailGapIndicatorId" );

and I change the view in the textbox based on the currently selected item

in a combobox on the same form:

this.rgiDataView.RowFilter = "BlockOrOLId = '" +

this.blockIdComboBox.SelectedValue + "'";

when I change the selection in the combobox, the text in the text box

changes correctly, but when I change text in the textbox the changes aren't
reflected in the dataset. Am I doing something fundamentaly wrong?

If I do exactly the same thing but binding to a datagrid rather than the

textbox it updates the dataset correctly


"Nicholas Paldino [.NET/C# MVP]" wrote:

> Paul,
>
> If you are not using binding context, then how are you binding to

the
> data set? The DataBindings collection and the BindingContext classes

are
> tied together, and you can't really have one without the other.
>
> What exactly are you doing in order to create a data binding?
>
>
> --
> - Nicholas Paldino [.NET/C# MVP]
> - mv*@spam.guard.caspershouse.com
>
> "Paul Slavin" <Pa********@discussions.microsoft.com> wrote in message
> news:B9**********************************@microsof t.com...
> > I have a textbox bound to a dataview, when I update the text in the
> textbox no changes take place in the underlying dataset. Why is this??
> >
> > any answers appreciated, as to due to the underlying structure of the
> datasets, i.e lots of child tables etc, I cannot use bindingcontext
> >
>
>
>


Nov 16 '05 #11
thanks for replying yesterday Nicholas,

after further debugging, ive discovered that the change is actually taking place in the dataset but the rowstate remains as Unchanged!!!! so when I write back to the database no changes found and hence none are commited.... now i'm even more confused, i'm not accepting changes anywhere before I try and update.... oh well more debugging!!!!

"Paul Slavin" wrote:
I have a textbox bound to a dataview, when I update the text in the textbox no changes take place in the underlying dataset. Why is this??

any answers appreciated, as to due to the underlying structure of the datasets, i.e lots of child tables etc, I cannot use bindingcontext

Nov 16 '05 #12
errr....sorry about the multiple posts msdn was playing up earlier and telling me my post hadn't been receieved!!!!...oh well, in case your interested, i've fixed my problem, the value was changing in the dataset but the rowstate wasn't because I was not explicitly calling endedit on the updated row! that will teach me to try and actually get some work done after lunch time when my brain has shut down!!!

"Paul Slavin" wrote:
thanks for replying yesterday Nicholas,

after further debugging, ive discovered that the change is actually taking place in the dataset but the rowstate remains as Unchanged!!!! so when I write back to the database no changes found and hence none are commited.... now i'm even more confused, i'm not accepting changes anywhere before I try and update.... oh well more debugging!!!!
"Paul Slavin" wrote:
In order for the updates to be written from the dataset to the database, i have to hit a save button on the form which ensures that any changed controls have lost focus!!
"Nicholas Paldino [.NET/C# MVP]" wrote:
Paul,

When checking the value in the textbox, have you left the focus of the
textbox? The value will not be written to the dataset until the focus is
lost (more specifically, when validation is complete, which usually happens
when focus is lost).
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Paul Slavin" <Pa********@discussions.microsoft.com> wrote in message
news:1C**********************************@microsof t.com...
> thanks for your reply... heres a bit more detail
>
> I'm binding to a dataview:
>
> this.rgiDataView = new DataView();
> this.rgiDataView.Table = this.ds.Tables["ATPBlockOrOL"];
> this.rgiNormTxtBox.DataBindings.Add( "text", rgiDataView,
"RailGapIndicatorId" );
>
> and I change the view in the textbox based on the currently selected item
in a combobox on the same form:
>
> this.rgiDataView.RowFilter = "BlockOrOLId = '" +
this.blockIdComboBox.SelectedValue + "'";
>
> when I change the selection in the combobox, the text in the text box
changes correctly, but when I change text in the textbox the changes aren't
reflected in the dataset. Am I doing something fundamentaly wrong?
>
> If I do exactly the same thing but binding to a datagrid rather than the
textbox it updates the dataset correctly
>
>
> "Nicholas Paldino [.NET/C# MVP]" wrote:
>
> > Paul,
> >
> > If you are not using binding context, then how are you binding to
the
> > data set? The DataBindings collection and the BindingContext classes
are
> > tied together, and you can't really have one without the other.
> >
> > What exactly are you doing in order to create a data binding?
> >
> >
> > --
> > - Nicholas Paldino [.NET/C# MVP]
> > - mv*@spam.guard.caspershouse.com
> >
> > "Paul Slavin" <Pa********@discussions.microsoft.com> wrote in message
> > news:B9**********************************@microsof t.com...
> > > I have a textbox bound to a dataview, when I update the text in the
> > textbox no changes take place in the underlying dataset. Why is this??
> > >
> > > any answers appreciated, as to due to the underlying structure of the
> > datasets, i.e lots of child tables etc, I cannot use bindingcontext
> > >
> >
> >
> >

Nov 16 '05 #13
errr....sorry about the multiple posts msdn was playing up earlier and telling me my post hadn't been receieved!!!!...oh well, in case your interested, i've fixed my problem, the value was changing in the dataset but the rowstate wasn't because I was not explicitly calling endedit on the updated row! that will teach me to try and actually get some work done after lunch time when my brain has shut down!!!

"Paul Slavin" wrote:
thanks for replying yesterday Nicholas,

after further debugging, ive discovered that the change is actually taking place in the dataset but the rowstate remains as Unchanged!!!! so when I write back to the database no changes found and hence none are commited.... now i'm even more confused, i'm not accepting changes anywhere before I try and update.... oh well more debugging!!!!
"Paul Slavin" wrote:
In order for the updates to be written from the dataset to the database, i have to hit a save button on the form which ensures that any changed controls have lost focus!!
"Nicholas Paldino [.NET/C# MVP]" wrote:
Paul,

When checking the value in the textbox, have you left the focus of the
textbox? The value will not be written to the dataset until the focus is
lost (more specifically, when validation is complete, which usually happens
when focus is lost).
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"Paul Slavin" <Pa********@discussions.microsoft.com> wrote in message
news:1C**********************************@microsof t.com...
> thanks for your reply... heres a bit more detail
>
> I'm binding to a dataview:
>
> this.rgiDataView = new DataView();
> this.rgiDataView.Table = this.ds.Tables["ATPBlockOrOL"];
> this.rgiNormTxtBox.DataBindings.Add( "text", rgiDataView,
"RailGapIndicatorId" );
>
> and I change the view in the textbox based on the currently selected item
in a combobox on the same form:
>
> this.rgiDataView.RowFilter = "BlockOrOLId = '" +
this.blockIdComboBox.SelectedValue + "'";
>
> when I change the selection in the combobox, the text in the text box
changes correctly, but when I change text in the textbox the changes aren't
reflected in the dataset. Am I doing something fundamentaly wrong?
>
> If I do exactly the same thing but binding to a datagrid rather than the
textbox it updates the dataset correctly
>
>
> "Nicholas Paldino [.NET/C# MVP]" wrote:
>
> > Paul,
> >
> > If you are not using binding context, then how are you binding to
the
> > data set? The DataBindings collection and the BindingContext classes
are
> > tied together, and you can't really have one without the other.
> >
> > What exactly are you doing in order to create a data binding?
> >
> >
> > --
> > - Nicholas Paldino [.NET/C# MVP]
> > - mv*@spam.guard.caspershouse.com
> >
> > "Paul Slavin" <Pa********@discussions.microsoft.com> wrote in message
> > news:B9**********************************@microsof t.com...
> > > I have a textbox bound to a dataview, when I update the text in the
> > textbox no changes take place in the underlying dataset. Why is this??
> > >
> > > any answers appreciated, as to due to the underlying structure of the
> > datasets, i.e lots of child tables etc, I cannot use bindingcontext
> > >
> >
> >
> >

Nov 16 '05 #14

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

Similar topics

1
by: Ben | last post by:
Dim dv As DataView = New DataView (DataSet11.Tables("InventoryTable")) dv.RowFilter = "ItemAuthor LIKE '" & ItemAuthor.Text & "%'" dv.RowStateFilter = DataViewRowState.ModifiedCurrent dv.Sort...
0
by: RPI_alum | last post by:
I've been experiencing some frustrating behavior that I believe may be a MS bug in the Framework. Has anyone else experienced this, know a better way to resolve it, or if it is an actual MS bug ...
0
by: Paul Slavin | last post by:
I have a textbox bound to a dataview, when I update the text in the textbox no changes take place in the underlying dataset. Why is this??
4
by: Steven Smith | last post by:
Hi guy's whats the syntax for binding the text property of a textbox to a particular field in a dataview programatically ? here's the scenario my form has two main sections the first is a...
5
by: Marina | last post by:
Hi, Let's say I bind the same column to multiple properties of one control (or even to the same property of several controls). If a user changes the value of the property in one control - I...
8
by: Richard L Rosenheim | last post by:
I have a dataset containing a parent table related to a child table. The child table contains an ID field (which is configured as autonumber in the datatable), the ID of the parent, plus some...
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...
2
by: Rich | last post by:
Hello, Following an example at http://www.vb-tips.com/dbpages.aspx?IA=DG (by Cor Lightert and Ken Tucker) on binding a dataRelation to a Datagridview for sqlClient, I was able to view rows...
0
by: webmaster | last post by:
Pardon my being a total C# noob. I'm trying to take apart the dotNet Time Tracker dotNet C# starterkit sample application and replicate a part of the code. At a high level, I have a very...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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
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.