VS 2008 Starting An Application After Installation

Dec 16, 2010

I have created a setup project that after the installation, starts the app that is being installed. To do that I have added an Installer class to the app I want to get started and I am using it's commited event to start the app (Process.Start("...myapp.exe").

While this works fine on XP, on Windows Vista the application gets started as a "System" user which makes some parts of the app missbehave i.e. retreiving special folders of the user etc...

This is the question: way to start myapp as the logged in user? Mind you I will not have the credentials of the users.

View 2 Replies


ADVERTISEMENT

Deployment :: Combine WAMP And Application Installation Into One Packet Installation?

May 24, 2009

I just made an application using MySQL for the database. I use WAMP.Can I combine WAMP and my application installation into one packet installation ?

View 2 Replies

Specify Installation Directory For Vb 2008 Express Application?

Apr 27, 2009

I am using VB 2008 express. I created a setup file for installation using the publish command. When I install on another computer, it installs under the documents and settings directory. I want it to install under program files like most other programs.

I've search everywhere on the web for this. The closest thing i could find was talking about the DefaultFolder under the projects applications folder. I don't see that option. I can specify all the publication directories - but these are strictly for where VB creates the setup file at - not where the setup file installs it. Frankly it would be really nice to be able to allow the user to specify the directory as an option, with program files as the default. But for now I'd be happy to just be able to change the default install directory for my app.

View 5 Replies

VS 2008 Setting The Installation Location Of A Published Application?

Jan 11, 2011

I have published a vb.net application and installed it on my PC. When I try to locate the installed application, I dont find the location where its been installed.

How to install a publish application on a specified location in C:Program FilesProject?

View 8 Replies

VS 2008 - Unable To Perform Application Installation / Uncheck Some Options?

Apr 12, 2010

I've been creating a small application and now I'm going to make a setup file for it. And I started doing this using Installshield. Here's a prtscreen of where I'm stuck: Since I've developed my Application in .Net, I don't know whether it can be installed on earlier versions of Windows such as Windows 98. Should I uncheck some options?

View 6 Replies

Including NET Framework 3.5 - SQL Compact Server And Other Packages In VB 2008 Application Installation

May 22, 2009

Including NET Framework 3.5 - SQL Compact Server and other packages in VB 2008 Application installation

View 5 Replies

Application :: Display A Message To The User Whilst The Application Is Starting Up?

Nov 4, 2010

I have recently created an application where a lot of data is loaded into objects when the application starts up, and other data as it is required. For example if the user requests the catalogue page then it will load all the top level category data into objects of type Category. This will then stay there to be used by other users (who will therefore not have to load this data into objects) and can be altered by admin if they happen to login during the same application instance. I know this is not the most efficient solution, as pointed out below, but it works and the page load, at the moment, is not too long. It is very quick if most of the required data is already loaded into objects. It is also tailored to the business' needs - unlike other techniques such as Linq-to-SQL.

View 1 Replies

VS 2010 Retrieve Currently Active Application Window From Another Application Just Starting Up

May 26, 2011

I am in need of a small application, that will allways be topmost and will send keystrokes to the last active application (typically notepad or an explorer window). My problem is retrieving the current active form (or application), when my application is started up. Every search seems to return old and rather complex solutions using Win32 library functions, but I was kinda hoping, that .Net allowed for a neater and more simple solution.I need a code example or link on how to retrieve the currently active application window from another application just starting up.

View 2 Replies

Deployment :: Starting One Application From Within Another?

Feb 17, 2010

Basically I've written two Apps (A and B) and all I want to do is put a link on the menu of App A which when clicked will fire-up App B.

Normally what I'd do is something along the lines of...

Shell("C:PathAppName.exe")

However, both of my apps are installed on the target machines via a Setup-Kit generated by the Publish Wizard in VB.NET. As far as I know, after you've run the Setup you don't get an EXE file for the actual application - you just get an 'Application Reference' on the Start Menu and/or Desktop.

My problem is that I don't really understand what the Application Reference is and how my application is actually deployed onto the target machine after setup has finished...

