1.建立乙個資源檔案*.rc,類似以下內容:
#define createprocess_manifest_resource_id 1
#define rt_manifest 24
#define control_panel_resource_id 123
createprocess_manifest_resource_id rt_manifest "ednms-de.exe.manifest"
2.建立ednms-de.exe.manifest檔案,這個檔案是乙個標準的xml檔案,不在此說明這個檔案的寫法,這裡只是說明我們的資源檔案會用到這個檔案,因此這個檔案需要先建立好.
3.使用rc.exe工具編譯這個資源檔案
"c:\program files\microsoft visual studio\vb98\wizards\rc.exe" /r /fo ednms-de.res ednms-de.rc
rc.exe一般放在vb的安裝目錄下.
4.將這個資源檔案新增到專案中即可用了
如何使用資源檔案
昨天突發奇想,向寫乙個類似於msn 的自定義個性化窗體,今天在實踐的過程中,發現在實現資源檔案時就遇到了困難。在網上找了不少的資料,將怎麼新增資源檔案的很多,比如這個 就不錯,而且其中也註解了 注意 resourcemanager rm new resourcemanager res.my asse...
如何使用Resource資源檔案
為了能夠在displayattribute中重複使用同樣的名稱,將所有的顯示字串集中管理。1 displayattribute本身支援直接使用資源檔案。display resourcetype typeof resource2 name studentname resourcetype為資源檔名,表...
ant 自動生成struts資源檔案
ant 這個工具真實乙個太好用的工具了!近期在學習使用 struts 使用過程中會涉及到 struts 資源的檔案的使用,這個資源檔案又必須通過 jdk的命令 native2ascii 轉換字元編碼。想起來我經常修改資源檔案,然後每次修改都要開啟控制台,cd到資源檔案目錄,然後在執行 命令nativ...