Search 5,000,000+ questions and answers.

Frequently Asked Questions

Do I have to have Visual Studio to use "ClickOnce"?

General - Windows Forms FAQs
No. While Visual Studio makes deploying "ClickOnce" applications simple, there are several other ways to deploy "ClickOnce" applications. The .NET Framework SDK includes a tool named MAGE(Manifest Editor & Generator) that provides both a UI (mageui...
Related Questions

What do I need to use "ClickOnce"?

General - Windows Forms FAQs
You need to have the .NET Framework 2.0 installed on the client. And you need a place to publish your app to where your end users can access, such as a web server, file share, or media such as CD/DVD.
Related Questions

Can I use "ClickOnce" to deploy an Office addin?

General - Windows Forms FAQs
No. Addins generally require special registration and integrated activation within the hosting application. The "ClickOnce" installer does not support machine level changes such as this.
Related Questions

What is the dfsvc.exe process that starts when I use "ClickOnce"?

General - Windows Forms FAQs
That is the actual "ClickOnce" engine that is handling the update checks & downloads. It is launched when a "ClickOnce" application needs updated. It shuts itself down if not used for 15 minutes.
Related Questions

Can I use "ClickOnce" to deploy console apps?

General - Windows Forms FAQs
You can, but wouldn't you rather have a rich Windows Forms based UI? Also, console apps that require a command-line interface are beyond the scope of "ClickOnce" deployment in the .NET Framework 2.0. The primary reasons for this is that the install path...
Related Questions

How do I manage code snippets that I use often in Visual Studio?

General - Windows Forms FAQs
I have code snippets that I use often. How can I manage them so I can easily used them? In Visual Studio, you can store commonly used code snippets on a tab (other than the Clipboard ring) in your Toolbox. You use drag and drop techniques to move the...
Related Questions

Can I use "ClickOnce" for Windows Forms Controls in the browser?

General - Windows Forms FAQs
No. "ClickOnce" only deals with deploying applications. The Windows Forms control in the browser technology is effectively unchanged.
Related Questions

Can I use Team Foundation Server alone without buying Visual Studio Team System?

Jim Lamb : Team Foundation Server FAQ
Yes. In order to do this you will need to buy Visual Studio Team Foundation Server and a Client Access License for proper communication with the server. Team Explorer, which is included with Team Foundation Server, is a stand alone client that uses the Visual Studio 2005 shell providing a UI for source control, work item tracking and all the other features. For more information on licensing Visual Studio Team System (including Team Foundation Server) see the Team System Licensing White Paper.
Related Questions

My app needs a pre-requisite such as MSDE, MDAC, etc... can I still use "ClickOnce"?

General - Windows Forms FAQs
Yes. One option is to use the VS Bootstrapper. The Bootstrapper will bundle all of your apps necessary pre-requisite's, install them when run & then start the "ClickOnce" application install. The Bootstrapper must be run the 1st time each user uses...
Related Questions

Can I still use Microsoft Visual Studio?

blueink.biz -
Blue Ink was designed to work with Microsoft Visual Studio. Blue Ink's default set of templates output .sln and .proj files so you can immediately open and work with a generated solution using Microsoft Visual Studio. Yes, in most respects Blue Ink generated solutions are no different than manually coded solutions. Blue Ink generated solutions integrate fully with source control applications such as Microsoft SourceSafe either through Microsoft Visual Studio or externally.
Related Questions

Do I have to use Visual Studio?

FAQ
No. QuickAdmin is a standard .NET control, so just needs to be referenced when compiling your C# code.
Related Questions

FastNET ASP - FAQ - Frequently Asked Questions
FastNET ASP is fully compatible with Microsoft Visual Studio and does not attempt to provide its own proprietary development environment. All of the tools, components and technologies available to today's .NET developers can still be utilised by FastNET ASP developers. No. FastNET ASP is a true Zero Footprint Browser solution that is not dependant on downloadable components or applets. Applications developed with FastNET ASP can therefore be accessed immediately by any supported browser.
Related Questions

PhatBot:FAQ
Get the Visual Studio 6 SP5 from here, newest Platform SDK from here (you don't need the full 129mb download, only Core SDK/Build Environment) and the Processor Pack from here. Install all 3. Add the following paths to "Tools|Options...|Directories" in Visual Studio (be sure to include them on top of the list):
Related Questions

Can I create a customizable "ClickOnce" application?

General - Windows Forms FAQs
For example, let's say you want to define an add-in model, or provide some base forms so my customers can extend to customize the look-and-feel of my app by just dropping in additional assemblies. How can you achieve this with "ClickOnce"...
Related Questions

Can I pass arguments to my "ClickOnce" application?

General - Windows Forms FAQs
Yes. When a "ClickOnce" application is activated via a URL, the application can obtain the QueryString of the URL used to activate the application.
Related Questions

Can I deploy managed C++ applications with "ClickOnce"?

General - Windows Forms FAQs
You can use "ClickOnce" to deploy .NET Framework based applications built with any language, including C++.
Related Questions

Can "ClickOnce" applications be run when offline?

General - Windows Forms FAQs
Yes, "ClickOnce" applications that choose to be installed get an entry added in the Start Menu that can be used to launch the application when disconnected from the network. Note however, it's still up to the application to make sure it can work offline...
Related Questions

Is there something I should be doing now in my application to prepare for "ClickOnce"?

General - Windows Forms FAQs
Most applications won't have to know anything about "ClickOnce" to be deployed with "ClickOnce". In most cases, using "ClickOnce" is as simple as creating the necessary manifest files & placing the application on a server... for which we provide tools...
Related Questions

Can I distribute my "ClickOnce" application via CD?

General - Windows Forms FAQs
Yes and your app will still be auto-updateable via a network server you configured into the "ClickOnce" deployment when you created the CDs. This is a great solution for large applications or for applications that have pre-requisites installed with the...
Related Questions

Can I install a "ClickOnce" application per-machine?

General - Windows Forms FAQs
No. All "ClickOnce" applications are installed per-user. Each user is totally isolated from one another and must install their own copy. If your application needs to be installed per-machine, you should use MSI.
Related Questions

How does MSI relate to "ClickOnce"?

General - Windows Forms FAQs
ClickOnce" & MSI are separate but, complimentary application installer technologies. "ClickOnce" is targeted at web based per-user deployments. This has a lot of benefits, but also means you can't do anything & everything at install time. If...
Related Questions

What types of applications can I deploy with "ClickOnce"?

General - Windows Forms FAQs
quot;ClickOnce" can be used to deploy Windows Forms based application based on the .NET Framework. Since "ClickOnce" applications are deployed via the web, they can't be allowed to impact the client machine to a high degree. So if...
Related Questions

What operating systems does "ClickOnce" support?

General - Windows Forms FAQs
ClickOnce" ships in the .NET Framework redist & supports all of the same operating systems & languages as the core .NET Framework. Specifically Windows 98 & up, except for NT4.
Related Questions

Can I use Mainsoft for Java EE with Visual Studio Express Edition?

Frequently asked Questions about Mainsoft for Java EE
Unfortunately not, since the Visual Studio Express Edition has a limited support for extensibility that does not match the tight integration needs of Mainsoft for Java EE. You need to install Visual Studio Standard or Professional Edition to use Mainsoft for Java EE.
Related Questions

How does "ClickOnce" relate to the V1 No-Touch deployment technology?

General - Windows Forms FAQs
ClickOnce" is the successor to the V1 No-Touch deployment technology. "ClickOnce" builds upon V1 & addresses the key limitations & issues with the V1 technology. The V1 No-Touch deployment technology is still supported in V2 of the .NET Framework...
Related Questions

Can I launch a "ClickOnce" app from any web browser besides Internet Explorer?

General - Windows Forms FAQs
quot;ClickOnce" simply uses a MIME type for activation, which is configured by the .NET Framework 2.0 setup. This allows a "ClickOnce" app to be launched by any client that uses standard Windows url activation. This includes Internet Explorer...
Related Questions

Are there any special server requirements for hosting a "ClickOnce" application?

General - Windows Forms FAQs
No. "ClickOnce" does not use any special protocols to transfer files. So you can use a regular file share, IIS or any web server. If you are using a web server, there are a few additional considerations. First, you may need to configure the...
Related Questions

Can Mono run binaries produced by Visual Studio?

FAQ: General - Mono
Use our Mono Migration Analysis tool to check if everything that your application uses has been implemented in Mono or if there are special considerations to keep in mind. The Mono API today is somewhere in between .NET 1.1 and .NET 2.0, see our Roadmap for details about what is implemented.
Related Questions

Got A Question? Ask Our Community!


More Questions >>

© Copyright 2007-2008 QueryCAT
About • Webmasters • Contact