Search found 2387 matches

by isiticov
Fri Jan 24, 2003 7:25 pm
Forum: RegKeeper
Topic: Adding 2 or more items to Customer Order
Replies: 1
Views: 36749

Unfortunately, it is designed to use only one item per order.
by isiticov
Wed Jan 22, 2003 7:48 am
Forum: TsiLang Components Suite
Topic: Source strings problem
Replies: 3
Views: 13254

We're glad to see that you finally found the origin of problem by yourself. :-)
by isiticov
Sun Jan 19, 2003 11:58 am
Forum: RegKeeper
Topic: SMTP send error
Replies: 4
Views: 49900

The problem is that some SMTP servers don't understand RCPT TO command when there is destinator name included, i.e.: RCPT TO: Test User <test@test.com> but accpet only in the folowing form: RCPT TO: <test@test.com> But RegKeeper sends email as in first case. This will be fixed in next update release.
by isiticov
Thu Jan 16, 2003 12:16 pm
Forum: TsiLang Components Suite
Topic: Export to and import from XML
Replies: 3
Views: 11876

Will fix this in next release.
Thanks for info.
by isiticov
Wed Jan 15, 2003 9:17 pm
Forum: TsiLang Components Suite
Topic: Export to and import from XML
Replies: 3
Views: 11876

Where do you need this? In Dictionary Manager there is possible to export/import to/from XML.
by isiticov
Wed Jan 15, 2003 3:23 pm
Forum: TsiLang Components Suite
Topic: IntraWeb : how to dispatch?
Replies: 6
Views: 21117

We'll try to reproduce this situation. but also it would be helpful if you point us what kind of exception you get. :-)
by isiticov
Tue Jan 14, 2003 7:38 pm
Forum: TsiLang Components Suite
Topic: IntraWeb : how to dispatch?
Replies: 6
Views: 21117

I supose that in IntraWeb applications you won't need dispatcher or you may put it onto your IntraWeb form. But I suggest to use "per form language" settings. Just configure manually your IntraWeb form active language depending on user selection or so on. Also may be we can build a sample ...
by isiticov
Tue Jan 14, 2003 7:34 pm
Forum: TsiLang Components Suite
Topic: adding String with '&'
Replies: 1
Views: 10203

This is neither a bug and you're not "dummy" programmer. :-) The Dictionary Manager supposes that strings witn "&" could be used for same strings without "&". So it replaces "&" when finds references, this is why it adds &OK to OK. So this is a...
by isiticov
Tue Jan 14, 2003 10:26 am
Forum: TsiLang Components Suite
Topic: Installation problem
Replies: 1
Views: 10807

This bug was in installator (de-installator) used for versions older than 5.2.1.
Did you have installed trial-version older than 5.2.1?
Anyway this should never happen in future version.
by isiticov
Fri Jan 10, 2003 8:23 am
Forum: TsiLang Components Suite
Topic: Major problem with Collections when using SIB files
Replies: 6
Views: 24445

Investigating...
by isiticov
Fri Jan 10, 2003 8:22 am
Forum: TsiLang Components Suite
Topic: SIB files ignore form caption
Replies: 2
Views: 12657

There was a bug in SICOMP.PAS file which will be fixed in next release. In case you need it fixed now you may modify source as following: in SICOMP.PAS line#5221 insert the following code: if ST in [stCaptions, stHints, stFonts, stCharsets] then for J := 1 to Lst1.Count - 1 do if AnsiPos(AComp.Owner...
by isiticov
Wed Jan 08, 2003 7:22 am
Forum: TsiLang Components Suite
Topic: Major problem with Collections when using SIB files
Replies: 6
Views: 24445

Brian, There is bug in SIL Editor (I suppose) when converting to SIB files. I would suggest you now the following: 1. Open your SIB file in some HEX Editor. 2. Replace ALL strings like Columns-0+.Text to Columns[0].Text and so on for all Collections. 3. Save the file 4. Check if error gone. The orig...
by isiticov
Mon Jan 06, 2003 8:14 am
Forum: TsiLang Components Suite
Topic: Very slow execution on Windows 98
Replies: 6
Views: 24359

OK, couldn't find this method documented in the help file Igor ;-) Will check this :-) I have now replaced all my calls to LoadAllFromFile with LoadAllFromBinaryFile. When I call this method in a TsiLang component I get an exception: ".... exception class EClassNotFound with message 'Class Tsi...
by isiticov
Sun Jan 05, 2003 5:15 pm
Forum: TsiLang Components Suite
Topic: Very slow execution on Windows 98
Replies: 6
Views: 24359

You should use LoadAllFromBinaryFile() method not LoadAllFromFile() method. LoadAllFromFile() expects SIL file as input not SIB.
Hope tjhis helps.
by isiticov
Sun Jan 05, 2003 2:19 pm
Forum: TsiLang Components Suite
Topic: Very slow execution on Windows 98
Replies: 6
Views: 24359

Could you use SIB files instead of SIL? Because using SIB files is much faster than SIL.