DeutschEspanolFrancaisItalianoPortuguesArabicJapaneseKoreanSimplified Chinese




Miscelleous CF Components

Home > Products > Components > Miscelleous CF Components

More than half dozen of components designed for Delphi.Net Compact Framework.

Features

QzFtpClient

QzFtpClient is a Delphi.Net component supporting List, Download and Upload (Delete and rename can be implemented easily). it uses only System namespace (No Indy) so it can be used in compact framework developement.
There is no support of ftp in dotNet framework 1.0, there are C#.Net component around but I cannot read C code well, so I wrote my own one.

QzIniFile

Native IniFile support for dotNet

QzComboBox

Combobox with dropdown support. Actually just a combobox with a textbox on it.

QzListBox

Compact framdwork does support Listbox, but it does not support OnMeasureItem and OnDrawItem, without it I cannot write my htmlListBox, so I have to write my own one.
I have to use System.Control with VScrollBar because CF do not support ScrollableControl.AutoScrollMinSize. I wrote a new eventArgs for measure/drawItem as the original one does not supported by CF as well.
The internal working is simple, when you set items (calling set_items), it call OnMeasureItem for each item, set the vScrollBar.Maximum height, then call invalidate. when OnPaint, it check and call OnDrawItem if an item need to be drawed.

QzProgressPanel

A simple progress panel with a label and progress bar.

QzClipboard

Allow you to copy text to clipboard and paste text from clipboard.

QzSuspendAvoid

Avoid your pocket pc from suspend.

QzSqlite

QzSqlite is a Delphi.net component that communicate with Sqlite3.dll.

TimeZonesUtils

TimeZoneUtils convert Iso time (used in rss...) from/to datetime

QzUtils

Used by other components.