在PB程序設計中
Function Ulong FindWindowA(Ulong classname
Function Long SetParent(Long childwin
(
handle = FindWindowsA(nul
//查找Run程序是否已經運行
If handle >
//若已經在運行就返回
Run(
//否則運行Run程序
(
Handle = FindWindowA(nul
SetParent(handle
//使Run程序窗口成為PB主程序的子窗口
若要在程序中把遠程主機的資源映射到本地驅動器
Function Long WNetAddConnectionA(String path
如下代碼可以把遠程主機Alexander上的共享文件夾My Documents映射到本地的J 盤
WnetAddConnectionA(
它的作用相當於在DOS提示符下執行
要顯示或隱藏任務欄
Function Long FindWindowEx(Long ph
String wn) Library
Function Long ShowWindow(Long hWnd
用ShowWindow來顯示或隱藏窗口
handle = FindWindowEx(
ShowWindow(handle
通過GetShortPathName函數可以把上文件名轉換為
Function Long GetShortPathNameA(String lf
buflen)
Library
參數
GetShortPathNameA(
\
//sf = Spcace(
延時函數很有用
Function Long Sleep(Long ms) Library
調用
PB沒有提供任何多媒體函數
Function Long PlaySound(String Filename
參數
編輯推薦
Java程序設計培訓視頻教程
J
[
From:http://tw.wingwit.com/Article/program/PB/201311/24635.html