How To Make Visual Basic Program Install
Feb 12, 2010i need to know how to make my Visual Basic program install onto the computer. right now my program is a simple .exe file and does not require instalation.
View 3 Repliesi need to know how to make my Visual Basic program install onto the computer. right now my program is a simple .exe file and does not require instalation.
View 3 RepliesI am trying to make a console program in Visual Basic on Visual Studio 2008. I want to ask the user of the program if he wants the premium version or the standard version. If he chooses the premium version, then I want it to say premium in his "receipt" later on and if he chooses standard, then standard in the receipt.
[code]...
i'd like to make a tiny program that shows an image 2 images selected by a scrollbox that can be zoomed and pannedthere also would need to be a coordinate system added to the image so that the user can ad points of intrest (small cross apears on map)to the picture by entering the coordinates. these points of intrest should then be saved in a db file so they can be reloaded when the program is stopped and rerun.
View 6 Repliesmake program in visual basic 2008 to covert .flv to .mp3?
View 6 RepliesIm trying to make a "database" in VB 08 and i donīt have a clue how to do it. I Want that my program will be able to update itself when i want it to update Ex: My friend downloads my program and lets say 2 days later i want to update it becuse i have discovered a flaw how would i do it? Do i have to use a installer so my friend gotta install it or what?. I donīt think that its a code im looking for or im i wrong. IS it a code im looking for or what ?
View 1 RepliesI would like to install a recent version of Visual Basic in all computer rooms of the IUT.Is it possible to install "Visual Basic 2008 Express" on multiple PCs (using ghost) by activating only the application on the machine used to create the image ? After deployment, the other PC in the room will they work ?
View 8 RepliesI go to install visual basic 2008.. and it says that an error has occurred. and that .net framework 3.5 could not be installed? I've tried other programs like visual studio and visual c++ and they all do the same thing. and i've also tried directly installing the framework and it still wont work. Sorry if this is not the right place for this post but i couldnt find a tech support forum?
View 2 RepliesI have made an form in vb 2008 which uses the printform component to print my form. I can run the app on my PC as well as on my notebook. But I cannot run it on others' PC. Though PCs having Internet connection can download Visual Basic Powerpacks 1.2 from the setup, I want to install it on PCs having no internet connection.
View 1 RepliesI'm looking to make a simple install wizard to install my program (I know Visual Studio 2010 already has an installer) but anyway, I would like to make it myself, kind of line reinvent the wheel?
View 3 RepliesI have visual studio 2008 installed and was using C#. I am now trying to find Visual Basic. I can't find it. Is there a way to download it or should it be somewhere in my visual studio program? I don't want to use vbexpress, just regular VB 2008.
View 1 RepliesI have a procedure at the end of my console application that ask the user to either hit enter to end the program, or type s to perform another search. The issue I'm having is no matter what the user types in the program end. What I would like to happen is if the user types s, then the program starts over and lets the user perform another search. The program is procedural and I need to find a way to start back off at the top of the program which ask the user to type a name to search.
[Code]....
I want to make a dock in visual basic like the image i attached.
View 5 RepliesIs there anyway to make a PC Cleaner in Visual Basic? like that Cleans the Temp files in the Root drive, and etc..
View 3 RepliesIm having kind of trouble looking for this info, but i created a POS program that when i install it, it install under Local SettingsApps2.0labla
So what i want to know if how can i make my system install like any other program, "Under Program Files/POSystem/" like so
I'm wondered how to make program that not needed to install. Only click the icon and its working and resource folder too. When I'll do build program it makes program thats needed to install.
View 4 RepliesI want to know if anyone here can teach me how to make graphics in visual basic 2010. For example, you have a form where you put everything about a graphic (type, data for x, data for y), you press a button and it appears.
View 8 Repliesim trying to make picture boxes as arraybox(0)box(1)ecti want it to be an array so i can make infinite of them
View 15 RepliesI have a form in visual basic 2008 express edition and i want to be able to press a button to make the form go into fullscreen i have tried various codes but they all just remove the taskbars and i want the form to increase in size and not leave a section of the side blank i want it to sort of zoom the form size
View 10 RepliesI'm trying to make a Metro app using VS11 on Windows 8 CP using Visual Basic. the usual "Default object" setting in the settings for the application is grayed out. How exactly are you supposed to set the default form now?
View 1 RepliesI need to make VB 08 scan for a random file for example "something.txt, .exe ext." how can I make it scan for that something any were on the hard drive? And the I could declare its path in a variable correct? if I am not specific enough I still don't know every thing about VB.
View 2 Replieshow to code a function that causes a function to pause until the user either changes a radiobutton or hits the reset button or that will restart the function if one of the entered txt values or comboboxes Index have been changed and the uptade button is clicked.
View 2 Replieshow to use visual basic to make web activex control for windows CE ?
View 1 Replies[code].....
View 3 Repliesi am trying to make a auto updater built into my program.[code]not it kinda works only its telling me i have updates when its the same version!
View 6 RepliesWhen I have tried to run a program in vb 2008 I get the following error message BC32400: Class 'CLSID_CorSymWriter' could not be created: System Error &H8004015 I have tried to uninstall and re install visual studio 2008 (academic) (several times) to no avail.
View 3 RepliesAnyone know of a way to do addon's with a visual basic program? I want to create a program that has some basic functions, but to stay away from bloatware and unused functions. How would you create a main program when it is installed and then be able to add and remove features to it?
View 4 RepliesHow would I open a program within Visual Basic 2010? (Like running "Application.txt" from "C:" within a Visual Basic project.
Public Class getfrom
Dim getfrom As String
Dim saveto As String
Dim download As Boolean
[code]....
How do you remove a Reference from a Visual Basic progam?
View 3 RepliesWhat is the code to shut down my computer with visual basic?
View 9 RepliesI have a program written in VB.NET which stops a service that uses file x, modifies x, and restarts the service.
I have modified my code for testing so that it just reads in the file as a string and immediately writes it back out.
Shell("net stop " & SERVICE_NAME, , True)
Dim myReader As System.IO.StreamReader
myReader = My.Computer.FileSystem.OpenTextFileReader(x)
fileString = myReader.ReadToEnd()
[Code]....
The stopping of the service is no problem, and modifying the file is no problem, but when the service starts it stops immediately because, as best I can guess, the file is in use. Even when I try to start the service manually, it stops immediately. However, I found that I can open file x, click save without modifying anything, close the file, and start the service and everything works correctly.
If I comment out the writing part, everything works fine.
Also, the file I'm modifying has a .conf file extension. I don't know if this is relevant.