473,654 Members | 3,108 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Question about Datasets and ASP.NET

I'm in the process of learning more about building my ASP.NET website to use
my SQL datastore and am a bit confused about how ADO.NET works with ASP.NET.
This Microsoft article implies that using ADO.NET with ASP.NET applications
is the way of the past because newer controls allow you to do all your data
binding declaratively.
http://msdn2.microsoft.com/en-us/lib...59(d=ide).aspx

However, I haven't been able to get my application to work just using these
controls. There is a lot of complex dataprocessing that needs to be done
with code. For example, once a user completes filling out a resume form I
need to create a new item in the resume table, using the new resumeid I then
need to add rows to multiple tables (lets just say these resume forms are
pretty complex, the questions are created dynamically by backend users and
each form is related to positions they're applying for, the dynamic question
table, etc). So anyways, to cut a long story short, I'm thinking using
ADO.NET Datasets and Datatables is the way to go. I've done pretty well
using these features with my backend application (a Windows project using
Windows forms - not ASP.NET), but for the ASP.NET website user end I'm
missing the Data Sources window and the easy drag-drop capabilities of
creating and managing Datasets (including the Dataset designer). Is
Microsoft trying to discourage me from using Datasets with ASP.NET? What
should I be using to code the database queries? SQLdatasource is nice but
I'm finding it hard to use programmaticall y. It works nice to bind to
controls but that seems to be the only way it is usable.

Thanks for any advice.
Ryan
Jun 23 '06 #1
7 1277
PJ6
This is probably a good example of where you want to compile your business
layer in a separate dll, and have that support both the thin and thick
clients. Ideally your UI layers shouldn't care at all about the details of
data access - that means they won't see data sets.

Also, you may want to think about moving away from data binding - raw SQL,
even if it's automatically generated for you, does not belong in compiled
code. Any data access details that you do have in code, such as column name
mapping to particualr object fields, should be kept non-declarative (i.e.
attributes).

Paul

"Ryan" <Ty****@newsgro ups.nospam> wrote in message
news:%2******** ********@TK2MSF TNGP05.phx.gbl. ..
I'm in the process of learning more about building my ASP.NET website to
use my SQL datastore and am a bit confused about how ADO.NET works with
ASP.NET. This Microsoft article implies that using ADO.NET with ASP.NET
applications is the way of the past because newer controls allow you to do
all your data binding declaratively.
http://msdn2.microsoft.com/en-us/lib...59(d=ide).aspx

However, I haven't been able to get my application to work just using
these controls. There is a lot of complex dataprocessing that needs to be
done with code. For example, once a user completes filling out a resume
form I need to create a new item in the resume table, using the new
resumeid I then need to add rows to multiple tables (lets just say these
resume forms are pretty complex, the questions are created dynamically by
backend users and each form is related to positions they're applying for,
the dynamic question table, etc). So anyways, to cut a long story short,
I'm thinking using ADO.NET Datasets and Datatables is the way to go. I've
done pretty well using these features with my backend application (a
Windows project using Windows forms - not ASP.NET), but for the ASP.NET
website user end I'm missing the Data Sources window and the easy
drag-drop capabilities of creating and managing Datasets (including the
Dataset designer). Is Microsoft trying to discourage me from using
Datasets with ASP.NET? What should I be using to code the database
queries? SQLdatasource is nice but I'm finding it hard to use
programmaticall y. It works nice to bind to controls but that seems to be
the only way it is usable.

Thanks for any advice.
Ryan

Jun 23 '06 #2
So I should do all my processing using SQL functions, etc stored on the SQL
server? Can you elaborate on what you mean by attributes (private member
variables of the form?)? Move away from data binding? Why did Microsoft
implement all these new databinding features if I'm not suppose to use them?
:)

Thanks,
Ryan

"PJ6" <no***@nowhere. net> wrote in message
news:eB******** ******@TK2MSFTN GP03.phx.gbl...
This is probably a good example of where you want to compile your business
layer in a separate dll, and have that support both the thin and thick
clients. Ideally your UI layers shouldn't care at all about the details of
data access - that means they won't see data sets.

