PB資料視窗

2021-08-03 08:54:43 字數 1164 閱讀 8068

資料視窗小結

資料視窗進行刪除資料時:

int zgxx_id=integer(sle_3.text)

prepare sqlsa

from

"delete from zgxx where id=?";

execute sqlsa using :zg_id2;

messagebox("提示","刪除完畢!")

應用場景:主要注意分號的使用不加上會報錯誤

int s,zgxx_id,zg_id2

zgxx_id=integer(sle_3.text)

s=dw_1.getrow()

zg_id2=dw_1.getitemnumber(s,"id")

st_4.text="當前資料:(現有"+string(dw_1.rowcount())+"條)"

if zgxx_id<>0

then

if messagebox("刪除","是否真要刪除工號為"+string(zgxx_id)+"的資料",question!,yesno!,2)=1

then

prepare sqlsa

from "delete from zgxx where id=?";

execute sqlsa using :zgxx_id;

messagebox("提示","刪除完畢!")

endifelse

if s>0

then

//如果有資料

//讓使用者確定是否真要刪除資料

if messagebox("刪除","是否真要刪除姓名為"+dw_1.getitemstring(s,"xm")+"資料",question!,yesno!,2)=1

then

//dw_1.deleterow(s)

prepare sqlsa

from "delete from zgxx where id=?";

execute sqlsa using :zg_id2;

messagebox("提示","刪除完畢!")

endifelse

beep(1)

messagebox("提示","請選擇要刪除的資料")

endif

endif

PB資料視窗分頁

第一步 增加乙個計算列,此計算列必須放在detail段,expression中輸入 ceiling getrow 500 這裡500還可以用全域性函式取代,這樣可以允許使用者任意設定每頁多少行。第二步 定義分組,選擇選單rows create group.按計算列欄位分組,並一定將check box...

PB資料視窗控制項之屬性

屬性 dataobject 資料來源 title 用來顯示在資料視窗的標題條 titlebar 上的乙個字串。建議該字串要有一定的含義,能夠標明資料視窗的用途或者其中的資料的類別。該屬性的預設值none。當屬性titlebar為true時,該屬性起作用。visible 是否顯示資料視窗控制項,預設為...

PB資料視窗控制項函式SetSort

setsort 功能 定義資料視窗控制項的排序條件。語法 dwcontrol.setsort format 引數 dwcontrol 資料視窗控制項名 format string 型別,其值是有效的排序條件。排序條件中可以使用 列名或列號,使用列號時,在列號前加上個 符號。如果 format 引數 ...