Given that I don't seem to have an EXE file after running Setup, I need another way of telling App A to fire App B, because I'm guessing I can't use my Shell command anymore?

View 2 Replies

Error When Starting My Application

Oct 20, 2010

Unhandled exception has occured in you application. if you click continue, the application will ignore this error attempt to continue. if you click Quit, the application will close immediately Access to path "C:Program FilesRipplEsoftwareMy Product[code]...

View 3 Replies

Starting The Application To Send Sms?

Aug 17, 2009

I have this application to send sms but the reason is that when i start to click on the send button, it does not send. but when I start the application again to send sms by clicking on the send button, it is sending. when i send again using a different number, it cannot send.

View 6 Replies

Application For Installation Via CD Or DVD?

Apr 11, 2009

I've published my application for installation via CD or DVD. I installed it on my machine and it worked fine. I have a couple of questions, I couldn't find the answer to in the GUI. First, when the application is installed, it immediately launches. Can I make something in the installation where a user can click a checkbox saying launch after install? If not, how can I disable the application from launching after the install. And secondly, the application is installed, a desktop shortcut is created, and the application is added to the programs on the start menu. How would I add an uninstall link in the program menu along with the icon to launch the application? Currently I have to go to the control panel add remove programs to remove the application.

View 1 Replies

Run Application Without Installation?

Jul 1, 2010

I am creating a small VB.Net (Framework 3.5, Visual Studio 2008) application, requirement is small.

I want to make an EXE and that should run without installation.

I am Ok if all the dependencies, like dlls, are present in ApplicationStartupPath().

The Application should be standalone without installation. Bcoz, I don't want to create a big scene to install a huge .Net Framework in client PC for just a small application, as I said the requirement is small.[code]...

View 8 Replies

Starting Another Windows Application In The Same Solution?

Feb 10, 2012

I have two windows applications in the same solution, in different projects. How do I start one from the other? Is it a matter of supplying the expected build path .exe to somewhere, or is there an alternative?

View 1 Replies

Starting Application At Windows Start

Jun 26, 2008

I've made a windows service for the purpose of creating backup's of certain files and directories automatically each day. The service is installed as automatic (so it starts after win startup) and i have an application which monitors the service through a system tray icon (so right-click on it you can start/stop/pause the service, change settings, etc).

[Code]...

View 10 Replies

Pause Application During SQL Installation?

Oct 11, 2011

My application first checks if an SQL Server is installed before it runs. If there is no server it installs one. Now I want the application to pause or exit during the installation, since its thread may compromise the installation process, or is it not?. How do I do this? The Sleep() mmethod may not help because I can't know how long the installation process would take.

View 2 Replies

Win32 Exception When Starting A Process From An Application?

Dec 9, 2009

I have an application that starts one of two external CAD applications depending upon the extension of a file in a ListView. I have been able to start up the application to view the file selected without a problem. I also have a seperate print click event for printing the file that opens the viewer application in the background and prints the file. This works perfectly for one of the CAD viewers but when I select a file that requires the other viewer application to print I get a Win32 exception and an error message stating that the file is not associated with any application and it cannot be opened. This of course is rediculous as it opens fine in the "View File" click event that opens the viewer to check the drawing.

One rather strange observation is that the CAD viewer that does print the associated file will launch the other CAD viewer application (that is associated with the other file extensions) when the "View" click event is handled even though I had not incuded the code to execute the process to start the viewer for that type of file. I realize this rather convoluted and may lie in the ProcessStartInfo arguments that I pass to the application.

Here's a code snippet:

Private Sub PrintFinGoods_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles PrintFinGoods.Click
Dim message As String = "No application is associated with file"
Dim source_exception As New Exception

[code]....

View 1 Replies

Application Installation Software Requirements?

Oct 1, 2009

I tried to do a test install yesterday on a laptop running Windows Vista Ultimate and I was unable to get it to run without an internet connection because it needed to download additional software. My application may be installed on a client computer that does not have an internet connection and I need to be able to provide this extra software on disk.

View 4 Replies

Reference The Installation Folder Of Application?

Nov 30, 2009

