Making A Project Into An Executable File?

Jun 28, 2010

I'm very new at using Visual Studio (about 3 days!). I want to create a project that I created into an executable file. The help menu states that I should go under the 'File' drop down menu and select 'Make' to convert into an .exe format. However, the 'Make' selection is not present under the 'File' drop down menu. How can I make a project into an executable file??

View 9 Replies


ADVERTISEMENT

Making An Executable File In Visual Studio 2005?

Aug 16, 2011

I have developed a windows application using visual studio 2005 (vb) . I am done with my development and want to roll this out to my colleagues.

I have created executable file (exe) when i was using vb6 but i am not sure of how to do it here in Visual studio 2005.

View 2 Replies

Deployment :: Can An Executable Program Create An Executable File

May 17, 2012

I have a program that outputs a file. I want the user to be able to just double-click the output file and launch the program, just like Word and Excel. In Word for instance, one doesn't necessarily have to open WORD then click on File--> Open and locate another Word doc. He can just go to the folder and open the Word doc. I want to implement the exact scenario in my program.

So far I have tried creating TextFile and added it to the Resources. On FormLoading, I simply I stream-read the Resouce file, but I can't write to the Resource on FormClosing, since the Resource is ReadOnly. Also, the Resource is built & compiled so I suppose you can't add anything to it at run time.How you lunch an output file without launching the Executable program that created it?

View 1 Replies

Making A Setup File For A Project?

Mar 27, 2011

I am making a project on VB.NET, after the completion of project, is it possible to install it in anyone's computer?I mean to say, the project which I have made in VB.NET 2008, can be only run through Visual Studio,

View 2 Replies

Making A Compiler - Generate An Executable ?

Jun 19, 2009

I have started a project that is like a compiler, but very simple. Basically no coding required for the user. My question is do you have to convert the vb.net code into ASM?, (which i can do if necessary). Or how do you generate an executable with vb.net? I have seen it done with such things as cryptors, if you know what those are .

View 3 Replies

Making An Exe File Of .net Project With Ms Access Database?

May 15, 2011

I have made a project(made a new data set and forms made by dragging data set entries to form ) in vb.net in which i used ms access as database and now i created a setup file for it but when i run is its giving error regarding some connection to database.?

View 3 Replies

Making A Project Which Stores Patients Name, Reason For Visit Etc In A Text File Using Filestreaming?

Jan 18, 2012

I'm using VB 2008. I'm making a project which stores patients name, reason for visit etc in a text file using filestreaming like:

Dim fs As New FileStream("H:/ICS3U Final Project/Betolli.txt", FileMode.Append, FileAccess.Write)
Dim textfile As New StreamWriter(fs)

Is there any way the doctor can literally open up the text file by a click of a button. I don't mean like : read all lines or a STREAMREADER.I want to physically be able to open the text file which is located on the computer harddrive so the doctor can read it.

View 9 Replies

Multiple Project Executable's?

Jan 17, 2010

My project will be a collection of 3 projects that have similar GUI's and call on common assemblies. I want my project to contain 3 executable files when published that will load one of the designated smaller projects. Each of the smaller projects is designed to perform a different task, yet they are all similar in terms of looks and how the user interacts with the program. The best way to picture it would be MS Office. All the office programs (excel, word etc..) are part of the same package, and look similar but they perform different tasks. You can load any of these programs by opening the relevant .exe file, which is exactly what i want to do with my application.

View 4 Replies

VB2005 Add Multiple Icons To Executable Project?

Feb 26, 2010

Is there an easy way to add more than the default icon to a project, giving the user a choice when Create Shortcut/Change Icon is used?I can find nothing recent on this anywhere.

View 1 Replies

Executable Not Requesting Elevated When Part Of Deployment Project

Sep 13, 2011

I've created an executable that's called by another app for processes that require UAC elevated privileges. If I build this project with the below manifest it requests UAC fine, if I add this projects output to my setup project it creates it without UAC?[code]....

View 1 Replies

VS 2010 Get Error When Open Finished Project / Executable

Aug 30, 2011

[code]When JIT debugging is enabled, any unhandled exception will be sent to the JIT debugger registered on the computer rather than be handled by this dialog box.

View 9 Replies

Adding References To A Stand Alone (no Project) Executable In Visual Studio

Dec 20, 2011

I am creating a visual basic executable in Visual Studio but NOT in a Project.I would like to add some references (dll).How can I do that?

View 1 Replies

Executable On Vista - Open The Executable It Goes To A "WindowsApplication1?

Jun 1, 2009

I have an executable that I was able to get working on all XP machines by registering all the .dll's associated with it.On Vista, however, I go through the exact same registration process but right when I open the executable it goes to a "WindowsApplication1 has stopped working" dialog. I registered the DLLs in the SysWOW64 folder. I also ran Dependency Walker which came up with IEFrame.dll as flagged, don't know if that is relevant though.

View 6 Replies

Making A VB 6.0 Project To Copy Files To WCE 5.0 Device?

Dec 19, 2006

i'm making a VB 6.0 project to copy files to WCE 5.0 Device. i copied a code i found in msdn but when trying to compile it send me an error: Expected: Identifier[URL]..

Private Declare Function WaitForSingleObject Lib "kernel32" ( ByVal _ hHandle As Long ByVal dwMilliseconds As Long) As Long

View 3 Replies

Making Image Array Using Project Resources

Apr 18, 2009

