AutoI Technology Curriculum Book part 131 potx

6 108 0
AutoI Technology Curriculum Book part 131 potx

Đang tải... (xem toàn văn)

Thông tin tài liệu

ệ 214 D6 ì 215 D7 ỉ 216 D8 217 D9 218 DA 219 DB ĩ 220 DC í 221 DD ị 222 DE ò 223 DF 224 E0 ỏ 225 E1 õ 226 E2 ó 227 E3 ọ 228 E4 ồ 229 E5 ổ 230 E6 ỗ 231 E7 ố 232 E8 ộ 233 E9 ờ 234 EA ở 235 EB ỡ 236 EC ớ 237 ED ợ 238 EE ù 239 EF 240 F0 ủ 241 F1 ũ 242 F2 ó 243 F3 ô 244 F4 õ 245 F5 ö 246 F6 ÷ 247 F7 ø 248 F8 ù 249 F9 ú 250 FA û 251 FB ü 252 FC ý 253 FD þ 254 FE ÿ 255 FF CLSID List For use with FileOpenDialog, FileSaveDialog, or FileSelectFolder List taken from Registry Guide for Windows at WinGuides Network Note: Not all values may work as parameters for the AutoIt functions listed above. Example: FileSelectFolder ("Choose a folder.", "::{00000000-1080-F9E5-6311- 4162E05A6BEE}", 1) Folder Value for the File___'s directory parameter Administrative Tools "::{D20EA4E1-3957-11d2-A40B-0C5020524153}" Briefcase "::{85BBD920-42A0-1069-A2E4-08002B30309D}" Control Panel "::{21EC2020-3AEA-1069-A2DD-08002b30309d}" Fonts "::{D20EA4E1-3957-11d2-A40B-0C5020524152}" History "::{FF393560-C2A7-11CF-BFF4-444553540000}" Inbox "::{00020D75-0000-0000-C000-000000000046}" Microsoft Network "::{00028B00-0000-0000-C000-000000000046}" My Computer "::{20D04FE0-3AEA-1069-A2D8-08002B30309D}" My Documents "::{450D8FBA-AD25-11D0-98A8-0800361B1103}" My Network Places "::{208D2C60-3AEA-1069-A2D7-08002B30309D}" Network Computers "::{1f4de370-d627-11d1-ba4f-00a0c91eedba}" Network Connections "::{7007ACC7-3202-11D1-AAD2-00805FC1270E}" Printers and Faxes "::{2227A280-3AEA-1069-A2DE-08002B30309D}" Programs Folder "::{7be9d83c-a729-4d97-b5a7-1b7313c39e0a}" Recycle Bin "::{645FF040-5081-101B-9F08-00AA002F954E}" Scanners and Cameras "::{E211B736-43FD-11D1-9EFB-0000F8757FCD}" Scheduled Tasks "::{D6277990-4C6A-11CF-8D87-00AA0060F5BF}" Start Menu Folder "::{48e7caab-b918-4e58-a94d-505519c795dc}" Temporary Internet Files "::{7BD29E00-76C1-11CF-9DD0-00A0C9034933}" Web Folders "::{BDEADF00-C265-11d0-BCED-00A0C90AB50F}" GUI Control Styles This page contains a list of the common and extended styles that can be used with windows, and also specific styles that can be used with controls. These styles are used in the "style" and/or "exStyle" parameters of many of the GUI functions. To use these values you must #include the file specified at the top of each section. Note: The "Value" is given just for reference, you should always use the "name" of the style in order to keep your scripts readable. Common Styles Value Description #include <WindowsConstants.au3> Default/forced for GUI creation $GUI_SS_DEFAULT_GUI see GUICreate function. $WS_BORDER 0x00800000 Creates a window that has a thin- line border. $WS_POPUP 0x80000000 Creates a pop-up window. This style cannot be used with the WS_CHILD style. $WS_CAPTION 0x00C00000 Creates a window that has a title bar (includes the WS_BORDER style) $WS_CLIPCHILDREN 0x02000000 Excludes the area occupied by child windows when drawing occurs within the parent window. This style is used when creating the parent window. $WS_CLIPSIBLINGS 0x04000000 Clips child windows relative to each other; that is, when a particular child window receives a WM_PAINT message, the WS_CLIPSIBLINGS style clips all other overlapping child windows out of the region of the child window to be updated. If WS_CLIPSIBLINGS is not specified and child windows overlap, it is possible, when drawing within the client area of a child window, to draw within the client area of a neighboring child window. $WS_DISABLED 0x08000000 Creates a window that is initially disabled. $WS_DLGFRAME 0x00400000 Creates a window that has a border of a style typically used with dialog boxes. $WS_HSCROLL 0x00100000 Creates a window that has a horizontal scroll bar. $WS_MAXIMIZE 0x01000000 Creates a window that is initially maximized. $WS_MAXIMIZEBOX 0x00010000 Creates a window that has a maximize button. Cannot be combined with the WS_EX_CONTEXTHELP style. The WS_SYSMENU style must also be specified. $WS_MINIMIZE 0x20000000 Creates a window that is initially minimized. $WS_MINIMIZEBOX 0x00020000 Creates a window that has a minimize button. Cannot be combined with the WS_EX_CONTEXTHELP style. The WS_SYSMENU style must also be specified. $WS_OVERLAPPED 0x00000000 Creates an overlapped window. An overlapped window has a title bar and a border. Same as the WS_TILED style $WS_OVERLAPPEDWINDOW 0x00CF0000 Creates an overlapped window with the WS_OVERLAPPED, WS_CAPTION, WS_SYSMENU, WS_THICKFRAME, WS_MINIMIZEBOX, and WS_MAXIMIZEBOX styles. Same as the WS_TILEDWINDOW style. $WS_POPUPWINDOW 0x80880000 Creates a pop-up window with WS_BORDER, WS_POPUP, and WS_SYSMENU styles. The WS_CAPTION and WS_POPUPWINDOW styles must be combined to make the window menu visible. $WS_SIZEBOX 0x00040000 Creates a window that has a sizing border. Same as the WS_THICKFRAME style. $WS_SYSMENU 0x00080000 Creates a window that has a window menu on its title bar. The WS_CAPTION style must also be specified. . Registry Guide for Windows at WinGuides Network Note: Not all values may work as parameters for the AutoIt functions listed above. Example: FileSelectFolder ("Choose a folder.", "::{00000000-1080-F9E5-6311- 4162E05A6BEE}",. window. $WS_CLIPSIBLINGS 0x04000000 Clips child windows relative to each other; that is, when a particular child window receives a WM_PAINT message, the WS_CLIPSIBLINGS style clips all other

Ngày đăng: 07/07/2014, 01:20

Tài liệu cùng người dùng

Tài liệu liên quan