I WANNA CREATE INIFILE FROM WINDOW VISTA , ANYONE HAVE SOLUTION HOW CAN I CREATE AT DELPHI
TINIFile And You - Using INI Files in Delphi
Код:
http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=568&lngWId=7
Добавлено через 23 минуты
EmbeddedWB_D2009_Version_14.66.3 (D5-2009 compatible)
Embedded Web Browser is a package of components that demonstrates an easy way to implement IDocHostUIHandler and IDocHostShowUI with TWebbrowser. It includes all the needed components / procedures you will need to build a web browser or a chat client.
Including Highlight Html, XML And Full chat Client support. The package contains a demo that contain most of the procedures implementation. The EmbeddedWB is based on code by Linds Larsen. Read the credits file to know “Who did what”.
A partial list of the components in the package: EmbeddedWB. ExportFavorites. Import Favorites. Text IEParser. FavoritesMenu. FavoritesListView. FavoritesTree. HistoryMenu. HistoryListView. IEAddress ComboBox. IECache. IEDownload. IETools IEUtils. IEGuid . BrowseForFolder. IETravelLog. Intshcut. LinksBar. RichEditBrowser. SecurityManager. FileExtAssociate UrlHistory. HtmlHighLighter. XmlHighLighter. WebUpdater. IEDownloadMgr
Для просмотра ссылки Войди или Зарегистрируйся
Добавлено через 34 минуты
IDE Fix Pack 1.6
The IDE Fix Pack installs is a DLL-Expert that fixes the following RAD Studio 2007 bugs at runtime. All changes are done in memory. No file on disk is modified.
IDE does not correctly resize the editor window in docked mode when the application is restored, maximized or resized (Win64).
Sometimes the IDE has two taskbar buttons
The TDBText control does not store the Color property into the DFM file if the property is set to clWindow
Fixes TCustomActionList.Notification memory overwrite on IDE startup and shutdown
Fixes search bug with upper/lower case Umlaut
Background Parser could block the main thread
Код:
http://andy.jgknet.de/blog/?page_id=15
Добавлено через 36 минут
AsyncCalls 2.91 - Asynchronous function calls
With AsyncCalls you can execute multiple functions at the same time and synchronize them at every point in the function or method that started them. This allows you to execute time consuming code whos result is needed at a later time in a different thread. While the asynchronous function is executed the caller function can do other tasks.
The AsyncCalls unit offers a variety of function prototypes to call asynchronous functions. There are functions that can call asynchronous functions with one single parameter of the type: TObject, Integer, AnsiString, WideString, IInterface, Extended and Variant. Another function allows you to transfer a user defined value type (record) to the asynchronous function where it can be modify. And there are functions that can call asynchronous functions with a variable number of arguments. The arguments are specified in an const array of const and are automatically mapped to normal function arguments.
Inlined VCL/main thread synchronization is supported starting with version 2.0. With this you can implement the code that calls a VCL function directly in your thread method without having to use a helper method and TThread.Synchronize. You have full access to all local variables.
Код:
http://andy.jgknet.de/blog/?page_id=100