Hi,
I have a VB6 app , name realmeteo.exe (v5.5.5), that installed work fine.
I need make it portable, and an work without installer on usb flash, and delivery flash disk at interested hotels/users, with all files, ready to work.
I have created realmeteo.exe.manifest using MMM (Make My Manifest) , an it created dep folder with ocx and dll.
How use this file to portable my .exe?
I have to recompile project with some referrals?
Please, detailed info, I'm novice in vb6.
----------------------------
.manifest file content
----------------------------
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<!-- Make My Manifest 0.10.307 -->
<assemblyIdentity name="RealMeteo.RealMeteo_5P_5_5" processorArchitecture="X86" type="win32" version="5.5.0.5" />
<description>Real Time Satellite Meteo Images from Internet</description>
<file name="dep\MSINET.ocx">
<typelib tlbid="{48E59290-9880-11CF-9754-00AA00C00908}" version="1.0" flags="control" helpdir="" />
<comClass clsid="{48E59293-9880-11CF-9754-00AA00C00908}" tlbid="{48E59290-9880-11CF-9754-00AA00C00908}" threadingModel="Apartment" progid="InetCtls.Inet.1" description="Microsoft Internet Transfer Control" />
</file>
<file name="dep\TABCTL32.ocx">
<typelib tlbid="{BDC217C8-ED16-11CD-956C-0000C04E4C0A}" version="1.1" flags="control" helpdir="" />
<comClass clsid="{BDC217C5-ED16-11CD-956C-0000C04E4C0A}" tlbid="{BDC217C8-ED16-11CD-956C-0000C04E4C0A}" threadingModel="Apartment" progid="TabDlg.SSTab.1" description="A Tabbed Dialog control that can be used to group controls on separate tabs." />
</file>
<file name="dep\COMCTL32.ocx">
<typelib tlbid="{6B7E6392-850A-101B-AFC0-4210102A8DA7}" version="1.3" flags="control" helpdir="" />
<comClass clsid="{9ED94440-E5E8-101B-B9B5-444553540000}" tlbid="{6B7E6392-850A-101B-AFC0-4210102A8DA7}" threadingModel="Apartment" progid="COMCTL.TabStrip.1" description="Microsoft TabStrip Control" />
<comClass clsid="{612A8624-0FB3-11CE-8747-524153480004}" tlbid="{6B7E6392-850A-101B-AFC0-4210102A8DA7}" threadingModel="Apartment" progid="COMCTL.Toolbar.1" description="Microsoft Toolbar Control" />
<comClass clsid="{6B7E638F-850A-101B-AFC0-4210102A8DA7}" tlbid="{6B7E6392-850A-101B-AFC0-4210102A8DA7}" threadingModel="Apartment" progid="COMCTL.SBarCtrl.1" description="Microsoft StatusBar Control" />
<comClass clsid="{0713E8D2-850A-101B-AFC0-4210102A8DA7}" tlbid="{6B7E6392-850A-101B-AFC0-4210102A8DA7}" threadingModel="Apartment" progid="COMCTL.ProgCtrl.1" description="Microsoft ProgressBar Control" />
<comClass clsid="{0713E8A2-850A-101B-AFC0-4210102A8DA7}" tlbid="{6B7E6392-850A-101B-AFC0-4210102A8DA7}" threadingModel="Apartment" progid="COMCTL.TreeCtrl.1" description="Displays a hierarchical list of Node objects, each of which consists of a label and an optional bitmap." />
<comClass clsid="{58DA8D8A-9D6A-101B-AFC0-4210102A8DA7}" tlbid="{6B7E6392-850A-101B-AFC0-4210102A8DA7}" threadingModel="Apartment" progid="COMCTL.ListViewCtrl.1" description="Displays a collection of ListItems such as files or folders." />
<comClass clsid="{0713E8C4-850A-101B-AFC0-4210102A8DA7}" tlbid="{6B7E6392-850A-101B-AFC0-4210102A8DA7}" threadingModel="Apartment" progid="MSDataListLib.RowSource.1" description="ListView Item collection" />
<comClass clsid="{58DA8D8F-9D6A-101B-AFC0-4210102A8DA7}" tlbid="{6B7E6392-850A-101B-AFC0-4210102A8DA7}" threadingModel="Apartment" progid="COMCTL.ImageListCtrl.1" description="Contains a collection of ListImage objects, each of which can be referred to by its index or key" />
<comClass clsid="{373FF7F0-EB8B-11CD-8820-08002B2F4F5A}" tlbid="{6B7E6392-850A-101B-AFC0-4210102A8DA7}" threadingModel="Apartment" progid="COMCTL.Slider.1" description="A calibrated control with a slider for setting or selecting values." />
</file>
<file name="dep\RICHTX32.ocx">
<typelib tlbid="{3B7C8863-D78F-101B-B9B5-04021C009402}" version="1.2" flags="control" helpdir="" />
<comClass clsid="{3B7C8860-D78F-101B-B9B5-04021C009402}" tlbid="{3B7C8863-D78F-101B-B9B5-04021C009402}" threadingModel="Apartment" progid="RICHTEXT.RichtextCtrl.1" description="Microsoft Rich Textbox Control 6.0 (SP4)" />
</file>
<file name="dep\COMDLG32.ocx">
<typelib tlbid="{F9043C88-F6F2-101A-A3C9-08002B2F49FB}" version="1.2" flags="control" helpdir="" />
<comClass clsid="{F9043C85-F6F2-101A-A3C9-08002B2F49FB}" tlbid="{F9043C88-F6F2-101A-A3C9-08002B2F49FB}" threadingModel="Apartment" progid="MSComDlg.CommonDialog.1" description="Microsoft Common Dialog Control 6.0 (SP6)" />
</file>
</assembly>
I have a VB6 app , name realmeteo.exe (v5.5.5), that installed work fine.
I need make it portable, and an work without installer on usb flash, and delivery flash disk at interested hotels/users, with all files, ready to work.
I have created realmeteo.exe.manifest using MMM (Make My Manifest) , an it created dep folder with ocx and dll.
How use this file to portable my .exe?
I have to recompile project with some referrals?
Please, detailed info, I'm novice in vb6.
----------------------------
.manifest file content
----------------------------
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<!-- Make My Manifest 0.10.307 -->
<assemblyIdentity name="RealMeteo.RealMeteo_5P_5_5" processorArchitecture="X86" type="win32" version="5.5.0.5" />
<description>Real Time Satellite Meteo Images from Internet</description>
<file name="dep\MSINET.ocx">
<typelib tlbid="{48E59290-9880-11CF-9754-00AA00C00908}" version="1.0" flags="control" helpdir="" />
<comClass clsid="{48E59293-9880-11CF-9754-00AA00C00908}" tlbid="{48E59290-9880-11CF-9754-00AA00C00908}" threadingModel="Apartment" progid="InetCtls.Inet.1" description="Microsoft Internet Transfer Control" />
</file>
<file name="dep\TABCTL32.ocx">
<typelib tlbid="{BDC217C8-ED16-11CD-956C-0000C04E4C0A}" version="1.1" flags="control" helpdir="" />
<comClass clsid="{BDC217C5-ED16-11CD-956C-0000C04E4C0A}" tlbid="{BDC217C8-ED16-11CD-956C-0000C04E4C0A}" threadingModel="Apartment" progid="TabDlg.SSTab.1" description="A Tabbed Dialog control that can be used to group controls on separate tabs." />
</file>
<file name="dep\COMCTL32.ocx">
<typelib tlbid="{6B7E6392-850A-101B-AFC0-4210102A8DA7}" version="1.3" flags="control" helpdir="" />
<comClass clsid="{9ED94440-E5E8-101B-B9B5-444553540000}" tlbid="{6B7E6392-850A-101B-AFC0-4210102A8DA7}" threadingModel="Apartment" progid="COMCTL.TabStrip.1" description="Microsoft TabStrip Control" />
<comClass clsid="{612A8624-0FB3-11CE-8747-524153480004}" tlbid="{6B7E6392-850A-101B-AFC0-4210102A8DA7}" threadingModel="Apartment" progid="COMCTL.Toolbar.1" description="Microsoft Toolbar Control" />
<comClass clsid="{6B7E638F-850A-101B-AFC0-4210102A8DA7}" tlbid="{6B7E6392-850A-101B-AFC0-4210102A8DA7}" threadingModel="Apartment" progid="COMCTL.SBarCtrl.1" description="Microsoft StatusBar Control" />
<comClass clsid="{0713E8D2-850A-101B-AFC0-4210102A8DA7}" tlbid="{6B7E6392-850A-101B-AFC0-4210102A8DA7}" threadingModel="Apartment" progid="COMCTL.ProgCtrl.1" description="Microsoft ProgressBar Control" />
<comClass clsid="{0713E8A2-850A-101B-AFC0-4210102A8DA7}" tlbid="{6B7E6392-850A-101B-AFC0-4210102A8DA7}" threadingModel="Apartment" progid="COMCTL.TreeCtrl.1" description="Displays a hierarchical list of Node objects, each of which consists of a label and an optional bitmap." />
<comClass clsid="{58DA8D8A-9D6A-101B-AFC0-4210102A8DA7}" tlbid="{6B7E6392-850A-101B-AFC0-4210102A8DA7}" threadingModel="Apartment" progid="COMCTL.ListViewCtrl.1" description="Displays a collection of ListItems such as files or folders." />
<comClass clsid="{0713E8C4-850A-101B-AFC0-4210102A8DA7}" tlbid="{6B7E6392-850A-101B-AFC0-4210102A8DA7}" threadingModel="Apartment" progid="MSDataListLib.RowSource.1" description="ListView Item collection" />
<comClass clsid="{58DA8D8F-9D6A-101B-AFC0-4210102A8DA7}" tlbid="{6B7E6392-850A-101B-AFC0-4210102A8DA7}" threadingModel="Apartment" progid="COMCTL.ImageListCtrl.1" description="Contains a collection of ListImage objects, each of which can be referred to by its index or key" />
<comClass clsid="{373FF7F0-EB8B-11CD-8820-08002B2F4F5A}" tlbid="{6B7E6392-850A-101B-AFC0-4210102A8DA7}" threadingModel="Apartment" progid="COMCTL.Slider.1" description="A calibrated control with a slider for setting or selecting values." />
</file>
<file name="dep\RICHTX32.ocx">
<typelib tlbid="{3B7C8863-D78F-101B-B9B5-04021C009402}" version="1.2" flags="control" helpdir="" />
<comClass clsid="{3B7C8860-D78F-101B-B9B5-04021C009402}" tlbid="{3B7C8863-D78F-101B-B9B5-04021C009402}" threadingModel="Apartment" progid="RICHTEXT.RichtextCtrl.1" description="Microsoft Rich Textbox Control 6.0 (SP4)" />
</file>
<file name="dep\COMDLG32.ocx">
<typelib tlbid="{F9043C88-F6F2-101A-A3C9-08002B2F49FB}" version="1.2" flags="control" helpdir="" />
<comClass clsid="{F9043C85-F6F2-101A-A3C9-08002B2F49FB}" tlbid="{F9043C88-F6F2-101A-A3C9-08002B2F49FB}" threadingModel="Apartment" progid="MSComDlg.CommonDialog.1" description="Microsoft Common Dialog Control 6.0 (SP6)" />
</file>
</assembly>