| | |
How to create Installation file in VB
Please support our Visual Basic 4 / 5 / 6 advertiser: Programming Forums - DaniWeb Sister Site
![]() |
•
•
Join Date: Feb 2008
Posts: 5
Reputation:
Solved Threads: 0
Dear Friends,
I want to create a Data Report that can allow to display the details of Different commands(Ex-Command1, Command2) in one Data Environment. These commands same variables(Name, Class, City ...and so on.). But data is different. Means I have to display the report depend upon the city name, command1 have the data where is city=Bangalore, and command2 have the data where is city=Raichur. These two commands should be display by using one Data Report give me the solution.
If you give me the solution I am very greatful to you
Vasanth
I want to create a Data Report that can allow to display the details of Different commands(Ex-Command1, Command2) in one Data Environment. These commands same variables(Name, Class, City ...and so on.). But data is different. Means I have to display the report depend upon the city name, command1 have the data where is city=Bangalore, and command2 have the data where is city=Raichur. These two commands should be display by using one Data Report give me the solution.
If you give me the solution I am very greatful to you
Vasanth
•
•
Join Date: Feb 2008
Posts: 5
Reputation:
Solved Threads: 0
•
•
•
•
Dear Friends,
I want to create a Data Report that can allow to display the details of Different commands(Ex-Command1, Command2) in one Data Environment. These commands same variables(Name, Class, City ...and so on.). But data is different. Means I have to display the report depend upon the city name, command1 have the data where is city=Bangalore, and command2 have the data where is city=Raichur. These two commands should be display by using one Data Report give me the solution.
If you give me the solution I am very greatful to you
Vasanth
I want to create a Data Report that can allow to display the details of Different commands(Ex-Command1, Command2) in one Data Environment. These commands same variables(Name, Class, City ...and so on.). But data is different. Means I have to display the report depend upon the city name, command1 have the data where is city=Bangalore, and command2 have the data where is city=Raichur. These two commands should be display by using one Data Report give me the solution.
If you give me the solution I am very greatful to you
Vasanth
use package & deployment wizard on microsoft visual studi tools.
start program -> Microsoft Visual Studio 6.0 -> Microsoft Visual Studio 6.0 tools -> Package & Deployment wizard.
start program -> Microsoft Visual Studio 6.0 -> Microsoft Visual Studio 6.0 tools -> Package & Deployment wizard.
Never tried = Never Know
So, Please do something before post your thread.
* PM Asking will be ignored *
So, Please do something before post your thread.
* PM Asking will be ignored *
follow the following steps to create the installer for ur project. but before trying this make sure that u have created the executable(.exe) for ur project. hope u know how to create that.
1.close ms vb6.0 ide
2.click start>-programs->microsoft visual studio 6.0->microsoft visual studio 6.0 tools->package and deployment wizard
3.click browse to locate ur project file(.vbp)
4.click package
5.click yes to start the recompilation process
6.in package type select standard setup package and click next
7.select the destination where u want to create the package folder for ur project.this folder will contain all the supported and main application files required to install ur apps in some other client machine.
8.click yes to create the folder if it doesn't exist and click next
9.the next list that will come will display all necessary files to build the setup.click add to insert some other files from ur project to the said list.if u any access database file,click this button,locate ur db file and click open to add the file to the list.this list will also help u to remove any unnecessary files that u donot wish to install in the target machine with apps.u can also add help files(if any) for project from this option.but do not ever try to remove the .dll,.ocx,.lib or .exe files.click next
10.if u want ur setup becomes a standalone package select single cab otherwise if u want part installer then select multiple cab.if u select the 2nd option u have mention the size of the floppy disks.then the wizard will ask u insert the floppies one after another.i will recommend u not to use this option.click next
(if u see any shared files box or dependency information box just skip that)
11.insert a title for the installer and click next
12.in the next screen adjust the menu apperance the setup will create for u.this will become the startmenu shortcuts for ur apps.
13.click next->click next
14.in the script name box u do not require to enter anything but do not erase the default text.
15.click finish to build the installer.
16.click close->click close
after the installer is created just goto the package folder and there u will find a file "setup.exe".double click that to run the installer.
hope u will grab this.
regards
Shouvik
1.close ms vb6.0 ide
2.click start>-programs->microsoft visual studio 6.0->microsoft visual studio 6.0 tools->package and deployment wizard
3.click browse to locate ur project file(.vbp)
4.click package
5.click yes to start the recompilation process
6.in package type select standard setup package and click next
7.select the destination where u want to create the package folder for ur project.this folder will contain all the supported and main application files required to install ur apps in some other client machine.
8.click yes to create the folder if it doesn't exist and click next
9.the next list that will come will display all necessary files to build the setup.click add to insert some other files from ur project to the said list.if u any access database file,click this button,locate ur db file and click open to add the file to the list.this list will also help u to remove any unnecessary files that u donot wish to install in the target machine with apps.u can also add help files(if any) for project from this option.but do not ever try to remove the .dll,.ocx,.lib or .exe files.click next
10.if u want ur setup becomes a standalone package select single cab otherwise if u want part installer then select multiple cab.if u select the 2nd option u have mention the size of the floppy disks.then the wizard will ask u insert the floppies one after another.i will recommend u not to use this option.click next
(if u see any shared files box or dependency information box just skip that)
11.insert a title for the installer and click next
12.in the next screen adjust the menu apperance the setup will create for u.this will become the startmenu shortcuts for ur apps.
13.click next->click next
14.in the script name box u do not require to enter anything but do not erase the default text.
15.click finish to build the installer.
16.click close->click close
after the installer is created just goto the package folder and there u will find a file "setup.exe".double click that to run the installer.
hope u will grab this.
regards
Shouvik
Shouvik_The_Expert_Coder
Have a problem? Don't worry just give me a call and I'll fix it for you.
Have a problem? Don't worry just give me a call and I'll fix it for you.
•
•
Join Date: Feb 2008
Posts: 5
Reputation:
Solved Threads: 0
•
•
•
•
follow the following steps to create the installer for ur project. but before trying this make sure that u have created the executable(.exe) for ur project. hope u know how to create that.
1.close ms vb6.0 ide
2.click start>-programs->microsoft visual studio 6.0->microsoft visual studio 6.0 tools->package and deployment wizard
3.click browse to locate ur project file(.vbp)
4.click package
5.click yes to start the recompilation process
6.in package type select standard setup package and click next
7.select the destination where u want to create the package folder for ur project.this folder will contain all the supported and main application files required to install ur apps in some other client machine.
8.click yes to create the folder if it doesn't exist and click next
9.the next list that will come will display all necessary files to build the setup.click add to insert some other files from ur project to the said list.if u any access database file,click this button,locate ur db file and click open to add the file to the list.this list will also help u to remove any unnecessary files that u donot wish to install in the target machine with apps.u can also add help files(if any) for project from this option.but do not ever try to remove the .dll,.ocx,.lib or .exe files.click next
10.if u want ur setup becomes a standalone package select single cab otherwise if u want part installer then select multiple cab.if u select the 2nd option u have mention the size of the floppy disks.then the wizard will ask u insert the floppies one after another.i will recommend u not to use this option.click next
(if u see any shared files box or dependency information box just skip that)
11.insert a title for the installer and click next
12.in the next screen adjust the menu apperance the setup will create for u.this will become the startmenu shortcuts for ur apps.
13.click next->click next
14.in the script name box u do not require to enter anything but do not erase the default text.
15.click finish to build the installer.
16.click close->click close
after the installer is created just goto the package folder and there u will find a file "setup.exe".double click that to run the installer.
hope u will grab this.
regards
Shouvik
Thnks for solution. But, I installed the proejct using setup.exe. Pogram is runnning OK, but reports not functioning it occurs a error.
Please give me the solution.
![]() |
Similar Threads
- How to Configure Samba on RedHat Linux (*nix Hardware Configuration)
- How to make a form in Ms-Access as EXE file? (MS Access and FileMaker Pro)
- Slipstreaming Software into Windows XP Installation (Windows NT / 2000 / XP)
- Apache2.2 and php5.1.4 installation... pls help (PHP)
- Using Turbo debugger (C)
- How to create an instlallation file in VB.net?? (VB.NET)
- Unattended Installation Over The Network! (Networking Hardware Configuration)
- About;Blank Please Help, Hijack Log File (Viruses, Spyware and other Nasties)
- Hard drive inquiry (Storage)
- Third Party Software Installation (OS X)
Other Threads in the Visual Basic 4 / 5 / 6 Forum
- Previous Thread: How do I validate a TAB event?
- Next Thread: vb6 help/chm doesn't work under VISTA(r)
| Thread Tools | Search this Thread |
* 6 429 2007 access activex add age append application basic beginner birth bmp calculator cd cells.find click client code college column component connection connectionproblemusingvb6usingoledb copy creat ctrl+f data database datareport date delete dissertations dissertationthesis dissertationtopic edit error excel excelmacro file filename form hardware header iamthwee image inboxinvb internetfiledownload keypress label listbox listview liveperson login looping machine microsoft movingranges number objectinsert open oracle password prime program prompt range-objects readfile reading record refresh remotesqlserverdatabase report retrieve save search sendbyte sites sort sql sql2008 sqlserver subroutine table tags textbox time urldownloadtofile vb vb6 vb6.0 vba visual visualbasic visualbasic6 web window windows






