亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? appb.html

?? windowsAPI介紹。很詳細的
?? HTML
?? 第 1 頁 / 共 2 頁
字號:
    Const OFN_PATHMUSTEXIST = &amp;H800<br>
    Const OFN_FILEMUSTEXIST = &amp;H1000<br>
    Const OFN_CREATEPROMPT = &amp;H2000<br>
    Const OFN_SHAREAWARE = &amp;H4000<br>
    Const OFN_NODEREFERENCELINKS = &amp;H100000</code></td>
  </tr>
</table>
</center></div>

<p>The file dialog constants tell Windows 95 how to render the file dialog box. You can 
use more than one flag by adding the values, but you cannot use contradictory values (such 
as both OFN_FILEMUSTEXIST and OFN_CREATEPROMPT) that have opposite functions.<br>
</p>

<table WIDTH="95%" CELLSPACING="0" BORDER="2">
  <tr>
    <td WIDTH="20%"><code>OFN_READONLY</code></td>
    <td WIDTH="80%">If this is part of .flags after the function call, the user clicked the 
    Open As Read Only box in the Open dialog box (do a .flags AND OFN_READONLY). </td>
  </tr>
  <tr>
    <td><code>OFN_OVERWRITEPROMPT</code></td>
    <td>Prompt if a file that already exists is chosen in the Save dialog box. </td>
  </tr>
  <tr>
    <td><code>OFN_HIDEREADONLY</code></td>
    <td>Hide the read-only check box in the Open dialog box. </td>
  </tr>
  <tr>
    <td><code>OFN_NOCHANGEDIR</code></td>
    <td>Don't change the current directory to match the one chosen in the dialog box. </td>
  </tr>
  <tr>
    <td><code>OFN_SHOWHELP</code></td>
    <td>Show the Help button in the dialog box (but I don't know how to make it work yet). </td>
  </tr>
  <tr>
    <td><code>OFN_NOVALIDATE</code></td>
    <td>Don't check to see if the filename contains invalid characters. </td>
  </tr>
  <tr>
    <td><code>OFN_ALLOWMULTISELECT</code></td>
    <td>Allow the user to check multiple files in the Open dialog box. </td>
  </tr>
  <tr>
    <td><code>OFN_PATHMUSTEXIST</code></td>
    <td>Only allow the selection of existing paths. </td>
  </tr>
  <tr>
    <td><code>OFN_FILEMUSTEXIST</code></td>
    <td>Only allow the selection of existing files. </td>
  </tr>
  <tr>
    <td><code>OFN_CREATEPROMPT</code></td>
    <td>Prompt if a non-existing file is chosen. </td>
  </tr>
  <tr>
    <td><code>OFN_SHAREAWARE</code></td>
    <td>Ignore any sharing violations. </td>
  </tr>
  <tr>
    <td><code>OFN_NODEREFERENCELINKS</code></td>
    <td>Normally, if the user chooses a shortcut in the dialog box, the box returns the file 
    it points to. This option has the dialog box return the .lnk or .pif (shortcut file) 
    itself, not what it points to. </td>
  </tr>
</table>
<b>

<p>Used by:</b> <a HREF="g.html#getopenfilename">GetOpenFileName</a>, <a
HREF="g.html#getsavefilename">GetSaveFileName</a> (both used through <a
HREF="appa.html#openfilename">OPENFILENAME</a>)<br>
<a HREF="#top">返回到索引</a><a HREF="index.html" REL="Index">.</a> </p>

<hr ALIGN="center" WIDTH="85%" SIZE="5">

<p ALIGN="left"><a NAME="insertafterflags"></a></p>

<h3 ALIGN="center">Insert After Flags</h3>
<div align="center"><center>

<table WIDTH="50%">
  <tr>
    <td><code>Const HWND_BOTTOM = 1<br>
    Const HWND_NOTOPMOST = -2<br>
    Const HWND_TOP = 0<br>
    Const HWND_TOPMOST = -1</code></td>
  </tr>
</table>
</center></div>

<p>The Insert After Flags are used by SetWindowPos to determine the window's position in 
the Z-order. The Z-order basically says which windows are above or below other windows. 
These constants set the Z-order of the window to a certain value.<br>
</p>

<table WIDTH="95%" BORDER="2" CELLSPACING="0">
  <tr>
    <td WIDTH="20%"><code>HWND_BOTTOM</code></td>
    <td WIDTH="80%">Put the window at the bottom of the Z-order. </td>
  </tr>
  <tr>
    <td><code>HWND_NOTOPMOST</code></td>
    <td>Put the window below all topmost windows and above all nontopmost windows. </td>
  </tr>
  <tr>
    <td><code>HWND_TOP</code></td>
    <td>Put the window at the top of the Z-order. </td>
  </tr>
  <tr>
    <td><code>HWND_TOPMOST</code></td>
    <td>Make the window topmost (above all other windows), where it stays even while inactive. 
    </td>
  </tr>
</table>
<b>

<p>Used by:</b> <a HREF="s.html#setwindowpos">SetWindowPos</a><br>
<a HREF="#top">返回到索引</a><a HREF="index.html" REL="Index">.</a> </p>

<hr ALIGN="center" WIDTH="85%" SIZE="5">

<p ALIGN="left"><a NAME="platformidconstants"></a></p>

<h3 ALIGN="center">Platform ID Constants</h3>
<div align="center"><center>

<table WIDTH="50%">
  <tr>
    <td><code>Const VER_PLATFORM_WIN32s = 0<br>
    Const VER_PLATFORM_WIN32_WINDOWS = 1<br>
    Const VER_PLATFORM_WIN32_NT = 2</code></td>
  </tr>
</table>
</center></div>

<p>The platform ID constants identify which version of Windows is running. One of these 
three values is returned in the <code>dwPlatformID</code> member of the OSVERSIONINFO 
variable using the GetVersionEx function. Obviously, exactly one of these values will be 
returned, and there's nothing I've found yet to set with one of these values.<br>
</p>

<table WIDTH="95%" CELLSPACING="0" BORDER="2">
  <tr>
    <td WIDTH="20%"><code>VER_PLATFORM_WIN32s</code></td>
    <td WIDTH="80%">Windows 3.x is running, using the Win32s pseudo-32-bit enhancements. </td>
  </tr>
  <tr>
    <td><code>VER_PLATFORM_WIN32_WINDOWS</code></td>
    <td>Windows 95 is running. </td>
  </tr>
  <tr>
    <td><code>VER_PLATFORM_WIN32_NT</code></td>
    <td>Windows NT is running. </td>
  </tr>
</table>
<b>

<p>Used by:</b> <a HREF="g.html#getversionex">GetVersionEx</a> (used through <a
HREF="appa.html#osversioninfo">OSVERSIONINFO</a>)<br>
<a HREF="#top">返回到索引</a><a HREF="index.html" REL="Index">.</a> </p>

<hr ALIGN="center" WIDTH="85%" SIZE="5">

<p ALIGN="left"><a NAME="setwindowposflags"></a></p>

<h3 ALIGN="center">SetWindowPos Flags</h3>
<div align="center"><center>

<table WIDTH="50%">
  <tr>
    <td><code>Const SWP_FRAMECHANGED = &amp;H20<br>
    Const SWP_DRAWFRAME = SWP_FRAMECHANGED<br>
    Const SWP_HIDEWINDOW = &amp;H80<br>
    Const SWP_NOACTIVATE = &amp;H10<br>
    Const SWP_NOCOPYBITS = &amp;H100<br>
    Const SWP_NOMOVE = &amp;H2<br>
    Const SWP_NOSIZE = &amp;H1<br>
    Const SWP_NOREDRAW = &amp;H8<br>
    Const SWP_NOZORDER = &amp;H4<br>
    Const SWP_SHOWWINDOW = &amp;H40</code></td>
  </tr>
</table>
</center></div>

<p>The SetWindowPos Flags give additional information to the SetWindowPos function telling 
it how to move the window. Most of them either tell the function not to move the window in 
some way or affect the redrawing of the window. You can use as many of these as you want 
by Or-ing them together, as long as you do not try to use two opposite flags (like 
SWP_HIDEWINDOW and SWP_SHOWWINDOW). </p>

<table WIDTH="95%" BORDER="2" CELLSPACING="0">
  <tr>
    <td WIDTH="20%"><code>SWP_FRAMECHANGED<br>
    SWP_DRAWFRAME</code></td>
    <td WIDTH="80%">Redraw the window fully in its new position, including anything drawn on 
    it. </td>
  </tr>
  <tr>
    <td><code>SWP_HIDEWINDW</code></td>
    <td>Hide the window. Although it still exists, it does not appear neither on the screen 
    nor on the taskbar. </td>
  </tr>
  <tr>
    <td><code>SWP_NOACTIVATE</code></td>
    <td>Do not make the window active after moving it, unless of course it is already the 
    active window. </td>
  </tr>
  <tr>
    <td><code>SWP_NOCOPYBITS</code></td>
    <td>Do not redraw anything drawn on the window when it is moved. </td>
  </tr>
  <tr>
    <td><code>SWP_NOMOVE</code></td>
    <td>Do not move the window; i.e., ignore the <code>x</code> and <code>y</code> parameters. 
    </td>
  </tr>
  <tr>
    <td><code>SWP_NOSIZE</code></td>
    <td>Do not resize the window; i.e., ignore the <code>cx</code> and <code>cy</code> 
    parameters. </td>
  </tr>
  <tr>
    <td><code>SWP_NOREDRAW</code></td>
    <td>Do not remove the image of the window in its former position from the screen. In other 
    words, leave behind a ghost image of the window in its old position. </td>
  </tr>
  <tr>
    <td><code>SWP_NOZORDER</code></td>
    <td>Do not change the window's position in the Z-order; i.e., ignore the <code>hWndInsertAfter</code> 
    parameter. </td>
  </tr>
  <tr>
    <td><code>SWP_SHOWWINDOW</code></td>
    <td>Show the window (must have previously been hidden using <code>SWP_HIDEWINDOW</code>). </td>
  </tr>
</table>
<b>

<p>Used by:</b> <a HREF="s.html#setwindowpos">SetWindowPos</a><br>
<a HREF="#top">返回到索引</a><a HREF="index.html">.</a> </p>

<hr ALIGN="center" WIDTH="85%" SIZE="5">

<p ALIGN="left"><a NAME="soundflags"></a></p>

<h3 ALIGN="center">Sound Flags</h3>
<div align="center"><center>

<table WIDTH="50%">
  <tr>
    <td><code>Const SND_ALIAS = &amp;H10000<br>
    Const SND_ASYNC = &amp;H1<br>
    Const SND_FILENAME = &amp;H20000<br>
    Const SND_LOOP = &amp;H8<br>
    Const SND_NODEFAULT = &amp;H2<br>
    Const SND_NOSTOP = &amp;H10<br>
    Const SND_NOWAIT = &amp;H2000<br>
    Const SND_SYNC = &amp;H0</code></td>
  </tr>
</table>
</center></div>

<p>These constants tell the sndPlaySound function how to play the .wav file. You can use 
more than one of them by simply adding together the ones you want to use. To use none of 
them, use 0 as the value.<br>
</p>

<table WIDTH="95%" CELLSPACING="0" BORDER="2">
  <tr>
    <td WIDTH="20%"><code>SND_ALIAS</code></td>
    <td>Play the name of a Windows sound (such as SystemStart, Asterisk, etc.) </td>
  </tr>
  <tr>
    <td><code>SND_ASYNC</code></td>
    <td>Continue program execution immediately after starting to play the sound. </td>
  </tr>
  <tr>
    <td><code>SND_FILENAME</code></td>
    <td>Play the specified filename. </td>
  </tr>
  <tr>
    <td><code>SND_NODEFAULT</code></td>
    <td>Return 0 and remain silent if the .wav file is not found. </td>
  </tr>
  <tr>
    <td><code>SND_NOSTOP</code></td>
    <td>Don't stop any currently playing sounds. </td>
  </tr>
  <tr>
    <td><code>SND_NOWAIT</code></td>
    <td>Don't wait if the sound driver is busy. </td>
  </tr>
  <tr>
    <td><code>SND_SYNC</code></td>
    <td>Wait until the sound is finished playing before continuing execution. </td>
  </tr>
</table>
<b>

<p>Used by:</b> <a HREF="s.html#sndplaysound">sndPlaySound</a><br>
<a HREF="#top">返回到索引</a><a HREF="index.html" REL="Index">.</a> </p>

<hr ALIGN="center" WIDTH="85%" SIZE="5">

<p ALIGN="left"> </p>
</body>
</html>

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久综合色鬼综合色| 国产精品久久久久久一区二区三区| 国产精品99久久久久久有的能看| 亚洲欧美日韩成人高清在线一区| 日韩欧美一区二区久久婷婷| 日本高清成人免费播放| 国产九九视频一区二区三区| 日韩精品每日更新| 亚洲欧美激情视频在线观看一区二区三区| 日韩一二在线观看| 欧美精品久久一区二区三区| 97se亚洲国产综合自在线不卡| 精品一区二区免费| 99riav久久精品riav| 国产乱码精品一区二区三区av | 亚洲国产中文字幕在线视频综合 | 国产精品美女久久久久高潮| 日韩一区二区高清| 欧美视频精品在线| 欧美综合在线视频| 一本一道久久a久久精品| 国产大片一区二区| 国产在线麻豆精品观看| 麻豆国产精品777777在线| 午夜国产精品一区| 偷拍与自拍一区| 亚洲午夜激情网站| 亚洲国产精品久久一线不卡| 亚洲乱码国产乱码精品精可以看| 亚洲国产精品成人综合| 欧美经典一区二区| 国产精品免费网站在线观看| 国产日产欧美一区| 中文无字幕一区二区三区 | 精品理论电影在线| 专区另类欧美日韩| 成人av网址在线观看| 欧美色精品在线视频| 色综合色狠狠综合色| 99精品欧美一区| 91亚洲男人天堂| 色先锋资源久久综合| 欧美午夜在线一二页| 欧美午夜精品久久久久久超碰| 欧洲国内综合视频| 欧美日本在线看| 日韩欧美一卡二卡| 久久精品男人的天堂| 欧美激情一区二区三区全黄| 中文字幕一区二区视频| 亚洲人成影院在线观看| 亚洲资源中文字幕| 午夜精品久久久| 美国十次综合导航| 国产精品91xxx| 99久久精品国产网站| 在线观看精品一区| 日韩三区在线观看| 国产精品三级在线观看| 亚洲另类在线视频| 天天av天天翘天天综合网| 欧美精三区欧美精三区| 久久久久国产精品厨房| 亚洲与欧洲av电影| 偷窥少妇高潮呻吟av久久免费| 久久se精品一区二区| 精品亚洲porn| jlzzjlzz国产精品久久| 欧美熟乱第一页| 26uuu国产在线精品一区二区| 中文一区二区在线观看| 一二三四区精品视频| 免费看日韩精品| 成人av网站在线| 欧美人与z0zoxxxx视频| 奇米影视在线99精品| 成人性视频免费网站| 欧美日韩综合色| 久久精品亚洲麻豆av一区二区 | 99久久久精品| 日韩一区二区精品在线观看| 中文字幕亚洲视频| 日本欧美大码aⅴ在线播放| 成人激情文学综合网| 正在播放亚洲一区| 蜜桃av一区二区| 国产米奇在线777精品观看| 不卡的电视剧免费网站有什么| 免费在线观看精品| 波多野结衣精品在线| 欧美精品tushy高清| 国产女同性恋一区二区| 亚洲第一久久影院| 99精品一区二区三区| 日韩欧美久久久| 亚洲一区免费在线观看| 国产精品亚洲一区二区三区妖精| 91福利资源站| 国产女人aaa级久久久级| 日韩成人午夜精品| 在线看国产一区二区| 国产精品无遮挡| 奇米影视在线99精品| 欧美中文字幕一区二区三区| 中文字幕第一区二区| 久久99精品久久久| 欧美人与z0zoxxxx视频| 有坂深雪av一区二区精品| 国产精品一品视频| 欧美va亚洲va香蕉在线| 亚洲午夜在线电影| 91一区二区在线观看| 久久久久国产成人精品亚洲午夜| 日韩激情在线观看| 欧美日韩国产高清一区二区三区 | 免费的成人av| 欧美日韩亚洲另类| 一区二区三区美女| 一本大道久久a久久综合| 亚洲欧洲精品一区二区精品久久久| 国产一区二区三区在线观看免费| 宅男噜噜噜66一区二区66| 一二三四区精品视频| 91久久一区二区| 亚洲综合av网| 欧美揉bbbbb揉bbbbb| 亚洲综合精品自拍| 欧美综合视频在线观看| 一区二区三区四区在线| 色8久久精品久久久久久蜜| 日韩毛片视频在线看| 91丨九色丨蝌蚪富婆spa| 亚洲日本欧美天堂| 91极品美女在线| 亚洲国产精品视频| 这里只有精品视频在线观看| 日韩不卡一区二区三区| 日韩欧美中文字幕制服| 国产一区二区美女诱惑| 久久综合成人精品亚洲另类欧美 | 久久综合色综合88| 国产精品一区二区久久精品爱涩| 国产偷国产偷亚洲高清人白洁| 国产美女精品一区二区三区| 久久精品人人做人人综合 | 亚洲无线码一区二区三区| 欧美色精品在线视频| 日本不卡免费在线视频| www国产精品av| voyeur盗摄精品| 亚洲高清视频的网址| 91精品国产综合久久福利软件| 麻豆91在线观看| 欧美国产日韩一二三区| 91免费视频网址| 丝袜脚交一区二区| 久久久久久免费毛片精品| 亚洲精品在线免费播放| 岛国精品在线播放| 一区二区国产盗摄色噜噜| 欧美高清你懂得| 国产精品一区久久久久| 亚洲人成人一区二区在线观看| 欧美群妇大交群的观看方式| 韩日精品视频一区| 亚洲人午夜精品天堂一二香蕉| 在线成人小视频| 国产福利91精品| 一区二区欧美国产| 久久伊人中文字幕| 色综合久久久网| 韩国欧美国产1区| 亚洲另类在线一区| 精品国产一区a| 在线观看一区不卡| 国产一区二区剧情av在线| 亚洲另类一区二区| 精品播放一区二区| 欧美伊人久久久久久久久影院 | 天堂午夜影视日韩欧美一区二区| 26uuu久久天堂性欧美| 91色porny在线视频| 久久成人免费电影| 亚洲综合在线电影| 久久午夜色播影院免费高清| 欧美天天综合网| 成人免费高清在线| 日本午夜精品视频在线观看| 亚洲少妇屁股交4| 日韩欧美中文一区二区| 在线看国产日韩| 成人av电影在线观看| 精品一区二区在线视频| 亚洲大型综合色站| 亚洲色图欧洲色图| 久久久一区二区三区捆绑**| 8v天堂国产在线一区二区| 91社区在线播放| 成人精品国产福利| 精品综合免费视频观看|