如何通過字串指定的視窗名稱,獲取該視窗內的控制項

2021-05-25 00:46:58 字數 557 閱讀 9290

以下**源於 :

/* 以下**以通過測試,沒有一點問題了。

*/string ls_name

classdefinition cd

window w

ls_name = "w_main"

cd=findclassdefinition(ls_name)

if not isvalid(cd) then

messagebox("","找不到該物件的定義類圖")

return

end if

w = create using ls_name

long n,ll_count

ll_count = upperbound(w.control)

for n = 1 to ll_count

messagebox('',w.control[n].classname())

/*做你想做的事;(眾多開發語言,雖形式有所不同,但其根本是一樣的,所以抓問題之根本就可以了)

*/end for

destroy w

刪除字串中的指定字元

本題要求實現乙個刪除字串中的指定字元的簡單函式。函式介面定義 void delchar char str,char c 其中char str是傳入的字串,c是待刪除的字元。函式delchar的功能是將字串str 現的所有c字元刪除。裁判測試程式樣例 include define maxn 20 vo...

去掉字串首尾指定的字元

話不多說直接上 去掉字串頭尾指定字元 param source 需要處理的字串 param element 指定字元 return public static string trimfirstandlastchar string source,char element while begininde...

得到指定字串列表中,指定個數的字串

if exists select from dbo.sysobjects where id object id n dbo f split and xtype in n fn n if n tf drop function dbo f split go 得到字串列表指定位置的字元 可以自定義字串列表...