Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by jyotiraditya

  1. jyotiraditya

    Start external program like notepad

    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...
  2. jyotiraditya

    How to put VB Installation Setup file in one link?

    You can use Visual Studio Installer or Innosoft Installer to create a single installation exe. Jyotiraditya Rath
  3. jyotiraditya

    Get current free diskspace

    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...
  4. jyotiraditya

    WINDOWS API - SUGGESTIONS ON A BOOK

    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
  5. jyotiraditya

    Get current free diskspace

    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...
  6. jyotiraditya

    Auto Install

    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....
  7. jyotiraditya

    Integration into IE

    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...
  8. jyotiraditya

    installshield 6 for C++ work with VB?

    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...
  9. jyotiraditya

    Password for a form

    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...

Part and Inventory Search

Back
Top