Also, you may want to think about moving away from data binding - raw SQL,
even if it's automatically generated for you, does not belong in compiled
code. Any data access details that you do have in code, such as column
name mapping to particualr object fields, should be kept non-declarative
(i.e. attributes).

Paul

"Ryan" <Ty****@newsgro ups.nospam> wrote in message
news:%2******** ********@TK2MSF TNGP05.phx.gbl. ..
I'm in the process of learning more about building my ASP.NET website to
use my SQL datastore and am a bit confused about how ADO.NET works with
ASP.NET. This Microsoft article implies that using ADO.NET with ASP.NET
applications is the way of the past because newer controls allow you to
do all your data binding declaratively.
http://msdn2.microsoft.com/en-us/lib...59(d=ide).aspx

However, I haven't been able to get my application to work just using
these controls. There is a lot of complex dataprocessing that needs to
be done with code. For example, once a user completes filling out a
resume form I need to create a new item in the resume table, using the
new resumeid I then need to add rows to multiple tables (lets just say
these resume forms are pretty complex, the questions are created
dynamically by backend users and each form is related to positions
they're applying for, the dynamic question table, etc). So anyways, to
cut a long story short, I'm thinking using ADO.NET Datasets and
Datatables is the way to go. I've done pretty well using these features
with my backend application (a Windows project using Windows forms - not
ASP.NET), but for the ASP.NET website user end I'm missing the Data
Sources window and the easy drag-drop capabilities of creating and
managing Datasets (including the Dataset designer). Is Microsoft trying
to discourage me from using Datasets with ASP.NET? What should I be
using to code the database queries? SQLdatasource is nice but I'm
finding it hard to use programmaticall y. It works nice to bind to
controls but that seems to be the only way it is usable.

Thanks for any advice.
Ryan


Jun 23 '06 #3
PJ6
- So I should do all my processing using SQL functions, etc stored on the
SQL server?

"All processing"? I don't know what you mean by that. But if you mean all
data set manipulation and retrieval, such as selecting from one or more
tables and picking out the rows and columns you want for a particular view
of data, all this information belongs in stored procedures.

- Can you elaborate on what you mean by attributes (private member variables
of the form?)?

A good business layer design pattern is to use attributes to store data
mapping information. So if I want to generate a collection of a particular
object of type "Car" from a data table...

Public Class Car

<MapToColumn("C olor")> _
Protected _Color as String

Public Readonly Property Color as String
Get
Return _Color
End Get
End Property

End Class

it's easy to generalize populating the fields from a particular result set
by

1. Creating a new object (in this case, Car) for each row
2. Cycling through each data column in the result set, and matching them up
with and setting the contents of each attributed field

Doing it this way can completely eliminate the need to have code that
specifically mentions each field to populate it. You also (should you ever
have the need) now have the ability to reliably collect data mapping
information in your entire application when it comes time to change the
database.

- Move away from data binding? Why did Microsoft implement all these new
databinding features if I'm not suppose to use them?

Some features or products Microsoft gives developers to use (such as Access)
may be designed for the lowest common denominator of programmer, someone who
is just getting into development and needs an "easy" way into it. Easy is
fine, but it has been my experience that these entry points do not foster
good practice or proper architecture - or proper learning, for that matter.
As an instructor, I've often had to back people up that thought they knew
data access and retrain them, because data binding is all they knew.

Paul

"Ryan" <Ty****@newsgro ups.nospam> wrote in message
news:%2******** **********@TK2M SFTNGP02.phx.gb l...
So I should do all my processing using SQL functions, etc stored on the
SQL server? Can you elaborate on what you mean by attributes (private
member variables of the form?)? Move away from data binding? Why did
Microsoft implement all these new databinding features if I'm not suppose
to use them? :)

Thanks,
Ryan

"PJ6" <no***@nowhere. net> wrote in message
news:eB******** ******@TK2MSFTN GP03.phx.gbl...
This is probably a good example of where you want to compile your
business layer in a separate dll, and have that support both the thin and
thick clients. Ideally your UI layers shouldn't care at all about the
details of data access - that means they won't see data sets.

Also, you may want to think about moving away from data binding - raw
SQL, even if it's automatically generated for you, does not belong in
compiled code. Any data access details that you do have in code, such as
column name mapping to particualr object fields, should be kept
non-declarative (i.e. attributes).

