Class wwAPI
The API class provides a number of useful utility functions that access the Windows API or other external DLL interfaces. This class also houses the wwImaging wrapper functions that talk to the wwImaging.dll.
Note that some of the functionality in this class is implemented as plain functions, rather than methods of the class. This is to avoid having to declare a class. None of the wwAPI classes actually contain any sort of state and would be better served as plain functions, but due to legacy codebase requirements they are part of the class.
Tip:
In Web Connection Process methods, wwAPI is always available via Server.oAPI.
Class Members
Member | Description | |
---|---|---|
![]() |
ActivateWindow | Activates the Window specified by Window Title or Window Handle.
o.ActivateWindow(lvTitle,lnParentHandle)
|
![]() |
CharToBin | Converts a binary 4 byte (Double Word) expression into VFP number.
CharToBin(lcBinString,llSigned)
|
![]() |
CopyImage | Allows copying an image from one file format to another. Simply specify the name of the input file and a name of the output file. Based on the extension the new image format is created. Supported…
CopyImage(lcSource,lcTarget)
|
![]() |
CreateProcess | Runs an external process using the CreateProcess API. CreateProcess has a number of advantages over using the RUN command including a much longer command line limit and the ability to understand long…
CreateProcess(lcExe,lcCommandLine,
lnShowWindow,llWaitForCompletion,
lnTimeoutMs)
|
![]() |
CreateProcessEx | Runs an external process using the `CreateProcessEx` API **including the ability to redirect output to a file** and Wait for completion. `CreateProcessEx` has a number of advantages over using the…
CreateProcessEx(lcExe, lcCommandLine,
lcStartDirectory, lnShowWindow,
llWaitForCompletion,
lcStdOutputFilename)
|
![]() |
CreateThumbnail | Creates a thumbnail image from a normal sized image by specify source and thumbnail filenames and Width and Height values.
CreateThumbnail(lcSourceFile,lcThumbnailFile,lnWidth,lnHeight)
|
![]() |
CreateShortcut | Creates a Windows Shortcut (`.lnk`) file that can be used to launch programs.
CreateShortcut(lcShortCut,lcDescription, lcTarget,lcArguments,lcStartFolder,lcIcon)
|
![]() |
GetCaptchaImage | Creates a CAPTCHA image with the specified text. CAPTCHA images are meant to use for validation of users on a Web site to protect from spamming. The image is returned as a file and you can use any…
GetCaptchaImage(lcText,lcOutputFile,lcFont,lnFontSize)
|
![]() |
GetImageInfo | This function retrieves the height and width and resolution of an image.
GetImageInfo(lcImageFile, @lnWidth, @lnHeight, @lnResolution)
|
![]() |
GetSpecialFolder | Returns a Windows Special Folder value by either a numeric value or as a special string value. You can find the numeric CSIDL codes on MSDN. Certain common string values are supported: * "Program…
GetSpecialFolder(lnFolder)
|
![]() |
GetTimeZone | Returns the Timezone offset from GMT in minutes.
GetTimeZone()
|
![]() |
GZipCompressString | Compresses a string using the GZip protocol. Note: This is a static function not a method of wwAPI
GZipCompressString(lcString,lnCompressionLevel)
|
![]() |
GZipUncompressString | Uncompresses a GZip encoded string into its original unencoded data. Note: This is a static function not a method of wwAPI
GZipUncompressString(lcCompressed)
|
![]() |
HashMD5 | Creates an MD5 Hash from your data. MD5 is a one encryption hash that is frequently used for password authentication and storage of strings. Note MD5 encryption is one way, which means you can't get…
HashMD5(tcData)
|
![]() |
InstallPrinterDriver | The function allows installing of a printer driver from the Windows default printer list. Used in Web Connection to install a PostScript driver for use with wwDistiller or wwGhostScript.
InstallPrinterDriver(lcDriverName, lcPrinterName)
|
![]() |
MapNetworkDrive | Maps a network drive based on a sharename and username and password. Shells out to command prompt using the NET USE command.
o.MapNetworkDrive(lcDrive,lcSharePath,lcUsername,lcPassword)
|
![]() |
ReadImage | Reads the contents of an area from within an image into a new file. It allows for creating cropped images. Image formats can be read and saved in gif,jpg,png,bmp,tif depending on these extensions.
ReadImage(lcSource,lcTarget,lnLeft,lnTop,lnWidth,lnHeight)
|
![]() |
ResizeImage | Allows resizing of an image to a specified size. This method performs functionality similar to `CreateThumbNail()` which optimizes Thumbnail sizes and compression levels on the fly. This function…
ResizeImage(lcSource, lcTarget, lnWidth, lnHeight, lnCompression)
|
![]() |
RotateImage | Rotates an image in a file in place updating the original file.
RotateImage(lcImage,lnRotateType)
|
![]() |
WinApi_GetStartupModuleFilename | Returns a fully qualified path for the executing Windows Process executable. Note this can be either `Vfp9.exe` or your own application like `MyApp.exe`.
WinApi_GetStartupModuleFilename()
|
![]() |
WinApi_NullString | Returns a FoxPro string from a null terminated C style string. Terminates the input string at the first CHR(0) found. Note: This is a static function not a method of wwAPI
WinApi_NullString(lcString)
|
![]() |
WinApi_SendMessage | Wrapper function around the Windows SendMessage API. Note: This is a static function not a method of wwAPI
WinApi_SendMessage(lnHwnd,lnMsg,lnWParam,lnLParam)
|
![]() |
WinApi_Sleep | Puts the current process thread to sleep for the specified number of milliseconds.
WinApi_Sleep(lnMilliseconds, llUseDoEvents)
|
![]() |
WinApi_GetEnvironmentVariable | Returns a Windows Environment Variable. Unlike `GETENV()` it can return strings larger than 255 characters (specifically the Windows path!) ```foxpro lcPath =…
WinApi_GetEnvironmentVariable(lcVar)
|
![]() |
WinApi_GetSystemErrorMsg | Returns the locale specific message text from a Win32 API error code. [Windows Error Codes](https://learn.microsoft.com/en-us/windows/win32/debug/system-error-codes--0-499-)
WinApi_GetSystemErrorMsg(lnErrorNo,lcDLL)
|
![]() |
WriteImage | This function writes an image into an existing image by overlaying it. This allows either merging of two images or if the new image has a tranparent background of overlaying.
WriteImage(lcSource,lcInsert,lnLeft,lnTop)
|
![]() |
Is64Bit | Determines whether the application is currently running under a 64 bit OS.
o.wwAPI.Is64Bit()
|
![]() |
Ping | Pings a domain and returns whether it's up and running. Optionally returns hop count and time for the ping. Note: Target site must have Ping protocol enabled in order for the target to return a Ping…
o.wwAPI.Ping(lcDomain, @lnHops, @lnTime)
|
![]() |
aProfileSections | Retrieves all sections of an INI File.
o.aProfileSections(@laSections, lcIniFile)
|
![]() |
CopyFile | Copies File. Faster than Fox Copy and handles errors internally without throwing a Fox error.
o.CopyFile(lcSource, lcTarget,nFlag)
|
![]() |
CreateGUID | Creates either a string or binary GUID value.\ Example: {9F47F480-9641-11D1-A3D0-00600889F23B}
o.CreateGUID(llBinary)
|
![]() |
DecodeDbf | Takes a string encoded with EncodeDbf() and converts it back into a physical file. If the string contains a DBF with a memo the memo is also restored.
o.DecodeDbf(lcBuffer, lcDbf)
|
![]() |
EncodeDbf | Takes a single file (DBF or otherwise) or a DBF/MEMO pair and encodes it into a string. String includes a header for verification and information about the file. Use DecodeDbf() to restore the string…
o.EncodeDbf(lcDBF, llHasMemo, lcEncodedName)
|
![]() |
EnumKey | Returns a registry value from a key name based on a numeric index. Allows enumeration of keys in a FOR loop. If key is empty end of list is reached.
o.EnumKey(tnHKey, tcSubKey, tnIndex)
|
![]() |
FromUtcTime | Returns local time from a UTC time. Optionally lets you provide a timezone offset to account for. If not provided the timezone used is the active timezone of the local machine.
o.FromUtcTime(ltTime)
|
![]() |
GetClipboardText | Gets special text like RTF or HTML from the clipboard rather than retrieving only text. **Formats:** The formats supported are based on registered special clip board content types. Some common ones…
GetClipboardText(lcFormat)
|
![]() |
GetComputerName | Returns the name of the computer as a string.
o.GetComputerName()
|
![]() |
GetDomainFromIp | Retrieves the domain name from a registered IP Address. ```foxpro DO wwapi ? GetDomainFromIP("209.216.162.15") ```
o.GetDomainFromIp(lcIpAddress)
|
![]() |
GetIpFromDomain | Retrieves an IP address for a given domain. ```foxpro DO wwapi ? GetIpFromDomain("www.west-wind.com") ```
o.GetIpFromDomain(lcDomain)
|
![]() |
GetLastError | Returns the last Windows API error code. Should be called immediately after an API function if an error occurred to retrieve the error code.
o.GetLastError()
|
![]() |
GetMonitorStatus | Returns an object with information about monitors and screen sizes of the system. The object contains the following properties: * Monitors - number of monitors attached * VirtualWidth - width of…
o.GetMonitorStatistics()
|
![]() |
GetProfileString | Read Profile String information from a given text file using Windows INI formatting conventions
o.GetProfileString(pcFileName,pcSection,pcEntry, pnBufferSize)
|
![]() |
GetSystemDir | Returns the Windows System directory.
o.GetSystemDir(llWindowsDir)
|
![]() |
GetSystemErrorMsg | Returns the Message text for a Win32API error code.
o.GetSystemErrorMsg(lnErrorNo,lcDLL)
|
![]() |
GetTempPath | Returns the Windows OS temp file path. Unlike SYS(2023) this method returns the Windows TEMP path for the current user rather than VFP's temporary file path even though these may point at the same…
o.GetTempPath()
|
![]() |
GetUserName | Returns the currently logged on user.
o.GetUserName()
|
![]() |
GetUtcTime | Returns UTC time from a local time.
o.GetUtcTime(ltTime)
|
![]() |
ImpersonateUser | Allows you to switch user context to a different user in your application by specifying username and password. You can call RevertToSelf() to revert back to the original user account.
o.ImpersonateUser(lcUsername,lcPassword)
|
![]() |
InstallPrinter | Installs a printer on the system by the printer driver's descriptive name. If the printer driver name is not specified this routine will guess based on the operating system and install a PostScript…
o.wwAPI.InstallPrinter(lcDriverName,lcPrinterName)
|
![]() |
LogonUser | Allows checking whether a username and password are valid with Windows security.
o.LogonUser(lcUsername, lcPassword, lcServer)
|
![]() |
MessageBeep | Sounds the specified System sound.
o.MessageBeep(lnSound)
|
![]() |
PlayWave | Plays a WAV file synchronously or asynchronously.
o.PlayWave(pcWaveFile,pnPlayType)
|
![]() |
ReadRegistryString | Reads a string or integer value from the registry.
o.ReadRegistryString(tnHKey, tcSubkey, tcEntry, tlInteger)
|
![]() |
RevertToSelf | This method reverts the impersonated user back to the original user that the application was started under. Useful to rever the user after having called ImpersonateUser.
o.RevertToSelf()
|
![]() |
WriteProfileString | Writes a value into an INI file.
o.WriteProfileString(pcFileName,pcSection,pcEntry,pcValue)
|
![]() |
WriteRegistryString | Writes a string value to the registry. If the value doesn't exist it's created. If the key doesn't exist it is also created, but this will only succeed if it's the last key on the hive.
o.WriteRegistryString(tnHKey, tcSubkey, tcEntry, tcValue,tlCreate)
|
Assembly: wwApi.prg
© West Wind Technologies, 2025 • Updated: 2025-03-12
Comment or report problem with topic