Allow Installation In Custom Target Directory And Suppress Autostart

Mar 1, 2010

I've developed a VB.NET console application and tried to use the Build | Publish menu option in Visual Studio 2008 to create a Setup. It works fine except two things:
- when I run the Setup on a Windows 2003 Server, it installs the application in the C:Winntprofiles\Local SettingsApps2.0 directory. How can I configure the setup so that it would prompt for a target directory for the application?
- After the Setup is complete, it starts the application automatically. How can I suppress the auto-start?

View 1 Replies


ADVERTISEMENT

How To Get The Installation Directory In A Custom Action

Dec 9, 2010

I am using Visual Studio 2005. I have just figured out how to create a Custom Action during installation, but I can not figure out how to get data from the installer. Following is the simple test code that I am trying to use to call the directory that the user defines during installation, but the Path string is not returning anything.

Public Overrides Sub Install(ByVal stateSaver As System.Collections.IDictionary)

MyBase.Install(stateSaver)

Dim Path As String = MyBase.Context.Parameters("targetdir")

Dim AppConfigFile As String = Path & "FilesAppConfig.txt"

MsgBox("The target filepath is: " & AppConfigFile)

End Sub

I have tried many other things, such as...

Me.Context.parameters("targetdir")

stateSaver.item("targetdir")

And I entered /INSTALLDIR="[TARGETDIR]" in the custom action data property.

View 1 Replies

.net - Shortcut Created - WinForms ClickOnce Installation Does Not Have A Target Tab

Sep 5, 2011

I have taken over support for a VB.Net WinForms application. When this application is installed via a ClickOnce installation it generates a shortcut on the desktop. The annoying thing, though, is that if you do a right click and properties on the shortcut that was created, it is clear that it is not a regular shortcut as it does not have a target tab, so it is not obvious from the shortcut properties what this shortcut is referencing. So my questions relating to this are: what is the idea behind this kind of shortcut? Why is the the target for this type of shortcut hidden? (What are they even called? This is the first time I have ever seen a ClickOnce installation, so was somewhat surprised when I found that the properties tab was missing.) How do you find out what executable is being referenced by the shortcut?

View 1 Replies

Changing Target Directory For A Pre-build Command In VS 2005

May 6, 2009

I'm programming in VB using Visual Studio 2005 Professional. I have a code munger perl script that generates some of the *.vb files that I want to compile. The script and the associated files are in my project directory, and when I run the script from the OS command prompt, it writes the files in the same directory, which is what I want. Rather than do this, I want to invoke the perl script as a pre-build event. I've gotten it to work ... almost. The only issue now is that the files are now deposited in TargetDir (/bin/Release e.g.) instead of ProjectDir. I could just change TargetDir to be ProjectDir, but that seems like I'm asking for trouble. Is there a way to separately specify the target directory for pre-build commands? Or change it to ProjectDir, then change it back after I'm done with the pre-build?

View 1 Replies

Can't Find The Installation Directory?

Mar 21, 2012

I've written an application [Visual Studio 2005 / VB) that works fine when I build it on my Win 7 PC.But when I try to install it XP as a test it falls over imediately on a 'file.exists' call made to establish if the data file exists or not (and if not then create it).

But it raises an exception because it can't find the directory that the file is supposed to be in. For the files location I was using Application.ExecutablePath but on the XP machine it is some weird directory like
Code:

[Code]...

View 6 Replies

Get Installation Directory Path From The .net Registry?

Jun 8, 2010

I am finishing a project for a client , however I am having an issue with the registry. How do I get installation directory path from the .net registry?

View 10 Replies

VS 2008 Finding The Directory Of Installation

Jul 8, 2009

Alright, my program requires a folder to put the save files in, and it works fine to create it when I know where the program was installed to. I want to assume that everyone will install to C:/Program Files... however, one cannot assume. Is there a way for me to find out where the program was installed to ie. D:/WorkPrograms/ProgramHere, instead of the Program files? Specifically, is there some sort of code that I can run at startup to find where the program file is, so I can keep all the save files in there?

View 3 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

Publishing A Project - Can't Find The Installation Directory

Mar 18, 2009

