473,473 Members | 2,092 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Differences between WEB and Windows desktop applications

Hello,
can someone tell me the main differences between the web and windows based
applications?
thank you
Oct 14 '06 #1
16 20659
"Daniela Roman" <da**********@rogers.comwrote in message
news:eM**************@TK2MSFTNGP03.phx.gbl...
can someone tell me the main differences between the web and windows based
applications?
Web applications run over the Intranet or an enclosed intranet and are
accessed through a browser.

Windows applications are installed on your computer.
Oct 14 '06 #2
Daniela Roman wrote:
Hello,
can someone tell me the main differences between the web and windows based
applications?
thank you

If by the latter you're referring to "Windows Forms Applications" the
most significant differences are

* Webapplications run on webservers (usually IIS)
* Winforms Applications run on Clients

also,

* Webservices & Websites (ASP.NET) are typical web applications
* Winforms applications are programs with a GUI put together by controls
in the System.Windows.Forms namespace
* Winforms applications depend on the .Net Framework but not on the
"Windows" operating system so they could (hypothetically) run on other
platforms and .net-implementations (have a look at mono)

josef
Oct 14 '06 #3
Hello Daniela,

There were already several answers, but you probably asking to know not the
pure differences but select what to choose for your development, right?

Thus it's better to describe what are u going to do, and we can help u to
find out the right approach

DRHello,
DRcan someone tell me the main differences between the web and windows
DRbased
DRapplications?
DRthank you
---
WBR,
Michael Nemtsev :: blog: http://spaces.live.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
Oct 14 '06 #4
Daniela,

To do it from my point of view.

ASPNet applications are forever physical 3 tier application like as done on
Unix.
Client (the webbrowser), The middle Tier (the webapplication) The server
(the database).

Physical is a windowform application mostly a 2 tier, althoug in a good
design it has multi layers (what is by some called tiers).
Client (the window forms) The server (the database).

Error checking is therefore at webapplication (beside some javascript
checking) always full screen while it is with windowforms direct on the
entered or selected data.

For me are that the major differences, which need in fact a complete
different approach.

I hope this gives an idea,

Cor

"Daniela Roman" <da**********@rogers.comschreef in bericht
news:eM**************@TK2MSFTNGP03.phx.gbl...
Hello,
can someone tell me the main differences between the web and windows based
applications?
thank you

Oct 14 '06 #5
In addition to everyone else's comments...

Windows applications depend on the following namespace:
System.Windows.Forms

Web apps use:
System.Web.UI

With windows applications, you are coding against events "as they
happen" where as with web applications, if someone performs an event
(such as a button click, drop down list selection,etc) then the
information first has to be posted back to the server where the code
will then run. So to summarise, with windows apps. the code is running
on the person's machine, but with web apps, its actually running on the
foreign server and the user just gets some HTML/Javascript that is
generated from that code.

Steven

Oct 15 '06 #6
Thank you for all the replies.
The differences that I saw were:

- windows applications (desktop) need to be installed on each client's PC,
together with .NET Framework; changes determine a new installation on all
stations
- web applications install only on the web server together with the
framework; the clients access the app from a single location; any change
doesn't need to be installed on each station.

- web applications have the authentication/authorization mechanism partially
built
- desktop applications (windows forms) need the entire mechanism built

- web apps have validation controls
- windows apps don't have validation controls, data needs to be validated
through code

please add more differences if you know

"Daniela Roman" <da**********@rogers.comwrote in message
news:eM**************@TK2MSFTNGP03.phx.gbl...
Hello,
can someone tell me the main differences between the web and windows based
applications?
thank you

Oct 15 '06 #7
Cor,
cannot I have a windows desktop application in a 3-tier design?

"Cor Ligthert [MVP]" <no************@planet.nlwrote in message
news:OW**************@TK2MSFTNGP03.phx.gbl...
Daniela,

To do it from my point of view.

ASPNet applications are forever physical 3 tier application like as done
on Unix.
Client (the webbrowser), The middle Tier (the webapplication) The server
(the database).

