Search found 71 matches

by gaivans
Mon Jul 28, 2003 7:17 am
Forum: TsiLang Components Suite
Topic: Unicode support?
Replies: 2
Views: 10211

What do you mean by Unicode support? If work with Tnt Controls then the answer is no. Current TsiLang Components Suite (VCL Edition) is intended to internationalize Delphi and C++ Builder applications which are ANSI based. As an alternative you may consider using CLX instead VCL. CLX operates with w...
by gaivans
Fri Jul 25, 2003 7:42 am
Forum: TsiLang Components Suite
Topic: Strings in TFrame problem
Replies: 4
Views: 12530

The problem is that TsiLang on inline frames cannot PARTIALLY inherit translations but can either inherit ALL translations from component on the base frame or hold its own translations. If all your inline frames are identical to base frames you can set property UseInheritedData = True for those comp...
by gaivans
Thu Jul 24, 2003 6:47 am
Forum: TsiLang Components Suite
Topic: Strings in TFrame problem
Replies: 4
Views: 12530

Hello,

Do the siLang components on the inline (embedded) frames use the same strings as the siLnag component on the base form or not? Please, also tell us what are TsiLangs' properties IsInheritedOwner and UseInheritedData equal to?
by gaivans
Mon Jul 21, 2003 3:32 pm
Forum: TsiLang Components Suite
Topic: Error reading translationdata
Replies: 1
Views: 8488

Hello, What do you mean "even a small test project gives the same error"? Could you please send us such a project so that we can debug it? In principle, it is possible to transfer all strings from the one form to another. Please give us more details about your current situation and we wiil...
by gaivans
Mon Jul 14, 2003 8:57 am
Forum: VCL Scheduling Agent
Topic: Scheduling Agent 1.0.2 Released
Replies: 0
Views: 12397

Scheduling Agent 1.0.2 Released

We are glad to announce new version release of SiComponents Scheduling Agent. Some of the new features added: Version 1.0.2 * The new component TTaskPropertiesDialog is added to the library. This component allows to display the standard properties dialog for a task item. The component provides numbe...
by gaivans
Tue Jul 01, 2003 6:26 am
Forum: TsiLang Components Suite
Topic: TreeView and ListView Question!
Replies: 1
Views: 8620

Hello, There is specialized component TsiLangTLV which has all properties of standard TsiLang as well as the "ListView_TreeView_Items" property. So if your application uses List/Tree Views with persistent items use TsiLangTLV instead of TsiLang to provide translations for List/Tree items. ...
by gaivans
Mon Jun 30, 2003 6:38 am
Forum: VCL Scheduling Agent
Topic: DisplayTaskPages
Replies: 3
Views: 13066

Sorry, I meant July 1, of course.
by gaivans
Sun Jun 29, 2003 6:28 am
Forum: VCL Scheduling Agent
Topic: DisplayTaskPages
Replies: 3
Views: 13066

Hello,

Please use the "EditItem()" method of TTaskItem instead. On 1 June we release version 1.0.2 which includes a new component TTaskPropertiesDialog that supersedes the "DisplayTaskPages()" method (the component is more flexible and customizable).
by gaivans
Fri Jun 27, 2003 7:01 am
Forum: VCL Scheduling Agent
Topic: BCB 6 Demo Code?
Replies: 5
Views: 16495

Hello, Here the Borland's trick to solve this issue under BCB6 (taken from ShlObj.hpp): // If problems occur when compiling win32 structs, records, or // unions, please define NO_WIN32_LEAN_AND_MEAN to force inclusion // of Windows header files. So, open the "Project|Options...", add this ...
by gaivans
Wed Jun 25, 2003 1:25 pm
Forum: VCL Scheduling Agent
Topic: BCB 6 Demo Code?
Replies: 5
Views: 16495

Hello,

The new BCB demo project is now available for download from
http://www.sicomponents.com/soft/demo_sa_bcb.zip
This demo will be also included in the next version release of SiComoponents Scheduling Agent.
by gaivans
Mon Jun 23, 2003 6:14 am
Forum: VCL Scheduling Agent
Topic: BCB 6 Demo Code?
Replies: 5
Views: 16495

Hello,

The BCB demo is currently under construction but will be available soon.
by gaivans
Fri Jun 06, 2003 6:21 am
Forum: TsiLang Components Suite
Topic: Distribute SILEditor
Replies: 1
Views: 8832

Yes, you can freely re-distribute the SIL Editor.
by gaivans
Wed Jun 04, 2003 7:20 am
Forum: TsiLang Components Suite
Topic: Storing translation data
Replies: 1
Views: 9216

Hello, All TsiCustomLang descendants by default store translations internally in the owner's .dfm file but also have a number of methods to save/load translations to/from an extenrnal file. So, if you wish to store translations externally you can save the translation data in design-time to a .sil/.s...
by gaivans
Tue May 27, 2003 2:29 pm
Forum: TsiLang Components Suite
Topic: what is siFormStorage
Replies: 4
Views: 8641

You can use standard Win32 API function GetUserDefaultLangID. For example, something like the below code: var LangID: DWORD; begin LangID := GetUserDefaultLangID; case Byte(LangID) of LANG_ENGLISH: siLang.ActiveLanguage := 1; LANG_GERMAN: siLang.ActiveLanguage := 2; else siLang.ActiveLanguage := 1; ...
by gaivans
Tue May 27, 2003 1:44 pm
Forum: TsiLang Components Suite
Topic: what is siFormStorage
Replies: 4
Views: 8641

This is an auxilary component which is used internally in the TsiLang Component Suite to store last forms postion, size and other settings.