I am trying to publish a project. Via the publish wizard I have published the project. So I have:Project.applicationSetup.exeand a directory application files in which:Project.applicationProject.exe.deployProject.exe.manifest. When I start the setup it does it's thing (only one question: do you want to install ...etc) and 2 seconds later its done.

Problem:
1. I can't find the installation directory... (I can find the app in the 'add/remove programs' but not anywhere in program files or ..)

2. there are a few xml and mdb files I want to include in de project (or else the project does not work).

But because of (1) I don't know where to do so. Or beter yet, I would like to include these files in the installer.3. Why doesn't the installer ask me where I want to install?

View 5 Replies

Select The Installation Directory Using Click Once Deployment?

Jul 20, 2009

I have developed a WinForm app using vb.net. The app needs to send an email notification to users containg the id of an item that needs thier attention. The email needs to contain the link and commandline parameters so that the user can clik on the link and the app will open the correct form, with the item to be updated, already loaded. Click Once installs the app under the users directory ("Documents nd setting\%USERNAME%Start MenuPrograms\%AppName%..."), so, the email has to contain the user name as part of the path.

- How can click once be configured so that the instalation is in the program files directory to avoid having to add the username as path of the path?
- how do send a link which contains a parameter that directs the app to load a speciified form (not the startup form)?

View 4 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 2010 Free Method To Access Installation Directory

Jan 20, 2011

My app has a folder that has some xml documents which is or should be created within the installation Directory. What is the best / most problem free method to access the installation directory: [code]

View 6 Replies

VS 2005 Custom Installation Program?

Mar 5, 2010

I've just finished a project, but in it, you can switch between three backgrounds, and I want to export it to another computer with an installatinoprogram, but I have no idea how to do that. I know that it should put these pictures somewhere so the program knows were they are. while it's installing, i want a picture to come up over the status bar, and maybe something that you must agree with terms.

View 5 Replies

AxWindowsMediaPlayer1 Autostart?

Aug 3, 2009

i have put Form1.AxWindowsMediaPlayer1 in Form1 to play when program start.And when i press button to open me new form (Form2) i made Form1.AxWindowsMediaPlayer1.close()To stop the sound to start the music from the Form2 media player

And here is mine problem how to make Form2 button "Close" that close Form2 Me.Close() and to have Form1.AxWindowsMediaPlayer1 to start music again or resume it?

View 1 Replies

Using Registry Key To Autostart App?

Apr 11, 2009

how to use registry key to make my application autostart.

View 1 Replies

VS 2008 VB 2008 Express Edition Softare - Specific Installation Directory For A Program?

Aug 9, 2009

Where in Visual Basic 2008 Express Edition Software program do you specify a specific installation directory for a program?

c:Program Filesfinished program

I want to publish my program to try it out on another system and I want to ensure its installed in the directory structure I want.

View 3 Replies

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

Add Custom Fields/attributes To Active Directory User When Created?

Apr 12, 2012

add a custom field and/or attributes in active directory (whichever their called) for a user. For instance, im wanting to add a field for employee id but can I also get this field to show up in active directory users and computers to see if its working correctly? Once you eliminate the impossible, whatever remains, no matter how improbable, must be the truth. - "Sherlock holmes" "speak softly and carry a big stick" - theodore roosevelt.

View 5 Replies

Move From Custom Login Screen To Active Directory LDAP Authentication?

Mar 11, 2009

I have a WinForms app with SQL05 backend. It has a standard Login window where users are required to supply a username/password. This is validated using my own code and sprocs. Now one of my big clients has scared the bejezus out of me by saying, "Hey Chris, I want you to change your app in line with all our other IT systems so that users can use their common username and passwords with authentication against LDAP". :confused: Having had a moment to reflect, I have some questions (some very noob in nature!)

1. Is this requirement a big deal? :) Or straightforward to implement?

2. Does this mean that when user's double-click my app icon on the desktop, the authentication automagically happens without the need for a Login screen?

3. How on earth can I test this. My dev environment does not use AD, but I do have SBS2003

4. Can anyone point me to good resources about this on the web?

View 7 Replies

Sendkeys & Target - If The Target Of The Sendkeys Has Changed Between Sendings?

Aug 16, 2010

When using Sendkeys with vb.net, is it possible to tell if the target of the Sendkeys has changed between sendings?