Physical is a windowform application mostly a 2 tier, althoug in a good
design it has multi layers (what is by some called tiers).
Client (the window forms) The server (the database).

Error checking is therefore at webapplication (beside some javascript
checking) always full screen while it is with windowforms direct on the
entered or selected data.

For me are that the major differences, which need in fact a complete
different approach.

I hope this gives an idea,

Cor

"Daniela Roman" <da**********@rogers.comschreef in bericht
news:eM**************@TK2MSFTNGP03.phx.gbl...
>Hello,
can someone tell me the main differences between the web and windows
based applications?
thank you


Oct 15 '06 #8
Daniela,

A *physical* 3 tier system or a multi layer system as probably all of us
have.

Cor

"Daniela Roman" <da**********@rogers.comschreef in bericht
news:%2****************@TK2MSFTNGP02.phx.gbl...
Cor,
cannot I have a windows desktop application in a 3-tier design?

"Cor Ligthert [MVP]" <no************@planet.nlwrote in message
news:OW**************@TK2MSFTNGP03.phx.gbl...
>Daniela,

To do it from my point of view.

ASPNet applications are forever physical 3 tier application like as done
on Unix.
Client (the webbrowser), The middle Tier (the webapplication) The server
(the database).

Physical is a windowform application mostly a 2 tier, althoug in a good
design it has multi layers (what is by some called tiers).
Client (the window forms) The server (the database).

Error checking is therefore at webapplication (beside some javascript
checking) always full screen while it is with windowforms direct on the
entered or selected data.

For me are that the major differences, which need in fact a complete
different approach.

I hope this gives an idea,

Cor

"Daniela Roman" <da**********@rogers.comschreef in bericht
news:eM**************@TK2MSFTNGP03.phx.gbl...
>>Hello,
can someone tell me the main differences between the web and windows
based applications?
thank you



Oct 15 '06 #9
Daniela,

Where did you read the conclusion you wrote in this thread, because non of
these points is true and even most are in contrary?.
- windows applications (desktop) need to be installed on each client's PC,
together with .NET Framework; changes determine a new installation on all
stations
As it is Net they both have to be installed once on a webserver using
Publish. If it is not a Net application than the Net is not needed to be
installed. At IE7 this last point is even gone ofcourse.
- web applications install only on the web server together with the
framework; the clients access the app from a single location; any change
doesn't need to be installed on each station.
Even this is not true, if you are using JavaApplets, javascript, activeX or
whatever, you have to be sure that the right version is in the users cache..
- web applications have the authentication/authorization mechanism
partially built
- desktop applications (windows forms) need the entire mechanism built
With a windows application you can easily use the Is In Role
authentication/authorization mechanisme as in any windows application.
- web apps have validation controls
- windows apps don't have validation controls, data needs to be validated
through code
The validation on Web is fair, you cannot simple check a date by instance if
that is not typed in the way it is given on the webpage. In a window forms
application a lot is done for you, just as the user is typing it.
Cor
Oct 15 '06 #10
I was referring to .NET environment exclusively and this was my
understanding reading different sources, it's not necessarily true, I just
wanted to confirm.
In a multi-user environment a web application doesn't need to be installed
on each client's computer like with desktop apps., where there is only one
installation on the web server
A change in the app will determine one single re-installation on the web
server but in the desktop case, it should be done on each individual PC
..NET Framework needs to be installed on either WEB server (for web apps) or
on each PC (for desktop) for .NET apps to run, which is a one-many relation
"Cor Ligthert [MVP]" <no************@planet.nlwrote in message
news:eg**************@TK2MSFTNGP03.phx.gbl...
Daniela,

Where did you read the conclusion you wrote in this thread, because non of
these points is true and even most are in contrary?.
>- windows applications (desktop) need to be installed on each client's
PC, together with .NET Framework; changes determine a new installation on
all stations

