MasteringVFP/2/6/1
出自VFP Wiki
MasteringVFP/2/6/1
的原始碼
跳轉到:
導航
,
搜尋
根據以下的原因,您並無權限去做編輯這個頁面:
你所請求執行的操作被禁止。
你可以檢視並複製本頁面的原始碼。
==== Procedure ==== 程序,我們可以將常用的指令集合到一起~這樣就不必再剪貼那麼多程式碼了~ 例如: <pre> use customers go top locate for cust_id=="A" if found() && do something endif use in customers use customers go top locate for cust_id=="B" if found() && do something endif use in customers </pre> 我們就可以化簡為: <pre> do findCustomer with "A" do findCustomer with "B" procedure findCustomer lparameters lc_id use customers go top locate for cust_id==lc_id if found() && do something endif use in customers endproc </pre> 這樣不是簡單許多嗎?? 一般來說, Procedure 是不會傳回值的,但 VFP 的 Procedure 比較特別,它可以傳回值也可以不傳回值.
返回到
MasteringVFP/2/6/1
。
檢視
頁面
討論
原始碼
歷史
個人工具
登入/建立新帳號 選單
導航
首頁
社群入口
現時事件
近期變動
隨機頁面
使用說明
搜尋
工具箱
鏈入頁面
相關頁面修訂記錄
所有特殊頁面