View 1 Replies

How To Suppress Messages

Jul 28, 2010

I have read the MSDN Page on how to suppress messages. I am unable to supress warnings for VS2008. [code] The problem was I had a series of parallel tasks that were dependent on check boxes. I wanted each task to to run simultaneously and then join back. I overcame the warning by using a callback method that decremented until all the call backs completed. [code] The warning was an Uninitialized Variable. Which was not the case as it was dependent on identical if-statements. I opted to use a callback method instead, which turned out to be a better alternative and did not lock up the GUI.

View 1 Replies

.net - Suppress COM Generics Warning?

Dec 8, 2010

I'm compiling a VB.Net 2.0 app (created in VS2008) using msbuild, and now I've added a generic return type, it's giving me the following:

Warning: Type library exporter
encountered a generic type instance in
a signature. Generic code may not be
exported to COM.

Having just spent ages removing all of the previous warnings, I don't really want to add a new one. Any idea how to get rid of it (aside from not using generics)?I don't know what details I'd put in the attribute, or what number to put in the project-level ignore list.

View 1 Replies

GC.SuppressFinalize Does Not Suppress Finalize

Jan 25, 2010

when i call GC.ReRegisterForFinalize(obj) and changed my mind, i could call GC.SuppressFinalize(obj) and remove it from the list of object that requests finalization. problem is that when i call GC.ReRegisterForFinalize(obj) twice, it registers the object twice in the finalization-listing. i need to remove the object from the finalization-listing but multiple calls of GC.SuppressFinalize(obj) could not remove obj from the list.also, why is it acceptable for this function to be called SuppresFinalize when after calling it Finalize still occurs?

View 2 Replies

Trying To Suppress Error Screens

Apr 13, 2011

I am writing a program that tests our hardware write blocker units.When i send it the command to delete a text file on the device it should ONLY respond with my error message coded with a try...except statement.However the error message seems to be coming from windows 7 when it says "The disk cannot be written to becuase it is write protected. Please remove the write protection from the volume POCKET in drive F:" then it has the buttons Cancel, Try Again and Continue. If i click on Cancel or Continue then my error message comes up.Is there anyway I can suppress the "The disk cannot be written to." error message in Visual Basic 2010?

View 1 Replies

VS 2010 Suppress Empty New Row At End Of Dgv?

Oct 15, 2011

The data source is an Access 2003 table. I create the table in code and then populate it with 70 rows (each one empty apart from a date field). This unfortunately adds a 71st row (the placeholder for a new table row). Is there a way to stop this row appearing (I don't allow users to add rows anyway, only to edit existing ones, so this final empty row is just untidy and always empty).

Here is the code I use to create the 70 rows:

Conn.Open()
da.Fill(ds)
dsNewRow = ds.Tables(0).NewRow()

[code]....

View 5 Replies

How To Suppress Error Messages When Using Process

Feb 2, 2010

I have a small windows application that gets word documents from a source folder, prints the documents and moves the documents to a destination folder.

[Code]...

View 3 Replies

Suppress Adobe Window While Printing?

Dec 2, 2011

I am trying to print a PDF document from VB.NET program. The following code works but the Adobe blank screen comes up while printing. Is there a way to supress this window?

Dim startInfo As New ProcessStartInfo
startInfo.FileName = "Test.pdf"
startInfo.Verb = "print"

[Code]....

View 1 Replies

Suppress File-download Dialog Box?

Sep 11, 2008

I am using webbrowser control to navigate and download file.what i am doing is when i click download button on my webbrowser control to download file,it give me popup to save or open file and after clicking save button it give me save as dialog box for where to save.

Now what i want to do is when i click on download button in my webbrowser control ,i want file to be downloaded in some folder in my pc (suppose in D:/temp/) without above stated two folder.the file i am trying to download is csv file.

View 2 Replies

Suppress Open File Dialog Box?

May 6, 2008

I have code that fills in a webbrowser form selecting pdf files to download. The files are then requested with:

Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click

[code].....

View 6 Replies

Suppress Private Variables In .NET Classes?

Feb 28, 2010

Does anyone know how to supress the private variables from showing in the .NET Namespace? I have a Class that looks similar to this.

[Code]...

View 5 Replies







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