As it is Net they both have to be installed once on a webserver using
Publish. If it is not a Net application than the Net is not needed to be
installed. At IE7 this last point is even gone ofcourse.
>- web applications install only on the web server together with the
framework; the clients access the app from a single location; any change
doesn't need to be installed on each station.
Even this is not true, if you are using JavaApplets, javascript, activeX
or whatever, you have to be sure that the right version is in the users
cache..
>- web applications have the authentication/authorization mechanism
partially built
- desktop applications (windows forms) need the entire mechanism built
With a windows application you can easily use the Is In Role
authentication/authorization mechanisme as in any windows application.
>- web apps have validation controls
- windows apps don't have validation controls, data needs to be validated
through code
The validation on Web is fair, you cannot simple check a date by instance
if that is not typed in the way it is given on the webpage. In a window
forms application a lot is done for you, just as the user is typing it.
Cor

Oct 15 '06 #11
Daniela,

Try either in a web or in a windowforms application using the C# 2005 IDE

Build
Publish

Cor
"Daniela Roman" <da**********@rogers.comschreef in bericht
news:On**************@TK2MSFTNGP04.phx.gbl...
>I was referring to .NET environment exclusively and this was my
understanding reading different sources, it's not necessarily true, I just
wanted to confirm.
In a multi-user environment a web application doesn't need to be installed
on each client's computer like with desktop apps., where there is only one
installation on the web server
A change in the app will determine one single re-installation on the web
server but in the desktop case, it should be done on each individual PC
.NET Framework needs to be installed on either WEB server (for web apps)
or on each PC (for desktop) for .NET apps to run, which is a one-many
relation
"Cor Ligthert [MVP]" <no************@planet.nlwrote in message
news:eg**************@TK2MSFTNGP03.phx.gbl...
>Daniela,

Where did you read the conclusion you wrote in this thread, because non
of these points is true and even most are in contrary?.
>>- windows applications (desktop) need to be installed on each client's
PC, together with .NET Framework; changes determine a new installation
on all stations

As it is Net they both have to be installed once on a webserver using
Publish. If it is not a Net application than the Net is not needed to be
installed. At IE7 this last point is even gone ofcourse.
>>- web applications install only on the web server together with the
framework; the clients access the app from a single location; any change
doesn't need to be installed on each station.
Even this is not true, if you are using JavaApplets, javascript, activeX
or whatever, you have to be sure that the right version is in the users
cache..
>>- web applications have the authentication/authorization mechanism
partially built
- desktop applications (windows forms) need the entire mechanism built
With a windows application you can easily use the Is In Role
authentication/authorization mechanisme as in any windows application.
>>- web apps have validation controls
- windows apps don't have validation controls, data needs to be
validated through code
The validation on Web is fair, you cannot simple check a date by instance
if that is not typed in the way it is given on the webpage. In a window
forms application a lot is done for you, just as the user is typing it.
Cor


Oct 15 '06 #12
Yes Daniela you are right.
As an overall guidance, the process of updating those seperate
instances is as easy as each other, but the overall concept is correct.
If you are building web app, you only need to update the app on the web
server. If you want to update a deployed windows app, you need to
udpate the individual applications on each pc. There are easy ways to
do this and VS2005 has one click deployment methods, but the overall
result is still the same.

Naturally there are lots of other factors such as how much control you
have over the target windows apps, if they use a shared or standalone
database, etc.

I guess if you plan on doing lots of updates, web is the way to go. But
if you want the improved integration with the windows api, then use a
windows app.

<answer flame="false">

The amount of crap that runs client side now days pretty much makes the
concept of a "thin client" redundant anyway, in my opinion.

</answer>

Oct 15 '06 #13
Steven,

I think that you are beside the true situation and still are using facts
which seemed to be true in the previous century. The (in my opinion) most
important choice you have to make is if your supposed users will download
your application on their computer.

If that is not the fact, than a webapplication is the only way to go. In
other words, do the users belong to your domain or do they want to belong to
that.

Cor

"Steven Nagy" <le*********@hotmail.comschreef in bericht
news:11**********************@m73g2000cwd.googlegr oups.com...
Yes Daniela you are right.
As an overall guidance, the process of updating those seperate
instances is as easy as each other, but the overall concept is correct.
If you are building web app, you only need to update the app on the web
server. If you want to update a deployed windows app, you need to
udpate the individual applications on each pc. There are easy ways to
do this and VS2005 has one click deployment methods, but the overall
result is still the same.

