Jump to content

New pages

New pages
Hide registered users | Show bots | Show redirects
(newest | oldest) View ( | older 50) (20 | 50 | 100 | 250 | 500)

1 September 2025

  • 18:0918:09, 1 September 2025 WpCnrRemoveObject (hist | edit) [1,385 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpCnrRemoveObject}} This instance method is called to remove a record from a container control window. ==Syntax== _wpCnrRemoveObject(somSelf, hwndCnr) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''hwndCnr'' (HWND) - input :Handle of the container control ('''WC_CONTAINER''') window. ==Returns== ;''rc'' (BOOL) - returns :Success indicat...")
  • 18:0718:07, 1 September 2025 WpFindUseItem (hist | edit) [2,280 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpFindUseItem}} This instance method is called to retrieve an item type from the object's in-use list. ==Syntax== _wpFindUseItem(somSelf, type, pCurrentItem) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''type'' (ULONG) - input :Specify the usage type of the item to be located. ;''pCurrentItem'' (PUSEITEM) - input :Pointer to a USEITE...")
  • 18:0718:07, 1 September 2025 WpDeleteFromObjUseList (hist | edit) [1,985 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpDeleteFromObjUseList}} This instance method is called to remove an item type from an object's in-use list. ==Syntax== _wpDeleteFromObjUseList(somSelf, pUseItem) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''pUseItem'' (PUSEITEM) - input :Pointer to a USEITEM structure. ==Returns== ;''rc'' (BOOL) - returns :Success indicator. ::TR...")
  • 18:0618:06, 1 September 2025 WpClose (hist | edit) [1,680 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpClose}} This instance method is called to close all open views of an object. ==Syntax== _wpClose(somSelf) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ==Returns== ;''rc'' (BOOL) - returns :Success indicator. ::TRUE: Successful completion. ::FALSE: Error occurred. ==Remarks== This method will cycle through the object's in-use list that was...")
  • 18:0518:05, 1 September 2025 WpAllocMem (hist | edit) [2,205 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAllocMem}} This instance method is called to allocate memory for use by an object. ==Syntax== _wpAllocMem(somSelf, cbBytes, prc) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''cbBytes'' (ULONG) - in/out :Specifies the size, in bytes, of memory required. ;''prc'' (PULONG) - in/out :Pointer to error code. ::NULL: If an error occurs, the...")
  • 18:0418:04, 1 September 2025 WpAddToObjUseList (hist | edit) [2,987 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddToObjUseList}} This instance method is called to add an item type to an object's in-use list. ==Syntax== _wpAddToObjUseList(somSelf, pUseItem) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''pUseItem'' (PUSEITEM) - input :Pointer to a USEITEM structure. ==Returns== ;''rc'' (BOOL) - returns :Success indicator. ::TRUE: Successful...")
  • 18:0318:03, 1 September 2025 WpCnrInsertObject (hist | edit) [3,749 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpCnrInsertObject}} This instance method inserts a record into a container control window. ==Syntax== _wpCnrInsertObject(somSelf, hwndCnr, pptlIcon, preccParent, pRecInsert) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''hwndCnr'' (HWND) - input :Handle of container control window. ::NULLHANDLE: A pop-up request is made on the 'whitespace' o...")
  • 17:5917:59, 1 September 2025 WpQueryConfirmations (hist | edit) [2,210 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpQueryConfirmations}} This instance method is called to determine which confirmations are set on this object. ==Syntax== _wpQueryConfirmations(somSelf) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ==Returns== ;''ulflag'' (ULONG) - returns :Confirmation flags. :NULL No confirmations set. :CONFIRM_DELETE Prompt for confirmation for all objects...")
  • 17:5817:58, 1 September 2025 WpConfirmDelete (hist | edit) [1,566 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpConfirmDelete}} This instance method is called to allow the object to prompt the user to confirm the deletion of this object. ==Syntax== _wpConfirmDelete(somSelf, fConfirmations) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''fConfirmations'' (ULONG) - input :Confirmation flags. :CONFIRM_DELETE Confirm for delete of all objects. :CONFIRM_D...")
  • 17:5717:57, 1 September 2025 WpInitData (hist | edit) [2,401 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpInitData}} This instance method is called to allow the object to initialize its instance data. ==Syntax== wpInitData(somSelf) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ==Returns== :There is no return value for this method. ==Remarks== This routine is called by the system when the object is created or when it is awakened from the dormant sta...")
  • 17:5517:55, 1 September 2025 WpUnInitData (hist | edit) [1,407 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpUnInitData}} This instance method is called to allow the object to free allocated resources. ==Syntax== wpUnInitData(somSelf) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ==Returns== :There is no return value for this method. ==Remarks== The parent method must be called after you have completed your own processing. ==Usage== This method is ge...")
  • 17:5417:54, 1 September 2025 WpDelete (hist | edit) [3,366 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpDelete}} This instance method is called to delete an object and prompt for confirmation if necessary. ==Syntax== _wpDelete(somSelf, fConfirmations) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''fConfirmations'' (ULONG) - input :Confirmation flags. :CONFIRM_DELETE Prompt for confirmation for all objects. :CONFIRM_DELETEFOLDER Prompt for co...")
  • 17:5317:53, 1 September 2025 WpFree (hist | edit) [1,508 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpFree}} This instance method is called to destroy the object, including its persistent image, and de-allocate its associated resources. ==Syntax== _wpFree(somSelf) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ==Returns== ;''rc'' (BOOL) - returns :Success indicator. ::TRUE: Successful completion. ::FALSE: Error occurred. ==Remarks== This met...")
  • 17:4217:42, 1 September 2025 WpFilterMenu (hist | edit) [4,671 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpFilterMenu}} This method is specific to Version 4, or higher, of the OS/2 operating system. This instance method filters out options from the object's pop-up menu that do not apply. ==Syntax== _wpFilterMenu(somSelf, pFlags, hwndCnr, fMultiSelect, ulMenuType, ulView, ulReserved) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''pFlags'' (FILTER...")
  • 17:4117:41, 1 September 2025 WpAddObjectWindowPage (hist | edit) [1,271 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddObjectWindowPage}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method adds the '''Standard Options''' page to the Settings notebook. ==Syntax== _wpAddObjectWindowPage(somSelf, hwndNotebook) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''hwndNotebook'' (HWND) - input :Handle of the Settin...")
  • 17:3517:35, 1 September 2025 WpQueryContent (hist | edit) [3,631 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpQueryContent}} This instance method is called to allow the folder to specify its contents. ==Syntax== _wpQueryContent(somSelf, Object, ulOption) ==Parameters== ;''somSelf'' (WPFolder *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPFolder. ;''Object'' (WPObject *) - input :Pointer to a workplace object. This field is ignored unless QC_NEXT is specified in ulOption. ;''ulOption'' ([[ULONG]...")
  • 17:3417:34, 1 September 2025 WpUnlockObject (hist | edit) [1,399 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpUnlockObject}} This instance method decrements an object's lock count. ==Syntax== _wpUnlockObject(somSelf) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ==Returns== ;''rc'' (BOOL) - returns :Success indicator. ::TRUE: Successful completion. ::FALSE: Error occurred. ==Remarks== wpUnlockObject unlocks the specified object. When an object is...")
  • 17:3317:33, 1 September 2025 WpQueryIcon (hist | edit) [1,161 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpQueryIcon}} This instance method is called to allow the object to query its current icon. ==Syntax== _wpQueryIcon(somSelf) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ==Returns== ;''hptrQryIcon'' (HPOINTER) - returns :Handle to an icon. :A return value of NULLHANDLE indicates that an error occurred. ==Usage== This method can be called at...")
  • 17:3117:31, 1 September 2025 WpQueryIconData (hist | edit) [3,043 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpQueryIconData}} This instance method is called to allow the object to query the data to be used for its current icon. ==Syntax== _wpQueryIconData(somSelf, pIconInfo) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''pIconInfo'' (PICONINFO) - output :Pointer to a buffer large enough to contain an ICONINFO data structure followed by the da...")
  • 17:2817:28, 1 September 2025 WpSetIconData (hist | edit) [1,325 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpSetIconData}} This instance method is called to allow the object to permanently set its current icon. ==Syntax== _wpSetIconData(somSelf, pIconInfo) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''pIconInfo'' (PICONINFO) - input :Pointer to an ICONINFO structure containing an icon specification. ==Returns== ;''rc'' (BOOL) - returns...")
  • 17:2717:27, 1 September 2025 WpSetIcon (hist | edit) [1,373 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpSetIcon}} This instance method is called to allow the object to set its current icon. ==Syntax== _wpSetIcon(somSelf, hptrNewIcon) ==Parameters== ;''somSelf'' (WPObject *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPObject. ;''hptrNewIcon'' (HPOINTER) - input :Pointer to the object handle. ==Returns== ;''rc'' (BOOL) - returns :Success indicator. ::TRUE: Successful completion. ::FALSE...")
  • 17:2317:23, 1 September 2025 WpAddMouseTypePage (hist | edit) [1,940 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddMouseTypePage}} This instance method is called to allow the object to add the '''Type''' page to its Settings notebook. ==Syntax== _wpAddMouseTypePage(somSelf, hwndNotebook) ==Parameters== ;''somSelf'' (WPMouse *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPMouse. ;''hwndNotebook'' (HWND) - input :Settings notebook handle. ==Returns== ;''rc'' (ULONG) - returns :Page identifier. :A re...")
  • 17:2217:22, 1 September 2025 WpAddMouseTimingPage (hist | edit) [1,956 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddMouseTimingPage}} This instance method is called to allow the object to add the '''Timing''' page to its Settings notebook. ==Syntax== _wpAddMouseTimingPage(somSelf, hwndNotebook) ==Parameters== ;''somSelf'' (WPMouse *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPMouse. ;''hwndNotebook'' (HWND) - input :Settings notebook handle. ==Returns== ;''rc'' (ULONG) - returns :Page identifier....")
  • 17:2117:21, 1 September 2025 WpAddMousePtrPage (hist | edit) [1,469 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddMousePtrPage}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method adds the Mouse '''Pointer Customization''' page to the Setting notebook. ==Syntax== _wpAddMousePtrPage(somSelf, hwndNotebook) ==Parameters== ;''somSelf'' (WPMouse *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPMouse. ;''hwndNotebook'' (HWND) - input :Handle of the Settin...")
  • 17:2017:20, 1 September 2025 WpAddLaunchPadPage1 (hist | edit) [1,313 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddLaunchPadPage1}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method is called to add the '''Toolbar''' page 1 to the Settings notebook. ==Syntax== _wpAddLaunchPadPage1(somSelf, hwndNotebook) ==Parameters== ;''somSelf'' (WPLaunchPad *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPLaunchPad. ;''hwndNotebook'' (HWND) - input :Handle to the...")
  • 17:1817:18, 1 September 2025 WpAddMouseMappingsPage (hist | edit) [1,971 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddMouseMappingsPage}} This instance method is called to allow the object to add the '''Mappings''' page to its Settings notebook. ==Syntax== _wpAddMouseMappingsPage(somSelf, hwndNotebook) ==Parameters== ;''somSelf'' (WPMouse *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPMouse. ;''hwndNotebook'' (HWND) - input :Settings notebook handle. ==Returns== ;''rc'' (ULONG) - returns :Page ident...")
  • 17:1717:17, 1 September 2025 WpAddMouseCometPage (hist | edit) [1,430 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddMouseCometPage}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method adds the '''Comet Cursor''' page to the Setting notebook. ==Syntax== _wpAddMouseCometPage(somSelf, hwndNotebook) ==Parameters== ;''somSelf'' (WPMouse *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPMouse. ;''hwndNotebook'' (HWND) - input :Handle of the Settings noteboo...")
  • 17:1617:16, 1 September 2025 WpAddLaunchPadPage2 (hist | edit) [1,303 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddLaunchPadPage2}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method is called to add the '''Toolbar''' page 2 to the Settings notebook. ==Syntax== _wpAddLaunchPadPage2(somSelf, hwndNotebook) ==Parameters== ;''somSelf'' (WPLaunchPad *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPLaunchPad. ;''hwndNotebook'' (HWND) - input :Handle to the Se...")
  • 17:1217:12, 1 September 2025 WpAddKeyboardTimingPage (hist | edit) [1,994 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddKeyboardTimingPage}} This instance method is called to allow the object to add the '''Timing''' page to its Settings notebook. ==Syntax== _wpAddKeyboardTimingPage(somSelf, hwndNotebook) ==Parameters== ;''somSelf'' (WPKeyboard *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPKeyboard. ;''hwndNotebook'' (HWND) - input :Settings notebook handle. ==Returns== ;''rc'' (ULONG) - returns :Pag...")
  • 17:0917:09, 1 September 2025 WpAddKeyboardSpecialNeedsPage (hist | edit) [2,006 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddKeyboardSpecialNeedsPage}} This instance method is called to allow the object to add the ''Special Needs'' page to its Settings notebook. ==Syntax== _wpAddKeyboardSpecialNeedsPage(somSelf, hwndNotebook); ==Parameters== ;''somSelf'' (WPKeyboard *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPKeyboard. ;''hwndNotebook'' (HWND) - input :Settings notebook handle. ==Returns== ;''rc'' (UL...")
  • 17:0817:08, 1 September 2025 WpAddKeyboardMappingsPage (hist | edit) [1,972 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddKeyboardMappingsPage}} This instance method is called to allow the object to add the ''Mappings'' page to its Settings notebook. ==Syntax== _wpAddKeyboardMappingsPage(somSelf, hwndNotebook); ==Parameters== ;''somSelf'' (WPKeyboard *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPKeyboard. ;''hwndNotebook'' (HWND) - input :Settings notebook handle. ==Returns== ;''rc'' (ULONG) - retu...")
  • 17:0617:06, 1 September 2025 WpAddFolderView3Page (hist | edit) [1,932 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddFolderView3Page}} This instance method is called to allow the object to add the ''View 3'' page to its Settings notebook. ==Syntax== _wpAddFolderView3Page(somSelf, hwndNotebook); ==Parameters== ;''somSelf'' (WPFolder *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPFolder. ;''hwndNotebook'' (HWND) - input :Settings notebook handle. ==Returns== ;''rc'' (ULONG) - returns :Page identi...")
  • 17:0317:03, 1 September 2025 WpAddFolderView2Page (hist | edit) [2,040 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddFolderView2Page}} This instance method is called to allow the object to add the ''View 2'' page to its Settings notebook. ==Syntax== _wpAddFolderView2Page(somSelf, hwndNotebook); ==Parameters== ;''somSelf'' (WPFolder *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPFolder. ;''hwndNotebook'' (HWND) - input :Settings notebook handle. ;''rc'' (ULONG) - returns :Page identifier. :0 Erro...")
  • 17:0117:01, 1 September 2025 WpAddFolderView1Page (hist | edit) [1,932 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddFolderView1Page}} This instance method is called to allow the object to add the ''View 1'' page to its Settings notebook. ==Syntax== _wpAddFolderView1Page(somSelf, hwndNotebook); ==Parameters== ;''somSelf'' (WPFolder *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPFolder. ;''hwndNotebook'' (HWND) - input :Settings notebook handle. ==Returns== ;''rc'' (ULONG) - returns :Page identi...")
  • 17:0017:00, 1 September 2025 WpAddFolderSortPage (hist | edit) [1,922 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddFolderSortPage}} This instance method is called to allow the object to add the ''Sort'' page to its Settings notebook. ==Syntax== _wpAddFolderSortPage(somSelf, hwndNotebook); ==Parameters== ;''somSelf'' (WPFolder *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPFolder. ;''hwndNotebook'' (HWND) - input :Settings notebook handle. ==Returns== ;''rc'' (ULONG) - returns :Page identifier...")
  • 16:5116:51, 1 September 2025 WpAddFolderSelfClosePage (hist | edit) [1,366 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddFolderSelfClosePage}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method adds the ''Folder Automatic Close'' page to the Settings notebook. ==Syntax== _wpAddFolderSelfClosePage(somSelf, hwndNotebook); ==Parameters== ;''somSelf'' (WPFolder *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPFolder. ;''hwndNotebook'' (HWND) - input :Handle of...")
  • 16:5016:50, 1 September 2025 WpAddFolderMenu2Page (hist | edit) [1,986 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddFolderMenu2Page}} This method is specific to Version 4, or higher, of the OS/2 operating system. This instance method adds the standard ''Menu2'' page to the Settings notebook. ==Syntax== _wpAddFolderMenu2Page(somSelf, hwndNotebook); ==Parameters== ;''somSelf'' (WPFolder *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPFolder. ;''hwndNotebook'' (HWND) - input :Settings notebook handle....")
  • 16:4916:49, 1 September 2025 WpAddFolderIncludePage (hist | edit) [2,054 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddFolderIncludePage}} This instance method is called to allow the object to add the ''Include'' page to its Settings notebook. ==Syntax== _wpAddFolderIncludePage(somSelf, hwndNotebook); ==Parameters== ;''somSelf'' (WPFolder *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPFolder. ;''hwndNotebook'' (HWND) - input :Settings notebook handle. ;''rc'' (ULONG) - returns :Page identifier. :0...")
  • 16:4816:48, 1 September 2025 WpAddFolderBackgroundPage (hist | edit) [1,971 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddFolderBackgroundPage}} This instance method is called to allow the object to add the ''Background'' page to its Settings notebook. ==Syntax== _wpAddFolderBackgroundPage(somSelf, hwndNotebook); ==Parameters== ;''somSelf'' (WPFolder *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPFolder. ;''hwndNotebook'' (HWND) - input :Settings notebook handle. ==Returns== ;''rc'' (ULONG) - retur...")
  • 16:4716:47, 1 September 2025 WpAddFirstChild (hist | edit) [1,313 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddFirstChild}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method is called to add one child to a folder. ==Syntax== _wpAddFirstChild(somSelf); ==Parameters== ;''somSelf'' (WPFolder *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPFolder. ;''Object'' (WPObject *) - returns :Pointer to the instantiated child object. ==Returns== ;''Object'' (WPO...")
  • 16:4516:45, 1 September 2025 WpAddFileTypePage (hist | edit) [1,943 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddFileTypePage}} This instance method is called to allow the object to add the ''Type'' page to its Settings notebook. ==Syntax== _wpAddFileTypePage(somSelf, hwndNotebook); ==Parameters== ;''somSelf'' (WPDataFile *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPDataFile. ;''hwndNotebook'' (HWND) - input :Settings notebook handle. ==Returns== ;''rc'' (ULONG) - returns :Page identifier...")
  • 16:4316:43, 1 September 2025 WpAddFileMenuPage (hist | edit) [1,922 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddFileMenuPage}} This instance method is called to allow the object to add the ''Menu'' page to its Settings notebook. ==Syntax== _wpAddFileMenuPage(somSelf, hwndNotebook); ==Parameters== ;''somSelf'' (WPFileSystem *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPFileSystem. ;''hwndNotebook'' (HWND) - input :Settings notebook handle. ;''rc'' (ULONG) - returns :Page identifier. :0 Erro...")
  • 16:4216:42, 1 September 2025 WpAddFile3Page (hist | edit) [2,016 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddFile3Page}} This instance method is called to allow the object to add the ''File 3'' page to its Settings notebook. ==Syntax== _wpAddFile3Page(somSelf, hwndNotebook); ==Parameters== ;''somSelf'' (WPFileSystem *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPFileSystem. ;''hwndNotebook'' (HWND) - input :Settings notebook handle. ;''rc'' (ULONG) - returns :Page identifier. :0 Error oc...")
  • 16:4116:41, 1 September 2025 WpAddFile2Page (hist | edit) [2,017 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddFile2Page}} This instance method is called to allow the object to add the ''File 2'' page to its Settings notebook. ==Syntax== _wpAddFile2Page(somSelf, hwndNotebook); ==Parameters== ;''somSelf'' (WPFileSystem *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPFileSystem. ;''hwndNotebook'' (HWND) - input :Settings notebook handle. ;''rc'' (ULONG) - returns :Page identifier. :0 Error oc...")
  • 16:4016:40, 1 September 2025 WpAddFile1Page (hist | edit) [1,908 bytes] Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpAddFile1Page}} This instance method is called to allow the object to add the ''File 1'' page to its Settings notebook. ==Syntax== _wpAddFile1Page(somSelf, hwndNotebook); ==Parameters== ;''somSelf'' (WPFileSystem *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPFileSystem. ;''hwndNotebook'' (HWND) - input :Settings notebook handle. ;''rc'' (ULONG) - returns :Page identifier. :0 Error oc...")

30 August 2025

  • 17:2317:23, 30 August 2025 Van Wolverton (hist | edit) [664 bytes] Ak120 (talk | contribs) (Created page with "Van Wolverton (* 1939) technical writer and editor ==Publications== *''Running MS-DOS'' - Microsoft Press 1984, ISBN 0-914845-07-1 *''Supercharging MS-DOS'' - Microsoft Press 1986, ISBN 0-914845-95-0 *''Supercharging MS-DOS: The Microsoft Guide to High Performance Computing for the Experienced PC User'' Second edition - Microsoft Press 1989, ISBN 1-55615-192-6 *''Van Wolverton's Guide to QBasic'' - Random House 1992, ISBN 0679739149 *Van Wolverton; Jim Meade: ''Van Wolv...")

25 August 2025

  • 03:3503:35, 25 August 2025 VPIC.SYS (hist | edit) [462 bytes] Martini (talk | contribs) (Created page with "The virtual programmable interrupt controller VPIC.SYS is a virtual device driver responsible for virtualization of hardware interrupts to virtual DOS machines. This device driver simulates interrupts to virtual DOS machines by providing a virtual interface to the 8259 Programmable Interrupt Controller (PIC). ==Versions== {|class="wikitable" !Date||Version||Size||Comments |- |2001-04-30|| -- || 9,942 bytes|| |- |}")

18 August 2025

7 August 2025

(newest | oldest) View ( | older 50) (20 | 50 | 100 | 250 | 500)