Paul

"Ryan" <Ty****@newsgro ups.nospam> wrote in message
news:%2******** ********@TK2MSF TNGP05.phx.gbl. ..
I'm in the process of learning more about building my ASP.NET website to
use my SQL datastore and am a bit confused about how ADO.NET works with
ASP.NET. This Microsoft article implies that using ADO.NET with ASP.NET
applications is the way of the past because newer controls allow you to
do all your data binding declaratively.
http://msdn2.microsoft.com/en-us/lib...59(d=ide).aspx

However, I haven't been able to get my application to work just using
these controls. There is a lot of complex dataprocessing that needs to
be done with code. For example, once a user completes filling out a
resume form I need to create a new item in the resume table, using the
new resumeid I then need to add rows to multiple tables (lets just say
these resume forms are pretty complex, the questions are created
dynamically by backend users and each form is related to positions
they're applying for, the dynamic question table, etc). So anyways, to
cut a long story short, I'm thinking using ADO.NET Datasets and
Datatables is the way to go. I've done pretty well using these features
with my backend application (a Windows project using Windows forms - not
ASP.NET), but for the ASP.NET website user end I'm missing the Data
Sources window and the easy drag-drop capabilities of creating and
managing Datasets (including the Dataset designer). Is Microsoft trying
to discourage me from using Datasets with ASP.NET? What should I be
using to code the database queries? SQLdatasource is nice but I'm
finding it hard to use programmaticall y. It works nice to bind to
controls but that seems to be the only way it is usable.

Thanks for any advice.
Ryan



Jun 23 '06 #4
Paul,

Thanks for the very informative post. I'm beginning to see the light I
think ;)
"All processing"? I don't know what you mean by that. But if you mean all
data set manipulation and retrieval, such as selecting from one or more
tables and picking out the rows and columns you want for a particular view
of data, all this information belongs in stored procedures.
Yes by "all processing" I was referring to all my data set manipulation and
retrieval. I'd be glad to move all this to stored procedures on the SQL
server and am definitely more comfortable with that than hardcoding
everything in VB. Thanks for the recommendation.
A good business layer design pattern is to use attributes to store data
mapping information. So if I want to generate a collection of a particular
object of type "Car" from a data table...
I'm new to this using attributes for data mapping information. But I'm not
new to OOP with classes so I think I can catch on pretty quick. If you have
any "recommende d reading" I'd be glad to hear about any of it, otherwise
I'll be browsing the help and MSDN online files.

Thanks again,
Ryan
"PJ6" <no***@nowhere. net> wrote in message
news:et******** ********@TK2MSF TNGP03.phx.gbl. ..- So I should do all my processing using SQL functions, etc stored on the
SQL server?

"All processing"? I don't know what you mean by that. But if you mean all
data set manipulation and retrieval, such as selecting from one or more
tables and picking out the rows and columns you want for a particular view
of data, all this information belongs in stored procedures.

- Can you elaborate on what you mean by attributes (private member
variables of the form?)?

A good business layer design pattern is to use attributes to store data
mapping information. So if I want to generate a collection of a particular
object of type "Car" from a data table...

Public Class Car

<MapToColumn("C olor")> _
Protected _Color as String

Public Readonly Property Color as String
Get
Return _Color
End Get
End Property

End Class

it's easy to generalize populating the fields from a particular result set
by

1. Creating a new object (in this case, Car) for each row
2. Cycling through each data column in the result set, and matching them
up with and setting the contents of each attributed field

Doing it this way can completely eliminate the need to have code that
specifically mentions each field to populate it. You also (should you ever
have the need) now have the ability to reliably collect data mapping
information in your entire application when it comes time to change the
database.

- Move away from data binding? Why did Microsoft implement all these new
databinding features if I'm not suppose to use them?

Some features or products Microsoft gives developers to use (such as
Access) may be designed for the lowest common denominator of programmer,
someone who is just getting into development and needs an "easy" way into
it. Easy is fine, but it has been my experience that these entry points do
not foster good practice or proper architecture - or proper learning, for
that matter. As an instructor, I've often had to back people up that
thought they knew data access and retrain them, because data binding is
all they knew.

