473,657 Members | 2,528 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

convincing a client to go with dotNet instead of Access project

I am trying to convince a client that dotNet is preferable to an Access
project (ADP/ADE).

This client currently has a large, pure Access MDB solution with 30+ users,
which needs to be upgraded.

I believe a dotNet solution is better, but I'm trying to be as convincing as
possible -- and maybe I'm wrong!

I would appreciate any input or references which could help me.

My reasons for going with a dotNet solution are:
- The multi-tier environment is more desirable because it is easier to
deploy updates, such as a centralized web service, or as web forms
- The ADP is less efficient because it requires a continuous connection
to the backend database, whereas ADO.NET is disconnected
- I can use object oriented techniques, such as inheritance
- A dotNet solution requires less bandwidth (some users will be accessing
the database over a VPN pipe)
- Code can be re-used more easily

The ADP promoter cites the following arguments:

- Access has better reporting capabilities
- Access is quicker to develop in
- The ADP is just as efficient as a dotNet solution in terms of data
access
- The front end is already built in Access

Thanks!
Bill
Jul 21 '05 #1
13 2930
I've had this "fight" before and lost. :< Fortunately for the client the
apps life was only supposed to be six to twelve months long. Unfortunately
for the client, we ended up creating a release a week in the last phases of
development. :<<<< Deployment out to regional office was a NIGHTMARE! We
didn't have probs with synchronization cause we used Access for the forms
creation/execution only. We were using Access to access a central SQL
Server. However, like you mentioned, I believe using something VB in my
case (or C# in your case today :>) is the better way to go. BUT, possibly
your biggest hurdle will be the front end is already developed in Access. :<
That is hard to compete against.

Cons to using C#
-new paradigm, language, IDE, manager are always afraid of change
-learning curve for language, APIs, deployment management, etc
-hey Access is better than using java/swing to do it!
-hey if the UI is in Acces why change? that's a tough one you probably
can't argue against, MS afterall isn't going to rewrite MS Office in C# from
C++ over night

Pros to using C#
-huge integration with SQL Server
-MUCH better form design support in VS than in Access (IMHO that is)
-better multi-user architecture in WinForms than in Access
-better control over version control, source control, setup programs
-opportunity to easily document code (UML, documentation from code comments)
-opportunity to extend the "reach" of the application with giving it a web
front end later on, maybe webservices, RSS, etc
-Access really tops out with performance after six concurrent connections
(does your manager know that?)
-better support for code/development help with C# than with Access (ok,
that's a bit of exaggeration, but I'm biased :>)
-with .NET you can use Crystal Reports, which is MUCH superiour to Access
for reports (if that is truely a main concern for management)

