Thanks, should of thought of that myself :-)
Nick
Search found 39 matches
- Thu May 29, 2008 8:05 am
- Forum: TsiLang Components Suite
- Topic: Problem with finding entry point for TSiLang_Elpack with lmd
- Replies: 2
- Views: 7706
- Mon May 26, 2008 9:59 am
- Forum: TsiLang Components Suite
- Topic: Problem with finding entry point for TSiLang_Elpack with lmd
- Replies: 2
- Views: 7706
Problem with finding entry point for TSiLang_Elpack with lmd
Have just installed version 6.2.2 of lmdElPack, on CodeGears Delphi32 2007 pro. When reloading Delphi the following error message appears: Procedure entry point @Elcbfmts@initialization$qqrv could not be located in dll lmdcore6rt_110.bpl. This is followed by another error message telling me that Tsi...
- Sun Feb 17, 2008 8:56 pm
- Forum: TsiLang Components Suite
- Topic: Problem with installing in Delphi 2007 win32
- Replies: 7
- Views: 13597
Thanks Igor, that fixed it. I discovered there was a problem with Delphi2007 environment variable $BDSCOMMONDIR which was pointing to: C:\Documents and Settings\All Users\Documents\RAD Studio\5.0 when it should be pointing to: C:\Documents and Settings\All Users\Shared Documents\RAD Studio\5.0 Once ...
- Sat Feb 16, 2008 9:21 am
- Forum: TsiLang Components Suite
- Topic: Problem with installing in Delphi 2007 win32
- Replies: 7
- Views: 13597
- Fri Feb 15, 2008 11:29 pm
- Forum: TsiLang Components Suite
- Topic: Problem with installing in Delphi 2007 win32
- Replies: 7
- Views: 13597
The reference in the TsiLang_ElPack6_D2006.dpk or the TsiLang_ElPack6_D2007.dpk? What seems to work is replacing the following line in the package TsiLang_ElPack6_D2007 requires TsiLang_D2006r replace with requires TsiLang_Delphi2007r The controls are then compiled and installed OK. My next problem ...
- Fri Feb 15, 2008 9:36 am
- Forum: TsiLang Components Suite
- Topic: Problem with installing in Delphi 2007 win32
- Replies: 7
- Views: 13597
Problem with installing in Delphi 2007 win32
I'm trying to install siComponents into Delphni 2007Win32 pro edition, but the Elpack and TNT controls packages aren't installing. However if I install TsiLang_ElPack manually, without the Delphi 2006 packages installed from the setup, then the 2007 package won't compile because it can't find the 20...
- Tue Oct 23, 2007 10:32 pm
- Forum: TsiLang Components Suite
- Topic: New Elpack version
- Replies: 2
- Views: 9107
Thanks Igor I was told by LMD that ==========Quote================== lmdel50_d7 is replaced by lmdelcore6rt_70.bpl, but note that also Shared Runtime files are used ==========UnQuote================ However they have deprecated ElUnicodeStrings and made some major changes to the way the packages are...
- Sun Oct 21, 2007 5:04 am
- Forum: TsiLang Components Suite
- Topic: New Elpack version
- Replies: 2
- Views: 9107
New Elpack version
The new Elpack version 6 is now out. Can you tell me: 1. When you will have an update for the TsiLang_ELpack components? 2. Is there a quick fix that will make the current version work? Right now the package compile halts with an error when it reaches the requires section lmdel50_d7 in the dpk file....
- Thu Jul 26, 2007 8:38 pm
- Forum: TsiLang Components Suite
- Topic: Stretching the envelope too far?
- Replies: 24
- Views: 43934
Hi Igor, I tried putting translations into text files and loading them into the dialog multiline properties using code like this: DataModule2.DlgDM.Captions.LoadFromFile('Captions.txt'); DataModule2.DlgDM.ControlTexts.LoadFromFile('Controls.txt'); DataModule2.DlgDM.Texts.LoadFromFile('Texts.txt'); D...
- Thu Jul 26, 2007 8:04 am
- Forum: TsiLang Components Suite
- Topic: Stretching the envelope too far?
- Replies: 24
- Views: 43934
- Thu Jul 26, 2007 7:22 am
- Forum: TsiLang Components Suite
- Topic: Stretching the envelope too far?
- Replies: 24
- Views: 43934
Testing the envelope
There aren't any fonts or charsets stored in the DataModule2 section of the sib file, I thought that might be the problem. My dialog is set to use ArialUnicodeMS and it starts with ANSI_CHARSET. I tried changing the charset programatically like this when the bottom button is clicked: Case DataModule...
- Wed Jul 25, 2007 10:21 pm
- Forum: TsiLang Components Suite
- Topic: Stretching the envelope too far?
- Replies: 24
- Views: 43934
Stretching the envelope
I changed the name of the datamodule back to DataModule2, but the Russian translation comes up like the garbage text in your message.
Nick
Nick
- Wed Jul 25, 2007 8:32 pm
- Forum: TsiLang Components Suite
- Topic: Stretching the envelope too far?
- Replies: 24
- Views: 43934
Stretching the envelope
How about this? unit si_ElPack; if Obj is TElWideStrings then begin mStrings := TElWideStrings(Obj); mStrings1 := TElWideStringList.Create; try mStrings1.CommaText := AnsiStringToWideStringCP(S1, AccesssiLang.CurrentCharset); AWasSorted := False; // if mStrings is TElWideStrings then // this class i...
- Wed Jul 25, 2007 8:24 pm
- Forum: TsiLang Components Suite
- Topic: Stretching the envelope too far?
- Replies: 24
- Views: 43934
Stretching the envelope
Got it, that solves everything, thanks for your help Igor.
Regards Nick
Regards Nick
- Wed Jul 25, 2007 9:47 am
- Forum: TsiLang Components Suite
- Topic: Stretching the envelope too far?
- Replies: 24
- Views: 43934
Stretching the envelope
Hi Igor, It stops the access error, but there is still a problem with the multi-line property ControlTexts used to store dialog button captions. It seems to be accessing the wrong item in the array, with the text for OK being displayed on the Yes button, when Yes and No are selected, and the No butt...