Re: [Gambas-user] Sting declared as Const are not translated

2011-08-02 Thread Emanuele Sottocorno
Fixed! Thanks -- BlackBerry® DevCon Americas, Oct. 18-20, San Francisco, CA The must-attend event for mobile developers. Connect with experts. Get tools for creating Super Apps. See the latest technologies. Sessions, ha

Re: [Gambas-user] Sting declared as Const are not translated

2011-08-01 Thread Benoît Minisini
> > Hi to all, > > declaring a string like: > > > > MyClass.Class > > > > Create Private > > > > PRIVATE CONST MYSTRING As String = ("A string") > > > > and using that string in another class like > > > > MyForm.Class > > > > MyForm.Caption = MyClass.MYSTRING > > > > even if the string is co

Re: [Gambas-user] Sting declared as Const are not translated

2011-08-01 Thread Benoît Minisini
> Hi to all, > declaring a string like: > > MyClass.Class > > Create Private > > PRIVATE CONST MYSTRING As String = ("A string") > > and using that string in another class like > > MyForm.Class > > MyForm.Caption = MyClass.MYSTRING > > even if the string is correctly translated trough the Tr

Re: [Gambas-user] Sting declared as Const are not translated

2011-08-01 Thread Jesus
El 01/08/11 17:39, Emanuele Sottocorno escribió: > Hi to all, > declaring a string like: > > MyClass.Class > > Create Private > > PRIVATE CONST MYSTRING As String = ("A string") > > and using that string in another class like > > MyForm.Class > > MyForm.Caption = MyClass.MYSTRING > > even

[Gambas-user] Sting declared as Const are not translated

2011-08-01 Thread Emanuele Sottocorno
Hi to all, declaring a string like: MyClass.Class Create Private PRIVATE CONST MYSTRING As String = ("A string") and using that string in another class like MyForm.Class MyForm.Caption = MyClass.MYSTRING even if the string is correctly translated trough the Translate Tool in the IDE when t