Paul

"Ryan" <Ty****@newsgro ups.nospam> wrote in message
news:%2******** **********@TK2M SFTNGP02.phx.gb l...
So I should do all my processing using SQL functions, etc stored on the
SQL server? Can you elaborate on what you mean by attributes (private
member variables of the form?)? Move away from data binding? Why did
Microsoft implement all these new databinding features if I'm not suppose
to use them? :)

Thanks,
Ryan

"PJ6" <no***@nowhere. net> wrote in message
news:eB******** ******@TK2MSFTN GP03.phx.gbl...
This is probably a good example of where you want to compile your
business layer in a separate dll, and have that support both the thin
and thick clients. Ideally your UI layers shouldn't care at all about
the details of data access - that means they won't see data sets.

Also, you may want to think about moving away from data binding - raw
SQL, even if it's automatically generated for you, does not belong in
compiled code. Any data access details that you do have in code, such as
column name mapping to particualr object fields, should be kept
non-declarative (i.e. attributes).

Paul

"Ryan" <Ty****@newsgro ups.nospam> wrote in message
news:%2******** ********@TK2MSF TNGP05.phx.gbl. ..
I'm in the process of learning more about building my ASP.NET website
to use my SQL datastore and am a bit confused about how ADO.NET works
with ASP.NET. This Microsoft article implies that using ADO.NET with
ASP.NET applications is the way of the past because newer controls
allow you to do all your data binding declaratively.
http://msdn2.microsoft.com/en-us/lib...59(d=ide).aspx

However, I haven't been able to get my application to work just using
these controls. There is a lot of complex dataprocessing that needs to
be done with code. For example, once a user completes filling out a
resume form I need to create a new item in the resume table, using the
new resumeid I then need to add rows to multiple tables (lets just say
these resume forms are pretty complex, the questions are created
dynamically by backend users and each form is related to positions
they're applying for, the dynamic question table, etc). So anyways, to
cut a long story short, I'm thinking using ADO.NET Datasets and
Datatables is the way to go. I've done pretty well using these
features with my backend application (a Windows project using Windows
forms - not ASP.NET), but for the ASP.NET website user end I'm missing
the Data Sources window and the easy drag-drop capabilities of creating
and managing Datasets (including the Dataset designer). Is Microsoft
trying to discourage me from using Datasets with ASP.NET? What should
I be using to code the database queries? SQLdatasource is nice but I'm
finding it hard to use programmaticall y. It works nice to bind to
controls but that seems to be the only way it is usable.

Thanks for any advice.
Ryan



Jun 23 '06 #5
Paul where do you teach? I think I need to come take your class. ;) I'm
just not finding any information on using attributes to map data.

Ryan

"Ryan" <Ty****@newsgro ups.nospam> wrote in message
news:OI******** ******@TK2MSFTN GP04.phx.gbl...
Paul,

Thanks for the very informative post. I'm beginning to see the light I
think ;)
"All processing"? I don't know what you mean by that. But if you mean all
data set manipulation and retrieval, such as selecting from one or more
tables and picking out the rows and columns you want for a particular
view of data, all this information belongs in stored procedures.


Yes by "all processing" I was referring to all my data set manipulation
and retrieval. I'd be glad to move all this to stored procedures on the
SQL server and am definitely more comfortable with that than hardcoding
everything in VB. Thanks for the recommendation.
A good business layer design pattern is to use attributes to store data
mapping information. So if I want to generate a collection of a
particular object of type "Car" from a data table...


I'm new to this using attributes for data mapping information. But I'm
not new to OOP with classes so I think I can catch on pretty quick. If
you have any "recommende d reading" I'd be glad to hear about any of it,
otherwise I'll be browsing the help and MSDN online files.

Thanks again,
Ryan
"PJ6" <no***@nowhere. net> wrote in message
news:et******** ********@TK2MSF TNGP03.phx.gbl. ..
- So I should do all my processing using SQL functions, etc stored on the
SQL server?

"All processing"? I don't know what you mean by that. But if you mean all
data set manipulation and retrieval, such as selecting from one or more
tables and picking out the rows and columns you want for a particular
view of data, all this information belongs in stored procedures.

- Can you elaborate on what you mean by attributes (private member
variables of the form?)?

A good business layer design pattern is to use attributes to store data
mapping information. So if I want to generate a collection of a
particular object of type "Car" from a data table...

Public Class Car

<MapToColumn("C olor")> _
Protected _Color as String

Public Readonly Property Color as String
Get
Return _Color
End Get
End Property

End Class

it's easy to generalize populating the fields from a particular result
set by

1. Creating a new object (in this case, Car) for each row
2. Cycling through each data column in the result set, and matching them
up with and setting the contents of each attributed field

Doing it this way can completely eliminate the need to have code that
specifically mentions each field to populate it. You also (should you
ever have the need) now have the ability to reliably collect data mapping
information in your entire application when it comes time to change the
database.

- Move away from data binding? Why did Microsoft implement all these new
databinding features if I'm not suppose to use them?

Some features or products Microsoft gives developers to use (such as
Access) may be designed for the lowest common denominator of programmer,
someone who is just getting into development and needs an "easy" way into
it. Easy is fine, but it has been my experience that these entry points
do not foster good practice or proper architecture - or proper learning,
for that matter. As an instructor, I've often had to back people up that
thought they knew data access and retrain them, because data binding is
all they knew.

Paul

"Ryan" <Ty****@newsgro ups.nospam> wrote in message
news:%2******** **********@TK2M SFTNGP02.phx.gb l...
So I should do all my processing using SQL functions, etc stored on the
SQL server? Can you elaborate on what you mean by attributes (private
member variables of the form?)? Move away from data binding? Why did
Microsoft implement all these new databinding features if I'm not
suppose to use them? :)

Thanks,
Ryan

"PJ6" <no***@nowhere. net> wrote in message
news:eB******** ******@TK2MSFTN GP03.phx.gbl...
This is probably a good example of where you want to compile your
business layer in a separate dll, and have that support both the thin
and thick clients. Ideally your UI layers shouldn't care at all about
the details of data access - that means they won't see data sets.

Also, you may want to think about moving away from data binding - raw
SQL, even if it's automatically generated for you, does not belong in
compiled code. Any data access details that you do have in code, such
as column name mapping to particualr object fields, should be kept
non-declarative (i.e. attributes).

Paul

"Ryan" <Ty****@newsgro ups.nospam> wrote in message
news:%2******** ********@TK2MSF TNGP05.phx.gbl. ..
> I'm in the process of learning more about building my ASP.NET website
> to use my SQL datastore and am a bit confused about how ADO.NET works
> with ASP.NET. This Microsoft article implies that using ADO.NET with
> ASP.NET applications is the way of the past because newer controls
> allow you to do all your data binding declaratively.
> http://msdn2.microsoft.com/en-us/lib...59(d=ide).aspx
>
> However, I haven't been able to get my application to work just using
> these controls. There is a lot of complex dataprocessing that needs
> to be done with code. For example, once a user completes filling out
> a resume form I need to create a new item in the resume table, using
> the new resumeid I then need to add rows to multiple tables (lets just
> say these resume forms are pretty complex, the questions are created
> dynamically by backend users and each form is related to positions
> they're applying for, the dynamic question table, etc). So anyways,
> to cut a long story short, I'm thinking using ADO.NET Datasets and
> Datatables is the way to go. I've done pretty well using these
> features with my backend application (a Windows project using Windows
> forms - not ASP.NET), but for the ASP.NET website user end I'm missing
> the Data Sources window and the easy drag-drop capabilities of
> creating and managing Datasets (including the Dataset designer). Is
> Microsoft trying to discourage me from using Datasets with ASP.NET?
> What should I be using to code the database queries? SQLdatasource is
> nice but I'm finding it hard to use programmaticall y. It works nice
> to bind to controls but that seems to be the only way it is usable.
>
> Thanks for any advice.
> Ryan
>



Jun 23 '06 #6
PJ6
> I'm new to this using attributes for data mapping information. But I'm
not new to OOP with classes so I think I can catch on pretty quick. If
you have any "recommende d reading" I'd be glad to hear about any of it,
otherwise I'll be browsing the help and MSDN online files.


I recommend "Data Access Patterns" by Clifton Nock.

Paul
Jun 23 '06 #7
PJ6
I teach in Boston.

Among a surprising number of other things, data mapping with attribution is
something I've used for years to great benefit, but I never wrote up
anything on it because I sort of thought it was smack-yourself-in-the-head
obvious to anyone who's had to manage database changes for a large enough
application... but here we are in 2006 and MS is still pushing a bad design
pattern. I've been asked before to write my own patterns and practices
paper, and I'm actually in the middle of doing that now. I humbly accept
that little if anything I talk about I will have thought of first, but when
my paper is complete and it's had some peer review I'll post a link to it
here in a few months.

Paul

"Ryan" <Ty****@newsgro ups.nospam> wrote in message
news:ev******** ******@TK2MSFTN GP02.phx.gbl...
Paul where do you teach? I think I need to come take your class. ;) I'm
just not finding any information on using attributes to map data.

