使用說明: 編譯并安裝,在 IDE 的控件欄可以看見 VCLSKIN 包含有 TSkinData,TSkinStore和TSkinCaption 請在放置 TSkinData 控件的 FORM 上放置一個 TSkinCaption, 當(dāng)TSkinCaption 的 Active 屬性為 False 時關(guān)閉補丁,當(dāng) Active 為 True 時開啟補丁。 補丁未開啟時 VclSkin 為 DEMO 版, 補丁開啟時 VclSkin 業(yè)已成為 retail 版本。 補丁支持運行時動態(tài)開啟。 請注意:3.93 以后的版本補丁 active 屬性缺省為開啟。 新增 SKIN 的透明設(shè)置 SkinAlpha,可以制作全透明的 Vista 界面,包括 Menus,Dialogs,MessageBox 等等。 備注:此版本已經(jīng)可以和 TNT Unicode Controls 很好的一起工作! 如果你需要轉(zhuǎn)載本補丁,請指明出處。 maotpo@126.com QQ: 378453102 (歡迎交流)
上傳時間: 2015-05-10
上傳用戶:lps11188
ADOM+設(shè)計篇意在測試com+的事務(wù)處理能否正確執(zhí)行。 將組件安裝后,在組件服務(wù)中該com+組件的屬性設(shè)置中將“激活”頁的“啟用對象池”選項選中,執(zhí)行客戶端程序調(diào)用上面這個方法,發(fā)現(xiàn)com+的事務(wù)機制不能正確執(zhí)行,數(shù)據(jù)會寫入數(shù)據(jù)庫中。如果不選中“啟用對象池”,則一切正常,數(shù)據(jù)并不會寫到數(shù)據(jù)庫中。 說明:Translation DataModule的設(shè)置,事務(wù)屬性:requires a transaction,允許object pooling,pooled設(shè)為true,無論將AutoComplete設(shè)為True或False都會出現(xiàn)上述情況。 該問題最先由ytwxw (wxw) 提出,至今尚未有結(jié)論,我也發(fā)現(xiàn)類似問題。我倆探討后無法解決,特在此再開一貼。請各路com+高手幫忙解答!
上傳時間: 2015-07-20
上傳用戶:520
Turbo C - (C) Copyright 1987, 1988 by Borland International */ #define S_IREAD 0x0100 /* from SYS\STAT.H */ #define S_IWRITE 0x0080 /* from SYS\STAT.H */ #define TRUE 1 #define FALSE 0 #define MSGHEADER "MICROCALC - A Turbo C Demonstration Program" #define MSGKEYPRESS "Press any key to continue." #define MSGCOMMAND "Press / for the list of commands" #define MSGMEMORY "Memory Available:" #define MSGERROR "ERROR" 部分說明 #define MSGLOMEM "Not enough memory to allocate cell." #define MSGEMPTY "Empty" #define MSGTEXT "Text"
標簽: International Copyright Borland S_IREAD
上傳時間: 2013-12-26
上傳用戶:llandlu
class NumberListener implements ActionListener{ public void actionPerformed(ActionEvent e){ if (!append) { tf.setText("") append=true } String s=tf.getText() s+=e.getActionCommand() tf.setText(s) if (!btn[10].isEnabled()){ for(int i=10 i<=14 i++) btn[i].setEnabled(true) } }
標簽: actionPerformed NumberListener ActionListener ActionEvent
上傳時間: 2013-12-05
上傳用戶:wys0120
Procedure TSPSA: begin init-of-T { T為初始溫度} S={1,……,n} {S為初始值} termination=false while termination=false begin for i=1 to L do begin generate(S′form S) { 從當(dāng)前回路S產(chǎn)生新回路S′} Δt:=f(S′))-f(S) {f(S)為路徑總長} IF(Δt<0) OR (EXP(-Δt/T)>Random-of-[0,1]) S=S′ IF the-halt-condition-is-TRUE THEN termination=true End T_lower End End
標簽: Procedure init-of-T TSPSA begin
上傳時間: 2013-12-20
上傳用戶:shinesyh
12Mhz標準51的100KHz IIC總線主器件模擬方式驅(qū)動程序。 本驅(qū)動程序即可以在沒有Small RTOS的情況下使用。此時,要使用本驅(qū)動程序只需要配置IIC總線使用的IO口。在驅(qū)動程序的主文件iic_master.c僅包含一個文件config.h。用戶需要的是在這個文件中設(shè)置IIC總線使用的IO口SDA和SCL。如果用戶單獨使用iic_master.c,還要在config.h包含iic_master.h文件和其它必須的文件如reg51等;并定義宏TRUE、FALSE和與編譯器無關(guān)的數(shù)據(jù)類型。在使用Small RTOS的情況下,用戶只要在config.h定義SDA和SCL和包含iic_master.h并將宏IICSem定義為分配給IIC總線驅(qū)動程序的信號量的索引。 在使用IIC總線驅(qū)動程序前應(yīng)該調(diào)用函數(shù)IICInit()初始化IIC總線。單獨使用或單任務(wù)IIC總線,使用函數(shù)IICRead()對IIC總線進行讀操作,使用IICWrite()對IIC總線進行寫操作。如果有多個任務(wù)需要對IIC總線進行操作,則分別調(diào)用宏OSIICRead()和OSIICWrite()對其進行讀寫。
上傳時間: 2015-09-03
上傳用戶:gaojiao1999
The project Adventure is a simple text-based adventure game. The game, as given, involves the hero trying to find his way from a deep dark forest to home and his true love. There s very little else the player can do apart from moving from place to place. It s not really very interesting. This project can be of use beyond the given, rather boring forest adventure though. You can use it as a basis for developing your own adventure game with different, more interesting commands, areas, items, people and so on. The package ope.adventure contains classes to describe the game world.
標簽: game text-based The Adventure
上傳時間: 2014-01-15
上傳用戶:cursor
OttLib套件使用說明: 1、OttEnter控件:該控件主要實現(xiàn)在窗口中按回車鍵跳轉(zhuǎn)到下一控件的功能;該控件是非可視控件,Enable屬性設(shè)置為True時控件生效(回車跳轉(zhuǎn)到下一控件)。 2、OttDBGrid控件:該控件主要用于配合ottEdit,ottDBEdit控件進行顯示數(shù)據(jù),實際使用中無需對其進行設(shè)置,主要也就調(diào)整大小即可,顯示大小也可在ottEdit,ottDBEdit控件上進行設(shè)置,在實際使用中一個窗體中共用一個就行。 3、OttEdit控件:該控件主要用于錄入關(guān)聯(lián)字段值,(如錄入科室,真正需要的是科室的編碼,錄入的時候可能是按名稱來錄入);主要通過ADO對數(shù)據(jù)進行檢索。 4、OttDBEdit控件:該控件主要用于與數(shù)據(jù)集關(guān)聯(lián)錄入關(guān)聯(lián)字段值;
上傳時間: 2015-09-16
上傳用戶:
This book presents an insightful view of XML that places this emerging technology in the context of the ongoing Web revolution. Written for business and technical professionals, this book revals the true value of XML for distributed information systems. It explains how XML is transforming the way organizations manage data and build software systems details the opportunities the language offers for organizatoins that understand tis significance and potential impact and explains how XML and Web services reflect a fundamental shift in software construction-from monolithic applications to software based on the composition of simple parts.
標簽: insightful technology presents emerging
上傳時間: 2015-09-24
上傳用戶:思琦琦
1.left.aspx下部分實現(xiàn)了讀取RDF(RDF format feeds,是描述web資源的W3C XML格式)格式的feeds,可點擊第三條“RDF Test”進行對比。 RDF與普通XML的主要區(qū)別是它的根節(jié)點下是<items>,而不是<channel>。 2.運行時,需要根據(jù)自己的機子改變RssReader.cs中的 String connStr = @"Data Source=6998D47256954C1\SQLEXPRESS Initial Catalog=rss Integrated Security=True"
上傳時間: 2014-01-17
上傳用戶:邶刖
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1