Having said all this, you might be fighting a losing battle. Good luck to
you, but you might have better luck with a future project than with this
one. But that's cool, you're setting the framework with management about
the pros/cons of .NET. Also be careful when you compare .NET to Access.
Access is the DB, and also the development and runtime environment. .NET is
the framework, VB.NET and C# are the languages you code in, and VS2k3 is the
development environment (which I'm sure you already know that :>). I see
unfair comparisons with java to .NET, that's like apples and oranges, .NET
to J2EE is the fair comparison, like C# is to java, or WinForms to Swing.

Good luck with this! :>
"bill" <be****@datamti .com> wrote in message
news:Oy******** ******@tk2msftn gp13.phx.gbl...
I am trying to convince a client that dotNet is preferable to an Access
project (ADP/ADE).

This client currently has a large, pure Access MDB solution with 30+
users,
which needs to be upgraded.

I believe a dotNet solution is better, but I'm trying to be as convincing
as
possible -- and maybe I'm wrong!

I would appreciate any input or references which could help me.

My reasons for going with a dotNet solution are:
- The multi-tier environment is more desirable because it is easier to
deploy updates, such as a centralized web service, or as web forms
- The ADP is less efficient because it requires a continuous connection
to the backend database, whereas ADO.NET is disconnected
- I can use object oriented techniques, such as inheritance
- A dotNet solution requires less bandwidth (some users will be
accessing
the database over a VPN pipe)
- Code can be re-used more easily

The ADP promoter cites the following arguments:

- Access has better reporting capabilities
- Access is quicker to develop in
- The ADP is just as efficient as a dotNet solution in terms of data
access
- The front end is already built in Access

Thanks!
Bill

Jul 21 '05 #2
I've had this fight, too, and initially lost but won in the long run. The
Access project works for shorter term projects that can tolerate a certain
amount of sloppiness. Granted, it is hard to give an example of something
that cannot be done in Access but the .NET infrastructure lends itself to a
much more polished, secure, controlled and scalable solution. The .NET
solution lends itself to a well organized, object oriented, solution while
Acess projects often grow into a spegetti type mess.

The problem is that your counterpart is right about how quickly things can
be developed in Access. In the short run you'll get further, faster, with
Access. However, once you get the .NET environment setup it is very quick
and easy to reuse existing logic to create additional pages. You won't end
up having to re-write the .NET project but you are likely to outgrow the
Access solution.

Your counterpart's argument about Access's nice reporting interface is
correct but you should look into SQL Server's reporting services. It really
offers a nice range of options for output and some nice drill-down options
that you won't find in Access. It is always possible to step into this
transition by keeping a "Reports" project that ties into the same database.

Finally, I'd focus on security because that is something I see as a big
difference, depending on how good you are about protecting data in the Access
projects. Often, users are given select permission on entire tables. This
means that they could create a new project and play all sorts of havoc with
your data. The .NET solution is likely to make better use of stored
procedures and a much more sophisticated security infrastructure.

"Flip" wrote:
I've had this "fight" before and lost. :< Fortunately for the client the
apps life was only supposed to be six to twelve months long. Unfortunately
for the client, we ended up creating a release a week in the last phases of
development. :<<<< Deployment out to regional office was a NIGHTMARE! We
didn't have probs with synchronization cause we used Access for the forms
creation/execution only. We were using Access to access a central SQL
Server. However, like you mentioned, I believe using something VB in my
case (or C# in your case today :>) is the better way to go. BUT, possibly
your biggest hurdle will be the front end is already developed in Access. :<
That is hard to compete against.

Cons to using C#
-new paradigm, language, IDE, manager are always afraid of change
-learning curve for language, APIs, deployment management, etc
-hey Access is better than using java/swing to do it!
-hey if the UI is in Acces why change? that's a tough one you probably
can't argue against, MS afterall isn't going to rewrite MS Office in C# from
C++ over night

Pros to using C#
-huge integration with SQL Server
-MUCH better form design support in VS than in Access (IMHO that is)
-better multi-user architecture in WinForms than in Access
-better control over version control, source control, setup programs
-opportunity to easily document code (UML, documentation from code comments)
-opportunity to extend the "reach" of the application with giving it a web
front end later on, maybe webservices, RSS, etc
-Access really tops out with performance after six concurrent connections
(does your manager know that?)
-better support for code/development help with C# than with Access (ok,
that's a bit of exaggeration, but I'm biased :>)
-with .NET you can use Crystal Reports, which is MUCH superiour to Access
for reports (if that is truely a main concern for management)

Having said all this, you might be fighting a losing battle. Good luck to
you, but you might have better luck with a future project than with this
one. But that's cool, you're setting the framework with management about
the pros/cons of .NET. Also be careful when you compare .NET to Access.
Access is the DB, and also the development and runtime environment. .NET is
the framework, VB.NET and C# are the languages you code in, and VS2k3 is the
development environment (which I'm sure you already know that :>). I see
unfair comparisons with java to .NET, that's like apples and oranges, .NET
to J2EE is the fair comparison, like C# is to java, or WinForms to Swing.

Good luck with this! :>
"bill" <be****@datamti .com> wrote in message
news:Oy******** ******@tk2msftn gp13.phx.gbl...
I am trying to convince a client that dotNet is preferable to an Access
project (ADP/ADE).

This client currently has a large, pure Access MDB solution with 30+
users,
which needs to be upgraded.

I believe a dotNet solution is better, but I'm trying to be as convincing
as
possible -- and maybe I'm wrong!

I would appreciate any input or references which could help me.

My reasons for going with a dotNet solution are:
- The multi-tier environment is more desirable because it is easier to
deploy updates, such as a centralized web service, or as web forms
- The ADP is less efficient because it requires a continuous connection
to the backend database, whereas ADO.NET is disconnected
- I can use object oriented techniques, such as inheritance
- A dotNet solution requires less bandwidth (some users will be
accessing
the database over a VPN pipe)
- Code can be re-used more easily

The ADP promoter cites the following arguments:

- Access has better reporting capabilities
- Access is quicker to develop in
- The ADP is just as efficient as a dotNet solution in terms of data
access
- The front end is already built in Access

Thanks!
Bill


Jul 21 '05 #3
Do you have reference for the performance threshold of 6 concurrent
connections that I can point to?
That would be good documentation to have...
Thanks!

"Flip" <[remove_me]ph******@hotmai l.com> wrote in message
news:Oq******** ******@tk2msftn gp13.phx.gbl...
I've had this "fight" before and lost. :< Fortunately for the client the
apps life was only supposed to be six to twelve months long. Unfortunately for the client, we ended up creating a release a week in the last phases of development. :<<<< Deployment out to regional office was a NIGHTMARE! We
didn't have probs with synchronization cause we used Access for the forms
creation/execution only. We were using Access to access a central SQL
Server. However, like you mentioned, I believe using something VB in my
case (or C# in your case today :>) is the better way to go. BUT, possibly
your biggest hurdle will be the front end is already developed in Access. :< That is hard to compete against.

Cons to using C#
-new paradigm, language, IDE, manager are always afraid of change
-learning curve for language, APIs, deployment management, etc
-hey Access is better than using java/swing to do it!
-hey if the UI is in Acces why change? that's a tough one you probably
can't argue against, MS afterall isn't going to rewrite MS Office in C# from C++ over night

Pros to using C#
-huge integration with SQL Server
-MUCH better form design support in VS than in Access (IMHO that is)
-better multi-user architecture in WinForms than in Access
-better control over version control, source control, setup programs
-opportunity to easily document code (UML, documentation from code comments) -opportunity to extend the "reach" of the application with giving it a web
front end later on, maybe webservices, RSS, etc
-Access really tops out with performance after six concurrent connections
(does your manager know that?)
-better support for code/development help with C# than with Access (ok,
that's a bit of exaggeration, but I'm biased :>)
-with .NET you can use Crystal Reports, which is MUCH superiour to Access
for reports (if that is truely a main concern for management)

Having said all this, you might be fighting a losing battle. Good luck to
you, but you might have better luck with a future project than with this
one. But that's cool, you're setting the framework with management about
the pros/cons of .NET. Also be careful when you compare .NET to Access.
Access is the DB, and also the development and runtime environment. .NET is the framework, VB.NET and C# are the languages you code in, and VS2k3 is the development environment (which I'm sure you already know that :>). I see
unfair comparisons with java to .NET, that's like apples and oranges, .NET
to J2EE is the fair comparison, like C# is to java, or WinForms to Swing.

Good luck with this! :>
"bill" <be****@datamti .com> wrote in message
news:Oy******** ******@tk2msftn gp13.phx.gbl...
I am trying to convince a client that dotNet is preferable to an Access
project (ADP/ADE).

This client currently has a large, pure Access MDB solution with 30+
users,
which needs to be upgraded.

I believe a dotNet solution is better, but I'm trying to be as convincing as
possible -- and maybe I'm wrong!

I would appreciate any input or references which could help me.

My reasons for going with a dotNet solution are:
- The multi-tier environment is more desirable because it is easier to deploy updates, such as a centralized web service, or as web forms
- The ADP is less efficient because it requires a continuous connection to the backend database, whereas ADO.NET is disconnected
- I can use object oriented techniques, such as inheritance
- A dotNet solution requires less bandwidth (some users will be
accessing
the database over a VPN pipe)
- Code can be re-used more easily

The ADP promoter cites the following arguments:

- Access has better reporting capabilities
- Access is quicker to develop in
- The ADP is just as efficient as a dotNet solution in terms of data
access
- The front end is already built in Access

Thanks!
Bill


Jul 21 '05 #4
> Do you have reference for the performance threshold of 6 concurrent
connections that I can point to? I tried doing a quick search, but wasn't able to find anything. :<

The last time I had this problem, I quickly whipped up an Access db, and
accessed it using Access forms, and a VB form, and started loading up the
number of concurrent users. And although Access was willing to accept the
other connections (7+), the performance started to decrease, almost
exponentially. Maybe it was the size of the db, or the type of data I had
in there, but it was quickly evident it wasn't going to be work for our
situation.

To help show your boss just how good .NET stuff is, maybe this is a
worthwhile scenario to test out? Create an Access DB, an Access form, a C#
app as well as the same DB in SQL Server. Then have the forms (Access and
C#) bang against each and see out of the four where the performance
bottlenecks are. Try to use threads in the C# apps to truely get the
concurrency thing going, just a suggestion.
That would be good documentation to have...

I know! :< But I'm sorry, I wasn't able to find any. I think that was more
tribal knowledge at that time. Sorry about that, I'm doing java/jdbc dev
during the day now, just getting back into MS dev (C#). The best I could
find was articles talking about a limit of 255 concurrent users. However,
they also talked about the bigger the db, the worse your performance as the
number of concurrent users increased. So that 255 max is still a
theoretical number still.

I would suggest whipping something up to show your boss the .NET
flexibility, ease of development, ability to do proof of concept, as well as
taking owership and R&D initiative. Good luck!
Jul 21 '05 #5
Flip,

Why are you using so definitely C# and set that off against Access and VB.

I thought that the question was Access or Dotnet?

Cor
Jul 21 '05 #6
Bill,

I think that it will be hard to go. However, your winning point can be in my
opinion the VPN connections. With Access on low band wide you probably have
to use Citrix or any other terminal server. (However when it is Belgie than
you have probably at least ADSL and can that be less important)

With dotNet you can think on more webservice applications. Where you do the
database handling over the VPN line using the webservice, while the client
has at his location a rich client application.

Some weeks ago a message like yours was crossposted to the Access newsgroup.
They told that everything can be done with Access. This is probably not
true, however most in house office business problems can probably be solved
with Access, where it is made for, and has a large group of users.

I find it forever hard to give opinions about this. Access has progress and
dotNet has progress. Now my interest is with dotNet. That I cannot compare
with experiences with Access in the past. Therefore, try it as well in an
access newsgroup. It can be very interesting when you crosspost that with
this newsgroup, than we can follow that as well and maybe give comments.

However just an idea

Cor
Jul 21 '05 #7
Having developed in Access, VC++ 6, VB 6 and now starting to develop in VB
8, I have discovered that Access's forms provide far more events to program
to. Some of these events are nearly impossible to duplicate in VB 6. In
fact they don't even have counterparts in the Windows API itself. Depending
on the actual form events being used, you may discover that the Access
application is extremely difficult to port to any other language.

Mike Ober.

"Flip" <[remove_me]ph******@hotmai l.com> wrote in message
news:Oq******** ******@tk2msftn gp13.phx.gbl...
I've had this "fight" before and lost. :< Fortunately for the client the
apps life was only supposed to be six to twelve months long. Unfortunately for the client, we ended up creating a release a week in the last phases of development. :<<<< Deployment out to regional office was a NIGHTMARE! We
didn't have probs with synchronization cause we used Access for the forms
creation/execution only. We were using Access to access a central SQL
Server. However, like you mentioned, I believe using something VB in my
case (or C# in your case today :>) is the better way to go. BUT, possibly
your biggest hurdle will be the front end is already developed in Access. :< That is hard to compete against.

Cons to using C#
-new paradigm, language, IDE, manager are always afraid of change
-learning curve for language, APIs, deployment management, etc
-hey Access is better than using java/swing to do it!
-hey if the UI is in Acces why change? that's a tough one you probably
can't argue against, MS afterall isn't going to rewrite MS Office in C# from C++ over night

Pros to using C#
-huge integration with SQL Server
-MUCH better form design support in VS than in Access (IMHO that is)
-better multi-user architecture in WinForms than in Access
-better control over version control, source control, setup programs
-opportunity to easily document code (UML, documentation from code comments) -opportunity to extend the "reach" of the application with giving it a web
front end later on, maybe webservices, RSS, etc
-Access really tops out with performance after six concurrent connections
(does your manager know that?)
-better support for code/development help with C# than with Access (ok,
that's a bit of exaggeration, but I'm biased :>)
-with .NET you can use Crystal Reports, which is MUCH superiour to Access
for reports (if that is truely a main concern for management)

Having said all this, you might be fighting a losing battle. Good luck to
you, but you might have better luck with a future project than with this
one. But that's cool, you're setting the framework with management about
the pros/cons of .NET. Also be careful when you compare .NET to Access.
Access is the DB, and also the development and runtime environment. .NET is the framework, VB.NET and C# are the languages you code in, and VS2k3 is the development environment (which I'm sure you already know that :>). I see
unfair comparisons with java to .NET, that's like apples and oranges, .NET
to J2EE is the fair comparison, like C# is to java, or WinForms to Swing.

Good luck with this! :>
"bill" <be****@datamti .com> wrote in message
news:Oy******** ******@tk2msftn gp13.phx.gbl...
I am trying to convince a client that dotNet is preferable to an Access
project (ADP/ADE).

This client currently has a large, pure Access MDB solution with 30+
users,
which needs to be upgraded.

I believe a dotNet solution is better, but I'm trying to be as convincing as
possible -- and maybe I'm wrong!

I would appreciate any input or references which could help me.

My reasons for going with a dotNet solution are:
- The multi-tier environment is more desirable because it is easier to deploy updates, such as a centralized web service, or as web forms
- The ADP is less efficient because it requires a continuous connection to the backend database, whereas ADO.NET is disconnected
- I can use object oriented techniques, such as inheritance
- A dotNet solution requires less bandwidth (some users will be
accessing
the database over a VPN pipe)
- Code can be re-used more easily

The ADP promoter cites the following arguments:

- Access has better reporting capabilities
- Access is quicker to develop in
- The ADP is just as efficient as a dotNet solution in terms of data
access
- The front end is already built in Access

Thanks!
Bill



Jul 21 '05 #8
I read somewhere on the MS web-site that the threshold is somewhere between
5 and 10. If most of your data connections are reading only (they can be
read/write connections, but used only for read), you can get decent scaling.
However, if your application is heavy on database writes, performance will
suffer as you go above 5 to 10 concurrent writers. Also, there is a hard
limit of 255 concurrent connections to an Access database.

Mike Ober.

"bill" <be****@datamti .com> wrote in message
news:ON******** ******@TK2MSFTN GP14.phx.gbl...
Do you have reference for the performance threshold of 6 concurrent
connections that I can point to?
That would be good documentation to have...
Thanks!

"Flip" <[remove_me]ph******@hotmai l.com> wrote in message
news:Oq******** ******@tk2msftn gp13.phx.gbl...
I've had this "fight" before and lost. :< Fortunately for the client the
apps life was only supposed to be six to twelve months long. Unfortunately
for the client, we ended up creating a release a week in the last phases

of
development. :<<<< Deployment out to regional office was a NIGHTMARE! We didn't have probs with synchronization cause we used Access for the forms creation/execution only. We were using Access to access a central SQL
Server. However, like you mentioned, I believe using something VB in my
case (or C# in your case today :>) is the better way to go. BUT, possibly your biggest hurdle will be the front end is already developed in Access. :<
That is hard to compete against.

Cons to using C#
-new paradigm, language, IDE, manager are always afraid of change
-learning curve for language, APIs, deployment management, etc
-hey Access is better than using java/swing to do it!
-hey if the UI is in Acces why change? that's a tough one you probably
can't argue against, MS afterall isn't going to rewrite MS Office in C# from
C++ over night

Pros to using C#
-huge integration with SQL Server
-MUCH better form design support in VS than in Access (IMHO that is)
-better multi-user architecture in WinForms than in Access
-better control over version control, source control, setup programs
-opportunity to easily document code (UML, documentation from code

comments)
-opportunity to extend the "reach" of the application with giving it a

web front end later on, maybe webservices, RSS, etc
-Access really tops out with performance after six concurrent connections (does your manager know that?)
-better support for code/development help with C# than with Access (ok,
that's a bit of exaggeration, but I'm biased :>)
-with .NET you can use Crystal Reports, which is MUCH superiour to Access for reports (if that is truely a main concern for management)

Having said all this, you might be fighting a losing battle. Good luck to you, but you might have better luck with a future project than with this
one. But that's cool, you're setting the framework with management about the pros/cons of .NET. Also be careful when you compare .NET to Access.
Access is the DB, and also the development and runtime environment. ..NET is
the framework, VB.NET and C# are the languages you code in, and VS2k3 is

the
development environment (which I'm sure you already know that :>). I

see unfair comparisons with java to .NET, that's like apples and oranges, ..NET to J2EE is the fair comparison, like C# is to java, or WinForms to Swing.
Good luck with this! :>
"bill" <be****@datamti .com> wrote in message
news:Oy******** ******@tk2msftn gp13.phx.gbl...
I am trying to convince a client that dotNet is preferable to an Access
project (ADP/ADE).

This client currently has a large, pure Access MDB solution with 30+
users,
which needs to be upgraded.

I believe a dotNet solution is better, but I'm trying to be as

convincing as
possible -- and maybe I'm wrong!

I would appreciate any input or references which could help me.

My reasons for going with a dotNet solution are:
- The multi-tier environment is more desirable because it is easier to deploy updates, such as a centralized web service, or as web forms
- The ADP is less efficient because it requires a continuous connection to the backend database, whereas ADO.NET is disconnected
- I can use object oriented techniques, such as inheritance
- A dotNet solution requires less bandwidth (some users will be
accessing
the database over a VPN pipe)
- Code can be re-used more easily

The ADP promoter cites the following arguments:

- Access has better reporting capabilities
- Access is quicker to develop in
- The ADP is just as efficient as a dotNet solution in terms of data access
- The front end is already built in Access

Thanks!
Bill




Jul 21 '05 #9
> Why are you using so definitely C# and set that off against Access and VB.
I'm not set against VB.NET. I have my VB MCSD after all. It's just they
are both .NET languages and since you can do the same stuff in both (pretty
much for the most part), C# is quicker to type. As for using Access as the
backend, I think with the right, uh, wrong number of users (>2/3 doing
inserts and deletes), it's not the right solution, IMHO.
I thought that the question was Access or Dotnet?

It was, you are right. However, the question is comparing a RDBMS to a
framework. The RDBMS is lightweight, and provides the DB, UI, development
and runtime environments. The framework, well, provides everything, but at
the sametime nothing. You have to code to the framework to get everything
but cannot DO anything if you have nothing. All that to attempt to say, the
question, IMHO is the classic apples to oranges comparison. Not a big
thing, I fell into that trap a while ago too, and I'm still learning (please
don't get the idea I'm some guru, I'm far from it). But if the question was
..NET to J2EE (no flames please :>), that might be a more direct comparision.

Having said ALL that, I believe the heart of the question is to .NET or not
to .NET? And in my opinion that is a very fair question, wouldn't you
agree? That is something I'm sure will get the people in the Access
newsgroups hopping! :> Should someone just use Access for the back end DB
and use C#, or VB.NET? Or save their $, keep their investment in the Access
db and the front end, bite the bullet and suffer what ever consequences
there are in the name of saving some money?

As a developer, GO .NET! :> But that might also be why I'm not a sr
enterprise architect yet. :<<<< Bill, keep that last point in mind. :< As
a manager, keep the $ in the bank for when sales start to slip, and suffer
the short term hiccups (after all it's not them that are suffering those
hiccups, it's the lowly users and developers).
Jul 21 '05 #10

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

Similar topics

11
2760
by: Timothy Shih | last post by:
Hi, I am having a freezing issue with my application. My application serves several remotable objects, all of which must be initialized before their use. Furthermore, some of them depend on each other. On my application startup, I configure the objects usting the RemotingConfiguration class to load the config file. Then I "ping" each of the objects to call their constructors. This all works fine if no one is attempting to connect at the...
22
381
by: bill | last post by:
I am trying to convince a client that dotNet is preferable to an Access project (ADP/ADE). This client currently has a large, pure Access MDB solution with 30+ users, which needs to be upgraded. I believe a dotNet solution is better, but I'm trying to be as convincing as possible -- and maybe I'm wrong! I would appreciate any input or references which could help me.
3
5297
by: Mike | last post by:
I have created a web service for a client to consume. The element I am having trouble with is, as described in their WSDL: <xsd:element minOccurs="0" ref="LocalData" maxOccurs="1" /> <xsd:element name="LocalData"> <xsd:simpleType> <xsd:restriction base="xsd:string"> <xsd:enumeration value="Y" /> <xsd:enumeration value="N" />
0
8326
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
8845
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...
0
8743
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8622
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6177
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5647
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
4333
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2745
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1736
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.