Ryan

Jun 23 '06 #8

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

Similar topics

4
1405
by: Griff | last post by:
The MSDN article: Developing high-performance ASP.NET applications recommends using the SqlDataReader above using DataSets. One of the advantage of using DataSets over DataReaders is (as I understand it) that DataSets are preferred for n-tier architecture because they can be disconnected from the database.
6
1429
by: Nikolay Petrov | last post by:
I need to transfer different types of data from my tcp client to my tcp server - string, bynary, datasets. Ho to know what exactly data I receive?
4
1508
by: Brent Borovan | last post by:
Posted on behalf of a team member: Our organization is in the enviable position of starting a new web-based product with a clean slate working with the latest ASP .NET tools (VS 2005 Pro using ASP 2.0). We have been researching the best practices for creating an N-tier application and have found several varying viewpoints as to how proceed, which leaves us wondering which specific model is easiest to build and maintain with the latest and...
2
1336
by: Dave | last post by:
We've created a robust client server application over the past 3 years on the .NET framework version 1.1 using c#. We layed all of our marbles in creating strongly typed datasets and for the most part we are extremely happy we did that. However, there's an incredibly huge bug (in my opinion) that has cost us probably on the order of at least 40 hours of development time in tracking down this bug and doing several small scale re-writes. ...
4
1439
by: S Chapman | last post by:
Is there any tool that generates Typed DataTables rather than Typed Datasets? The trouble we are having is we have quite a few tables in our database and a single table can be a part of more than one dataset. If we use the XSD.Exe, the datatable definitions are repeated in every dataset they appear in; causing our data definition layer to bloat. Let us say there is a database table called Account which appears in two dataset definitions...
3
1245
by: Dave | last post by:
We've created a robust client server application over the past 3 years on the .NET framework version 1.1 using c#. We layed all of our marbles in creating strongly typed datasets and for the most part we are extremely happy we did that. However, there's an incredibly huge bug (in my opinion) that has cost us probably on the order of at least 40 hours of development time in tracking down this bug and doing several small scale re-writes. ...
1
952
by: CSharpguy | last post by:
I've been reading some articles on 'application architecture' and some have say use Typed DataSets in .NET 05 and some use a datalayer class and a business layer class. Currently I have a class library in 05 were I'm not using typed datasets, I have a business layer class and my datalayer classes. I've been doing some work with typed datasets on a small project but not using my class library. So my question is, what is the best way and the...
3
1211
by: CSharpguy | last post by:
I have a 03 .NET web that does not use Typed DataSets, it uses a Busines Layer/DataLayer classes. Alot of my reading on .NET 05 is using the DataSets for the datalayer/business layer. I have a 05 web app that I used the business/datalayer class architecture and it works. But my question is, what is the recommended way in 05? DataSets or the 'Classes'? Is there a best way or is it pretty much up to the developer on how to code the...
3
1255
by: =?Utf-8?B?SmFu?= | last post by:
I have this problem and I am not able to find clear and good solution. I have 2 tables, Order and OrderItems with relation 1:N. I want to have 1 aspx page for editing, which will contain FormView for Order and GridView for OrderItems. It isn't too important which control I will use, but my question is: How can I save all changes together. I want user to have posibility edit header and details of order together. If user click on Cancel...
0
8376
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
8290
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
8815
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8489
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7307
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
5622
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4294
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1916
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1596
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.