I'm writing a windows form application in VS2008 using VB. I have a text script file needs to be deployed together with my application. How do I reference this file when coding and how to deploy it using windows installer? A similar question, how do I reference the installation folder of my application?

View 8 Replies

WAV Files Not Included After Installation Of Application

Jan 28, 2012

I'm trying to publish the application and install it on another PC. However, when I install the app, it doesn't include the .wav files; I have to add them into the folder myself once the app is installed. They are included in the solution window under bin/debug before I hit publish.
Using
My.Computer.Audio.Play(Application.StartupPath & "" & "Treyson.wav")
to play the sound.

View 5 Replies

Embedded 3rd Party Software Into An Application For Installation?

Apr 2, 2009

IDE: VS 2005 Pro
Language: VB

I am trying to figure out the right steps to have an installer for my application. My application is dependent on a 3rd party software application and obviously needs to be part of the installtion process. I am able to utilize the features of the 3rd party software via ActiveX control or COM.

1. What options do I have for sucessfully installiing theses softwares?

2. I have noticed there is "Interop.3rdPartyApp.dll" in the "release" folder. How do I use this? Where can I get more details on this file?

View 2 Replies

Embedded 3rd Party Software Into Application For Installation?

Mar 31, 2010

IDE: VS 2005 ProLanguage: VBI am trying to figure out the right steps to have an installer for my application. My application is dependent on a 3rd party software application and obviously needs to be part of the installtion process.

View 7 Replies

Find Installation Directory Of Other Application Installed?

Mar 16, 2011

I have started working on the module based application (plugin based architecture) and client want setup of module that can be run later and added automatically in main application. So, what I am thinking to apply in module setup project is to find the installation directory of main application and then paste dll of module in specific sub-directory.

Is it possible? Is there any other way to add feature in main application later using setup?

View 10 Replies

Installation Error - Unable To Install Or Run The Application

Oct 1, 2009

I've made a program but when others try and run the installer they're getting the error "unable to install or run the application.The application requires that assembly Microsoft.vbe.Interop Version 12.0.0.90 be installed in the Global Assembly Cache first.

View 3 Replies

Application Is To Monitor Starting And Stopping Of Applications Listed In A File?

Sep 3, 2010

I am working on a Windows Service application in VB.net 2008. The main objective of the application is to monitor starting and stopping of applications listed in a file. I build the service as system level by using

mManagementStartWatcher = New ManagementEventWatcher("Select * From Win32_ProcessStartTrace")
AddHandler mManagementStartWatcher.EventArrived, AddressOf

[code].....

View 2 Replies

Attach And Detach Sql 2005 Database While Starting Application And Closing?

Nov 17, 2009

Attach and detach sql 2005 database

View 1 Replies

Created An Application Where From The Starting Class A Modless Dialog Box Is Called?

Jun 4, 2009

I have created an application where from the starting class a modless dialog box is called. Once the dialog box is called then the program will close instead of waiting on the dialog box to call the appropriate functions.

A couple of notes: This was originally written in VB 2005, and I was successful by manipulating the automatically generated code for the starting and clean up for the class. I cannot find this section of code in my VB 2008 project.

I cannot start the program from inside the dialog box, since there are multiple dialog boxes and which one starts depends on what is currently running on the computer.

The program will run with a modal dialog box, but it does not function properly, so I must use modless.

Please help me to prevent the application from closing when it reaches the end of the code in the main subroutine. I want to have a function to explicitly close the application.

View 4 Replies

Modify Contents Of App.config File At Runtime After Starting Application?

Mar 29, 2011

Is there a way to modify contents of app.config file at runtime after starting application?

View 8 Replies

Hidden Database Files In Application Folder After Installation?

Nov 16, 2011

I have tested a few applications downloaded from net. They are surely database applications but when I checked in the folder where the application is installed, there is no database (no mdb, sdf etc.) When I install my application, my databases are always in the folder.

What is the trick to make them invisible but they should still work.

View 1 Replies

Make Auto-run Application To Automate The Installation Of Another Software?

Sep 27, 2009

I am trying to make a Auto-run application to automate the installation of another software. Specifically, that means to launch the software and fill in the name/company/Sn, and if possible, simulate the "next" click.

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved