Langsung ke konten utama

Postingan

Menampilkan postingan dari Oktober, 2011

About Delphi: The Width Of The Drop Down List For TComboBox

Sizing TComboBox Drop Down List Width - No Cut Off When a combo box is in dropped down state Windows draws a list box type of control to display combo box items for selection. When the length (of a string) of items exceeds the width of the combo box, the items are displayed as cut-off! Change the Default Application Icon for a Console Mode Delph For a normal GUI application you can change the application icon using Project - Options - Application - Application Settings - Icon. For console mode applications this section is disabled - and thus all console mode application have a default icon. Set Of String ...

About Delphi: Set Of String: implemented!

Set Of String in Delphi? Union, Intersection and Difference! A set is a collection of ordinal values. The values in a set have no order and it makes no sense to have a value twice (or more times) in a set. Since strings are not ordinal types you cannot have set of string declarations. Or, can you? Implementing StartsText With SubText As Pattern - When Pattern Is A Regular Expression! in regex :: For a relative file path like "abcdeffile.txt" I need to check if the file is located in the "abcdef" folder (or in any of its sub folders).... Read more Use TFile Delphi Record To Encrypt or D...

About Delphi: StartsText Regular Expression Patterned

Implementing StartsText With SubText As Pattern For a relative file path like "\abc\def\file.txt" I need to check if the file is located in the "\abc\def" folder (or in any of its sub folders). Let's call this "\abc\def" a predefined path. Note that I am not interested in the drive nor the path complexity before "\abc\def". Use TFile Delphi Record To Encrypt or Decrypt A File in Files and Folders ::A member of the Delphi Programming Forum in a post titled "RTF File encryption" is asking for some help in encrypting RTF documents. Starting with Delphi 2010,... Read more ...