Naturally there are lots of other factors such as how much control you
have over the target windows apps, if they use a shared or standalone
database, etc.

I guess if you plan on doing lots of updates, web is the way to go. But
if you want the improved integration with the windows api, then use a
windows app.

<answer flame="false">

The amount of crap that runs client side now days pretty much makes the
concept of a "thin client" redundant anyway, in my opinion.

</answer>

Oct 16 '06 #14
I think that you are beside the true situation and still are using facts
which seemed to be true in the previous century.
Which facts do you think were true in the previous century?
Are you implying that those same facts are no longer valid in this
century?

Oct 16 '06 #15
Windows Applications are always executable(.exe) but web apps are
not(.dll).
Windows Apps dont have any implicit objects that belong to all web
apps(Session,Application..).
Windows Apps for decentralised server Apps but web apps are relying
fully
on server.

Steven Nagy wrote:
In addition to everyone else's comments...

Windows applications depend on the following namespace:
System.Windows.Forms

Web apps use:
System.Web.UI

With windows applications, you are coding against events "as they
happen" where as with web applications, if someone performs an event
(such as a button click, drop down list selection,etc) then the
information first has to be posted back to the server where the code
will then run. So to summarise, with windows apps. the code is running
on the person's machine, but with web apps, its actually running on the
foreign server and the user just gets some HTML/Javascript that is
generated from that code.

Steven
Oct 16 '06 #16
sex arab videos 2007 سكس عربي جديد صورة وصوت sex
arab videos
سكس عربي جديد صورة وصوت sex arab videos

http://www.websofiane.net
http://www.sofiane.c.la/
http://sofiane.c.la/
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com/categorie-970159.html
http://sofiane.c.la/ http://sofiane.c.la/
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://hgdfdfqgsdfgqsdv.canalblog.co...4/3165606.html
http://www.sofiane2007.com/categorie-970159.html
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net http://www.websofiane.net
http://www.sofiane.c.la/
http://sofiane.c.la/
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com/categorie-970159.html
http://sofiane.c.la/ http://sofiane.c.la/
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://hgdfdfqgsdfgqsdv.canalblog.co...4/3165606.html
http://www.sofiane2007.com/categorie-970159.html
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.websofiane.net
http://www.sofiane.c.la/
http://sofiane.c.la/
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com/categorie-970159.html
http://sofiane.c.la/ http://sofiane.c.la/
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://hgdfdfqgsdfgqsdv.canalblog.co...4/3165606.html
http://www.sofiane2007.com/categorie-970159.html
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net http://www.websofiane.net
http://www.sofiane.c.la/
http://sofiane.c.la/
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com/categorie-970159.html
http://sofiane.c.la/ http://sofiane.c.la/
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://hgdfdfqgsdfgqsdv.canalblog.co...4/3165606.html
http://www.sofiane2007.com/categorie-970159.html
http://www.websofiane.net
http://www.sofiane.c.la/
http://sofiane.c.la/
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com/categorie-970159.html
http://sofiane.c.la/ http://sofiane.c.la/
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://hgdfdfqgsdfgqsdv.canalblog.co...4/3165606.html
http://www.sofiane2007.com/categorie-970159.html
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net http://www.websofiane.net
http://www.sofiane.c.la/
http://sofiane.c.la/
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com/categorie-970159.html
http://sofiane.c.la/ http://sofiane.c.la/
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://hgdfdfqgsdfgqsdv.canalblog.co...4/3165606.html
http://www.sofiane2007.com/categorie-970159.html
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.websofiane.net
http://www.sofiane.c.la/
http://sofiane.c.la/
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com/categorie-970159.html
http://sofiane.c.la/ http://sofiane.c.la/
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://hgdfdfqgsdfgqsdv.canalblog.co...4/3165606.html
http://www.sofiane2007.com/categorie-970159.html
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net http://www.websofiane.net
http://www.sofiane.c.la/
http://sofiane.c.la/
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com/categorie-970159.html
http://sofiane.c.la/ http://sofiane.c.la/
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://hgdfdfqgsdfgqsdv.canalblog.co...4/3165606.html
http://www.sofiane2007.com/categorie-970159.html
http://www.websofiane.net
http://www.sofiane.c.la/
http://sofiane.c.la/
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com/categorie-970159.html
http://sofiane.c.la/ http://sofiane.c.la/
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://hgdfdfqgsdfgqsdv.canalblog.co...4/3165606.html
http://www.sofiane2007.com/categorie-970159.html
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net http://www.websofiane.net
http://www.sofiane.c.la/
http://sofiane.c.la/
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com/categorie-970159.html
http://sofiane.c.la/ http://sofiane.c.la/
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://hgdfdfqgsdfgqsdv.canalblog.co...4/3165606.html
http://www.sofiane2007.com/categorie-970159.html
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.websofiane.net
http://www.sofiane.c.la/
http://sofiane.c.la/
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com/categorie-970159.html
http://sofiane.c.la/ http://sofiane.c.la/
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://hgdfdfqgsdfgqsdv.canalblog.co...4/3165606.html
http://www.sofiane2007.com/categorie-970159.html
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net http://www.websofiane.net
http://www.sofiane.c.la/
http://sofiane.c.la/
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com/categorie-970159.html
http://sofiane.c.la/ http://sofiane.c.la/
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://hgdfdfqgsdfgqsdv.canalblog.co...4/3165606.html
http://www.sofiane2007.com/categorie-970159.html
http://www.websofiane.net
http://www.sofiane.c.la/
http://sofiane.c.la/
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com/categorie-970159.html
http://sofiane.c.la/ http://sofiane.c.la/
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://hgdfdfqgsdfgqsdv.canalblog.co...4/3165606.html
http://www.sofiane2007.com/categorie-970159.html
http://pubmoteur.canalblog.com/
http://www.websofiane.net
http://www.sofiane-online.org
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net http://www.websofiane.net
http://www.sofiane.c.la/
http://sofiane.c.la/
http://www.sofiane2007.com
http://sofiane2007.oldiblog.com
http://sofiane2006.webobo.com
http://www.websofiane.net
http://www.sofiane2007.com/categorie-970159.html
http://sofiane.c.la/ http://sofiane.c.la/
http://pubmoteur.canalblog.com/
http://www.websofiane.net

