Search found 2383 matches

by isiticov
Sat Dec 27, 2003 3:39 pm
Forum: TsiLang Components Suite
Topic: TsiBrowseForFolder - BrowseForComputer
Replies: 6
Views: 12389

Of course this will be included in official release.
by isiticov
Sat Dec 27, 2003 7:03 am
Forum: TsiLang Components Suite
Topic: TsiBrowseForFolder - BrowseForComputer
Replies: 6
Views: 12389

I suppose it would be helpful to make small fix in SiDialog.Pas file in order to get this to work. Just insert at line #1207 the following: if FSelectedDir = '' then FSelectedDir := lpbi.pszDisplayName; so the code will look like: .... try SelectedPIDL := SHBrowseForFolder(lpbi); if FSelectedDir = '...
by isiticov
Wed Dec 24, 2003 5:25 am
Forum: VCL Scheduling Agent
Topic: Here is where I'm using VCL Scheduling Agent
Replies: 2
Views: 13054

Url is not valid :)
by isiticov
Mon Dec 22, 2003 2:41 pm
Forum: TsiLang Components Suite
Topic: The Fonts Property contains no Data :(
Replies: 2
Views: 9409

This looks quite strange, but anyway lets try to fix the problem. Try the following: 1. Open Translation Editor by double-click on TsiLang component at design-time 2. Select in translations tree most top-level item (Translations) 3. Click Save To File and save all to SIL file. 4. Open saved SIL file...
by isiticov
Sat Dec 20, 2003 8:48 am
Forum: Resource Builder
Topic: Very Bug in Edit as text menu
Replies: 4
Views: 16000

Thank you for your report. We will fix this asap.
by isiticov
Tue Dec 16, 2003 6:55 pm
Forum: VCL Scheduling Agent
Topic: Compatible Windows version
Replies: 3
Views: 14797

Fixed, please re-download. This was due to our server crash last week. Thank you for reporting.
by isiticov
Sun Dec 14, 2003 5:32 am
Forum: VCL Scheduling Agent
Topic: How can I modify triggers in Delphi 5
Replies: 6
Views: 21240

Done
by isiticov
Sat Dec 13, 2003 4:20 pm
Forum: VCL Scheduling Agent
Topic: How can I modify triggers in Delphi 5
Replies: 6
Views: 21240

You was sent the instructions to fix this bug manually on your side in case of urgent needs and the official update with this bug fix was released at 8th December. And was available to download from our download page. Unfortunately, we had web server full crash yesterday and some sections of our web...
by isiticov
Sat Dec 13, 2003 7:07 am
Forum: General
Topic: Server crash!
Replies: 0
Views: 25494

Server crash!

Due to our web server crash temporary are not working following sections: 1. Downloading registered versions from Download page. 2. Submitting feedback on Contacts page. 3. Joining mail list at Mail List page. We're working now to fix this. Thank you for patience. In case of any urgent things you ca...
by isiticov
Mon Dec 08, 2003 7:05 am
Forum: TsiLang Components Suite
Topic: Undeclared Identifier siLang1???
Replies: 3
Views: 11267

I can suppose the following: This piece of code (where you have compilation error) is either included into some with someobject do ... statement or is not under scope of form code which conatins TsiLang component. So either check this things or you may publish part of your code and we will see what ...
by isiticov
Sat Dec 06, 2003 10:48 am
Forum: TsiLang Components Suite
Topic: TsiLangRT on unit without Form
Replies: 1
Views: 7802

I can suggest you to create some datamodule which will holds TsiLang that will contain your units translations. So when using your units in any application there also should be added this datamodule.
by isiticov
Mon Dec 01, 2003 6:34 am
Forum: Resource Builder
Topic: Very Bug in Edit as text menu
Replies: 4
Views: 16000

This bug is fixed. Please download updated version using Update Manager from Resource Builder.
by isiticov
Mon Dec 01, 2003 6:17 am
Forum: TsiLang Components Suite
Topic: Translating a form without tsilang component
Replies: 3
Views: 10336

Btw, I cas suggest you to use the following and you will be able to achieve what is needed (I hope): 1. Create TsiLang manually on the form which needs to be translated: var SiLangForFindFrm: TsiLang; ------- SiLangForFindFrm := TsiLang.Create(Form); // here Form is your external form component SiLa...
by isiticov
Sun Nov 30, 2003 1:57 pm
Forum: Resource Builder
Topic: The difference between PE Header and NE Header
Replies: 1
Views: 9726

Resource Builder is able to operate with EXE files built with PE-header (WIN32 executables). Unfortunatelly 16bit executables (with NE header) are not supported.
by isiticov
Sun Nov 30, 2003 5:26 am
Forum: TsiLang Components Suite
Topic: Translating a form without tsilang component
Replies: 3
Views: 10336

No, this is not possible to automatically translate form wihout TsiLang component on it. The only way to fo this is the way you've used, using GetText() or GetTextOrDefault() methods to retrieve strings and assign them to UI elements of such form.