The ShellExecute function opens or prints a specified file. The file can be an executable file or a document file.
Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal...
The GetDiskFreeSpace function retrieves information about the specified disk, including the amount of free space on the disk.
VB4-32,5,6
Declare Function GetDiskFreeSpace Lib "kernel32" Alias "GetDiskFreeSpaceA" (ByVal lpRootPathName As String, lpSectorsPerCluster As Long...
Download API Guide from
http://www.allapi.net/agnet/apiguide.shtml
API List from
http://www.allapi.net/apilist/apilist.php
API Viewer from
http://www.allapi.net/agnet/apiviewer.shtml
You can use GetDiskFreeSpace Api function...
The GetDiskFreeSpace function retrieves information about the specified disk, including the amount of free space on the disk.
Declare Function GetDiskFreeSpace Lib "kernel32" Alias "GetDiskFreeSpaceA" (ByVal lpRootPathName As...
There are many freeware applications that will create a setup program for your project.
VB Package & Deployment Wizard
Visual Studio Installer (Download from Microsoft site)
InnoSetup (www.innosetup.com )
etc....
Try these API functions to capture Internet cache....
Private Declare Function FindFirstUrlCacheEntry Lib "wininet.dll" Alias "FindFirstUrlCacheEntryA" _
(ByVal lpszUrlSearchPattern As String, _
ByVal lpFirstCacheEntryInfo As Long, _
ByRef lpdwFirstCacheEntryInfoBufferSize...
As far as I know you can not create a setup program for your VB project through InstallShield.
You can use Vb Package & Deployment Wizard to create setup application for your project. This will create a setup.exe, an proj.cab and a setup.lst files.
you can also use Microsoft Visual Studio...
1. Add a new form2 with only one command button (else you can hide the controls on form load of main form and show only the main command button.)
2. Add a new form3 with fields User Name, Password and cmdbtn OK,Cancel.
3. Create a button(Save) in New Form3 to save these values in registry. You...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.