I need to make an array of images using references to the resources folder. The following is my code which does not work:
Dim imgPictures(8) As Image
imgPictures(0) = Image.FromFile(My.Resources.cat_1.ToString)
How do I reference the images sitting in the resources folder for this task?

View 4 Replies

VS 2010 Making Calculator (for School Project)?

Jun 30, 2011

I am making a calculator for a school project, I want to have it so it looks similar to windows calc ( with one button for each number & only one text box),My code has a few blank spots but so far it is :

Public Class calc
Private Sub Btn1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Btn1.Click
IOBox.Text = IOBox.Text + "1"
End Sub

[code].....

View 5 Replies

Aspx.net To Executable File?

Feb 17, 2009

I'm using visual studio 2008 and I'm almost done on my project. My problem now is it's possible to convert aspx.net to an executable file?

View 1 Replies

Executable File Is Always Readonly

Aug 20, 2009

I develop my application with VBNET2008 express and SQL server express 2005 but a little problem appears,my executable file is always READONLY.However,I make modifications in my code file,it stills unchangeable in the Executable File How can i do for this?

View 6 Replies

Executing Another Executable File From VB?

Sep 15, 2010

I'm trying to make a program that has command buttons, each running a different file. I have added some files so far, but I encountered a problem with a couple of them.

For example, I want to run Zuma's Revenge! right from the program, but it is not working. If I run the game from outside the program, it runs perfectly, but when I try running it from the program, it keeps saying "Zumas Revenge! - Adventure has stopped working."

What really confused me, is that the game is running normally if I run it from its folder or by using the shortcut, while from the program it isn't.I'm using Windows 7, with Visual Basic 2010 Express.

'Here's the code I'm using:

Private Sub Zumas_Revenge_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Zumas_Revenge.Click
Process.Start(My.Application.Info.DirectoryPath & "umas Revenge! - AdventureumasRevengeAdventure.exe")
End Sub

View 1 Replies

How To Create Executable File

Nov 2, 2010

show me the steps to create a executable file of my project

View 3 Replies

How To Download An Executable File

Dec 28, 2011

How do i download a executable file like andrews done here with the image:[url] and would like to do get the response data and save that into a file instead of directly downloading it.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 4 Replies

Run Executable File With Parameter?

Aug 4, 2011

i need to run a dos command with parameter and write out on text file from my win form , i am not using shell command and the code is -

[Code]...

View 1 Replies

Start An Executable File?

Jul 12, 2009

I am trying to start an executable file, example.exe. When I run this code I get the fallowing error.

Dim start As String
Dim location As String = TextBox1.Text
start= Shell(location & "example.exe", vbNormalFocus)
AppActivate(start)
Error:AppActivate(Result) --> Process '5476' was not found.

Every time I start the program I get a new Process error, like 5572 or 5252. What is the reason for this error? Also how can I error trap this so I can find out what the error really is.

View 13 Replies

Making A Project Of Library Management System In .net 2005?

Jun 22, 2010

I am a student of PGDCA. making a project of LIBRARY MANAGEMENT SYSTEM IN VB.NET 2005 VERSION.

View 4 Replies

Making A Website/project Portable - Check List?

Mar 14, 2009

I have an ASP.net 3.5 website and I am using vb.net in VWD 2008 Express, I am also using MS SQL Server 2008 Express, I used ajax tabs and a textBox characters counter control developed by [URL]..The database is attached with MS SQL Server Management Studio Express and the files are stored in the SQL default "Data" folder.

The whole project's code and forms are stored in a folder in my E drive. I need to hand the whole project to another coworker who have to finish it, please describe in steps how can i make my website portable (like i can put it all in a folder that he can carry around in his flash disk).One more thing, I already finished my side of the project, I need to ship it out to this other programmer.

Can anyone suggest something like a: Checklist or Must Do list to achieve this?PS: I have had a problem trying to move the project from one server to the other, the project seems to look for the dlls of the AJAX control and the textBox counter where i originally unzipped the folders in which they cam in, which i think was on my desktop, although when i added those controls to the Tools tab, i created a new tab, then i choose the dll from the where i unzipped the controls source code, aint that enough?

View 1 Replies

Add A Text File To A Codedom Executable?

Jan 12, 2011

Ok how do I add a text file to a codedom executable?

I don't mean adding a resource file like this ".resources"

I mean adding a textfile to the already existing resources.

View 1 Replies

Can The Code In A VB Executable File Be Viewed

Jun 21, 2010

Part of the app I am writing allows users to create an encrypted, password-protected output file that they can email safely to a central store. I can't have the users choose their own password for the encryption as the central store needs to access the contents of all the output files emailed to it. So there is one password that gets set within my vb app.I am worried that security will be compromised if the vb executable is somehow deconstructed? Is it possible to read the contents of an exe file (and thus find out the password)?

View 3 Replies

Compiler Executable File Vbc.exe Cannot Be Found?

Sep 3, 2010

I am facing the following error in my VB.NET web app:

compiler executable file vbc.exe cannot be found.

I installed .net framework again and even the IDE, but this error remains.

View 3 Replies

Creating Executable File That Can Be Used On Any Other Workstation?

Dec 16, 2009

i need some help in creating vb.net executable file that can be used on any other workstation

View 1 Replies

Execute A File (executable) Using GetManifestResourceStream?

Apr 12, 2009

I am looking for a way to execute a file (executable) using GetManifestResourceStream. Either that or load it into a Stream or Byte. edit: I've noticed that sometimes you need certain names for this to work, so here is what I currently have:

[Code]...

View 3 Replies







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