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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Baldwin

    Tutorial

    as you are brandnew to VFP I wholeheartedly Welcome you to the community of Foxers. No doubt you will find the fox community worthwhile and helpful in many ways! as to your Question go step by step[idea], first, set up your development environment. I suspect that you are not using a framework...
  2. Baldwin

    How can i keep path info in INI file

    basically an INI file looks like: [Section] key=value BAsically you need two functions to write to and read from an inifile Those functions are: GetPrivateProfileString and WritePrivateProfileString Both reside in the Kernel32 WritePrivateProfileString has 4 parameters cSectionName cKeyname...
  3. Baldwin

    how can I read and write to an inifile using API calls

    basically an INI file looks like: [Section] key=value You need two functions to write to and read from an inifile Those functions are: GetPrivateProfileString and WritePrivateProfileString Both reside in the Kernel32 WritePrivateProfileString has 4 parameters cSectionName...
  4. Baldwin

    Windows Printer

    Have you tried the SetDefaultPrinter() function in the ADVAPI.DRV? Here is how it works. LOCAL lcOldPrinter as String, lcNewPrinter as String DECLARE integer SetDefaultPrinter in ADVAPI.DRV String lcOldPrinter = set("Printer",2) lcNewPrinter = getprinter()...
  5. Baldwin

    How do list the available OLE objects

    Sure, Read the registry. Under HKEY_CLASSES_ROOT you'll find a section CLSID You might find nodes there that look like HKEY_CLASSES_ROOT\CLSID\{0713E8A2-850A-101B-AFC0-4210102A8DA7} Under those nodes you might find a subnode like INPROCSERVER32 (in this case the treeview), and a node TypeLib...

Part and Inventory Search

Back
Top