Nov 28 '06 #17

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

Similar topics

2
by: thechaosengine | last post by:
Hi everyone, Is there anyway to create some sort of catch-all in windows forms applications that could ensure that no unexpected exceptions bring down an application? For example, perhaps...
1
by: Mama | last post by:
Is it possible to create a VB .net form that acts like windows desktop??? Allowing link icons and other forms How can i do that, i'm a newbie Thanks
3
by: ebbflow | last post by:
I've seen explainations on how to impersonate a non aspnet user when a web page is called within an web application, but I have a different impersonation issue. I have a windows desktop...
5
by: Terry Olsen | last post by:
To comply with corporate policy banning the storage of social security numbers on computers, I have been asked if I can search for files & emails that contain social security numbers. I thought...
1
by: =?Utf-8?B?U3JpbWFu?= | last post by:
Has anyone worked on Windows Desktop Search (WDS) APIs for Windows Vista? Need some help in resolving Vista Administrator issue for using WDS.
0
danyluis
by: danyluis | last post by:
I need to change programmatically the value of the "Extend my Windows desktop onto this monitor" option on Desktop -> Properties -> Settings. I do not know if this can be done using any WMI...
1
danyluis
by: danyluis | last post by:
I need to change programmatically the value of the "Extend my Windows desktop onto this monitor" option on Desktop -> Properties -> Settings. I do not know if this can be done using any WMI...
1
danyluis
by: danyluis | last post by:
I need to change programmatically the value of the "Extend my Windows desktop onto this monitor" option on Desktop -> Properties -> Settings. I do not know if this can be done using any WMI...
1
by: appub4u1 | last post by:
how to add a menu item to windows desktop right click menu using C# (the menu which is comming when u right click on the desktop without selecting any file) I am using XP and in registry I did...
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
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...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
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...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.