Re: [Gambas-user] Dialog.SaveFile() and Dialog.Path problem

2011-10-08 Thread BenoƮt Minisini
> > 2) second problem. > The path at the top of dialog is not shown correctly. Some characters or > whole words are missing. > > Is this because of Greek letters in path? > Not at all, it is a bug in the container arrangement routine that shows up only with gb.gtk. It is fixed in revision #41

Re: [Gambas-user] Dialog.SaveFile() and Dialog.Path problem

2011-10-06 Thread Demosthenes Koptsis
On Thu, 2011-10-06 at 12:00 +0200, Rolf-Werner Eilert wrote: > Am 06.10.2011 11:19, schrieb Demosthenes Koptsis: > > On Thu, 2011-10-06 at 08:23 +0200, Rolf-Werner Eilert wrote: > >> Am 06.10.2011 00:26, schrieb Demosthenes Koptsis: > >>> The Project141 is attached if anyone want to check it out.

Re: [Gambas-user] Dialog.SaveFile() and Dialog.Path problem

2011-10-06 Thread Rolf-Werner Eilert
Am 06.10.2011 11:19, schrieb Demosthenes Koptsis: > On Thu, 2011-10-06 at 08:23 +0200, Rolf-Werner Eilert wrote: >> Am 06.10.2011 00:26, schrieb Demosthenes Koptsis: >>> The Project141 is attached if anyone want to check it out. >>> i have a path with Greek-Latin characters but this is not the prob

Re: [Gambas-user] Dialog.SaveFile() and Dialog.Path problem

2011-10-06 Thread Demosthenes Koptsis
On Thu, 2011-10-06 at 08:23 +0200, Rolf-Werner Eilert wrote: > Am 06.10.2011 00:26, schrieb Demosthenes Koptsis: > > The Project141 is attached if anyone want to check it out. > > i have a path with Greek-Latin characters but this is not the problem. > > i moved the project's folder to /home/user

Re: [Gambas-user] Dialog.SaveFile() and Dialog.Path problem

2011-10-05 Thread Rolf-Werner Eilert
Am 06.10.2011 00:26, schrieb Demosthenes Koptsis: > The Project141 is attached if anyone want to check it out. > i have a path with Greek-Latin characters but this is not the problem. > i moved the project's folder to /home/user and the problem is the same. > > 1) What is the problem. > When i run

Re: [Gambas-user] Dialog.SaveFile() and Dialog.Path problem

2011-10-05 Thread Jussi Lahtinen
Seems to work as expected, at least with revision 4172. What is then the path it opens? Jussi On Wed, Oct 5, 2011 at 12:28, Demosthenes Koptsis wrote: > Good morning, > > i have the next code: > > -- > Public Sub btnSaveFile_Click() > > Dialog.Filter = ["*.txt", "T

[Gambas-user] Dialog.SaveFile() and Dialog.Path problem

2011-10-05 Thread Demosthenes Koptsis
Good morning, i have the next code: -- Public Sub btnSaveFile_Click() Dialog.Filter = ["*.txt", "Text Files"] Dialog.Path = Application.Path If Dialog.SaveFile() Then Return File.Save(Dialog.Path, txtArea.Text) Catch Message.Info(Error.Text) End --