 |
CreateDesktop ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
Creates a new desktop, associates it with the current window station of the calling process, and assigns it to the calling thread. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
HDESK CreateDesktop(
LPCTSTR lpszDesktop,
LPCTSTR lpszDevice,
LPDEVMODE pDevmode,
DWORD dwFlags,
ACCESS_MASK dwDesiredAccess,
LPSECURITY_ATTRIBUTES lpsa
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER CreateDesktop IN user32;
STRING lpszDesktop,;
INTEGER lpszDevice,;
INTEGER pDevmode,;
LONG dwFlags,;
INTEGER dwDesiredAccess,;
INTEGER lpsa
|
 |
 |
 |
| Parameters: |
 |
lpszDesktop
[in] Pointer to a null-terminated string specifying the name of the desktop to be created. Desktop names are case-insensitive and may not contain backslash characters (\).
lpszDevice
Reserved; must be NULL.
pDevmode
Reserved; must be NULL.
dwFlags
[in] This parameter can be 0 or 1.
dwDesiredAccess
[in] Access to the desktop.
lpsa
[in] Pointer to a SECURITY_ATTRIBUTES structure; can be NULL. |
 |
 |
| Return value: |
 |
| If the function succeeds, the return value is a handle to the newly created desktop. |
 |
 |
| Usage: |
 |
* use random name for new desktop
cNewdesktop = "desktop_" + SUBSTR(SYS(2015), 3)
hNewDesktop = CreateDesktop(cNewdesktop,;
0,0,0, GENERIC_ALL, 0)
= SetThreadDesktop(m.hNewDesktop)
= SwitchDesktop(m.hNewDesktop)
|
 |
 |
| My comment: |
 |
If the specified desktop already exists, the function succeeds and returns a handle to the existing desktop. When you are finished using the handle, call the CloseDesktop function to close it.
See also: CloseDesktop, SwitchDesktop
|
 |
 |
| Word Index links for the CreateDesktop : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2005-09-04 16:13:15 | | Modified: | 2008-01-05 11:34:35 | Visited in last 7 days: 20 |