一、在win7x64
位使用.accdb
的資料庫
在win7x64
位下使用
microsoft access jet4.0
驅動,提示未註冊,不能開啟
mdb檔案,可使用
microsoft office access ace 12.0
驅動,開啟
accdb
的資料庫,可在
offfic access2007(2010)
中新建輟為
.accdb
的資料庫。
如果系統為
win7 32
accessdatabaseengine.exe
驅動安裝檔案,直接安裝即可。 如果
win7x64
位預裝的
office2010為32
accessdatabaseengine_x64.exe
安裝檔案,然後,使用命令
cmd.exe
開啟命令視窗,在視窗中輸入:
」d:\my\accessdatabaseengine_x64.exe」 /passive,
按回車,安裝。進入登錄檔將
hkey_local_machine\software\microsoft\office\14.0\common\filespaths
下的mso.dll
項刪除。
二、水晶報表的在
c#開發中的注意事項
1、開啟解決方案中的
檔案中的內容,修改為
<
configuration
>
<
startup
uselegacyv2runtimeactivationpolicy="
true
">//
這裡為修改的內容,如不修改不能讀取資料庫
<
supportedruntime
version="
v4.0
"sku="
.netframework,version=v4.0
"/>
startup
>
2、使用
dataset
資料集建立連線,在報表中使用資料庫專家新增到製作的
rpt報表中,拖拉字段,進行布局。如果在
win7x64
位系統中不使用這個方法製表,而使用其他方式連線資料庫製表,在載入時將出現「無法載入資料庫資訊」的錯誤。 3
、儲存資訊:
try
messagebox
.show("
儲存申請資訊成功,可以開始列印!",
"提示");
return
true;
}else
public
void
printsqb
()//列印
//資料庫連線
private
void
getconnect
(string
tablename
,intfs)
mydataset
= new
dataset
();
myconn
.open
();
oledbdataadapter
mycommand
=new
oledbdataadapter
(strcom
,myconn);
mycommand
.fill
(mydataset
,"pcs");
myconn
.close
(); }
catch
} private
void
delaye
(int
iinterval)
return;
}
開發注意事項
一 編碼方面 1.ui層面的東西,盡量畫素級復現設計稿,做完之後在ie,firefox,chrome中預覽一遍,確認沒有問題。2.拿到設計稿之前,對業務需求要有所了解,拿到設計稿之後進行推演,檢查互動是否有誤,如果有誤再三確認之後再開始做。3.元件書寫方式,如果輸入的資料能保持一致,則元件裡面處理資...
C 注意事項
include using namespace std class superclass virtual superclass virtual void dosomething const protected intitsage class subclass public superclass vo...
c 注意事項
const引用.const引用是指向const物件的引用 const int ival 1024 const int refval ival 正確,引用和引用的物件都是const int ref2 ival 這是錯誤的,因為引用不是const int i 42 const int r 42 這是正確...