應用心得
1)mshflexgrid控制項 與 msflexgrid控制項 的異同
mshflexgrid控制項與adodc控制項繫結,msflexgrid控制項與data控制項繫結。
2)mshflexgrid控制項的應用
如果記錄集已經在程式中產生,則可以不與adodc控制項繫結,直接在mshflexgrid控制項中顯示資料,並且可以根據需要設定控制項中行的顏色,如下例:
public function datagrid_update() as boolean
on error goto datagrid_update_err
dim orarsrecordset as object
dim adorsrecordset as new adodb.recordset
dim lngdatediff as long
call ggetdata(const_generaltable_timeout_info, orarsrecordset)
if not ado_databaseopen(dskattr, 1) then
datagrid_update = false
exit function
end if
adorsrecordset.cursorlocation = aduseclient
call adorsrecordset.open(const_vehicletable_recordset_queried, _
mobjdatasource.connectionstring, , , adcmdtext)
frmshownewdata.grdsaishin.colwidth(0) = 800
frmshownewdata.grdsaishin.colwidth(1) = 2000
frmshownewdata.grdsaishin.allowuserresizing = flexresizecolumns
set frmshownewdata.grdsaishin.datasource = adorsrecordset
dim i as integer
i = 0
i = i + 1
while not adorsrecordset.eof
lngdatediff = datediff("n", adorsrecordset.fields("測位日時"), now)
if lngdatediff > orarsrecordset.fields("gen_v_num").value then
frmshownewdata.grdsaishin.row = i
dim j as integer
for j = 0 to frmshownewdata.grdsaishin.cols - 1
frmshownewdata.grdsaishin.col = j
frmshownewdata.grdsaishin.cellbackcolor = &h80ffff
next
end if
i = i + 1
adorsrecordset.movenext
wend
call ado_databaseclose
datagrid_update = true
exit function
datagrid_update_err:
call ado_databaseclose
datagrid_update = false
end function
DevExpress中DateEdit控制項漢化
在網上找到好多這方面的資料,可是我卻不知道把那些 放 歪打誤撞,終於對了,我要漢化的只有裡面的 clear和today button frmmain.designer.cs檔案中 加入一段 public class cheditlocalizer localizer return base.getl...
中控問題彙總
1 通過軟體檢查是否設定裝置啟動,要確定全部打勾 2 有時候軟體上燈亮卻無法控制,首先重啟中控 1 檢查電腦是否接在了電源箱上 2 通過拔插強電確定電腦有沒有開啟加電啟動,如果沒有請設定 1 如果ping不通,無法確認位址,可以通過搜ip軟體搜尋 2 如果搜不到通過串列埠發碼軟體恢復中控初始ip位址...
c 中的objectDataSource控制項
objectdatasource是web開發中應用最廣的資料來源,能很容易的進行資料庫切換。當然使用objectdatasource最大的優點是他支援 3層架構 objectdatasource用來將乙個類作為做為資料來源,typename屬性為資料來源類的全名,有deletemethod inse...