Re: [Gambas-user] SelectAll feature

2010-11-11 Thread Rolf-Werner Eilert
Let me add one thing: you could still use Shift + Pos1/End to select all. Everything you have to do is to first jump to the end or beginning of the line first: Pos1, then Shift+End OR End, then Shift+Pos1. But it remains that you do not get a cursor in the same field after clicking on another o

Re: [Gambas-user] SelectAll feature

2010-11-11 Thread Rolf-Werner Eilert
Ok, Demosthenes, the guys got you wrong :-) We thought you mean a running application, not the IDE. Am 12.11.2010 02:48, schrieb Demosthenes Koptsis: > i speak about the following: > > i am in IDE of Gambas2. > I click on a Button1 on my FMain. > I click on Name property. > The property is get f

Re: [Gambas-user] SelectAll feature

2010-11-11 Thread Demosthenes Koptsis
i speak about the following: i am in IDE of Gambas2. I click on a Button1 on my FMain. I click on Name property. The property is get focus and selects all text. If i click in gridview in text area and i want to select all again the text of Name property is not possible. When i press CRTL+A the c

Re: [Gambas-user] SelectAll feature

2010-11-11 Thread Michael
I am using Gambas2 and the .SelectAll feature when a textbox gets focus. It works perfectly on my Ubuntu 64 bit. I am using the GB.qt components. Regards Mike On 12/11/10 07:19, Demosthenes Koptsis wrote: > The SelectAll is for the Gambas2 application, not a mine one. > > This feature is missing

Re: [Gambas-user] Elusive Gambas3 crashing bug

2010-11-11 Thread Benoît Minisini
> Hi! > I'm doing quick and dirty "GambasTester" project. > Idea is to fuzz with all commands to find out if all works correctly within > current revision. > Of course it is not possible to test all combinations and situations, but > much better than nothing. > I know IDE is pretty good tester itse

Re: [Gambas-user] No Data event with gb.gtk libraries

2010-11-11 Thread Benoît Minisini
> O.K: > There's a big mess with the gb components among the different kinds of > distributions. I was trying to find a good replacement solution for the KDE > libraries, since at least a half of the platforms are lacking the gb-qt-kde > component. My project can run without this library, but is ug

Re: [Gambas-user] No Data event with gb.gtk libraries

2010-11-11 Thread M. Cs.
> > And yes, I've tried to run my program with the same code as it worked > before: I have some search queries where the results are put into gridviewe. > With .gtk components the Data event returns an error finding no event data. Csaba > > ---

Re: [Gambas-user] No Data event with gb.gtk libraries

2010-11-11 Thread M. Cs.
O.K: There's a big mess with the gb components among the different kinds of distributions. I was trying to find a good replacement solution for the KDE libraries, since at least a half of the platforms are lacking the gb-qt-kde component. My project can run without this library, but is ugly as hell

Re: [Gambas-user] SelectAll feature

2010-11-11 Thread Matti
I don't understand. What do you mean with "not a mine one"? Here, in Gambas 2 (and 3) TextBox.SelectAll works fine. Am 11.11.2010 21:19, schrieb Demosthenes Koptsis: > The SelectAll is for the Gambas2 application, not a mine one. > > This feature is missing from Gambas2. > > On Thu, 2010-11-11

Re: [Gambas-user] SelectAll feature

2010-11-11 Thread Benoît Minisini
> Good morning to all, > > While setting properties or any text that is in a textbox i wanted to > press CTRL+A to select all the word and then press BACKSPACE to delete > it and next to write a new one. > > But the CTRL+A is not working and i need to press many times the arrow > keys to set the

Re: [Gambas-user] No Data event with gb.gtk libraries

2010-11-11 Thread Benoît Minisini
> I'd like to move my project from KDE based stuff to GNOME. I have grid > views, and I'm getting errors when I try to fill them with Data event. Why, > which components would solve the problem? Thanks! (gambas 2.21) > > Csaba If you give no details about your problems, nobody can help you! --

Re: [Gambas-user] SelectAll feature

2010-11-11 Thread Demosthenes Koptsis
The SelectAll is for the Gambas2 application, not a mine one. This feature is missing from Gambas2. On Thu, 2010-11-11 at 20:47 +0100, Matti wrote: > If you want to do it via CTRL+A, you have to write a keypress event for the > form: > > Public Sub Form_KeyPress() > If Key.Code = Key["A"] And

[Gambas-user] No Data event with gb.gtk libraries

2010-11-11 Thread M. Cs.
I'd like to move my project from KDE based stuff to GNOME. I have grid views, and I'm getting errors when I try to fill them with Data event. Why, which components would solve the problem? Thanks! (gambas 2.21) Csaba -- Ce

Re: [Gambas-user] SelectAll feature

2010-11-11 Thread Matti
If you want to do it via CTRL+A, you have to write a keypress event for the form: Public Sub Form_KeyPress() If Key.Code = Key["A"] And If Key.Control Then TextBox1.SelectAll Endif End And if you want to have the text selected automatically when the text box gets the focus, do: Public S

Re: [Gambas-user] Writing to a file on disk

2010-11-11 Thread NW
On Thu, 11 Nov 2010 15:47:26 +0100 Rolf-Werner Eilert wrote: > > Sure, and Fabien has already given the example, so I quote him here. > Copying his mail, I find something interesting he mentioned right at the > beginning. I've never used that stuff, so just give it a try :-) Here is > what he

Re: [Gambas-user] Writing to a file on disk

2010-11-11 Thread Rolf-Werner Eilert
Am 11.11.2010 15:13, schrieb NW: > On Thu, 11 Nov 2010 09:03:14 +0100 > Rolf-Werner Eilert wrote: > >> Hi Neil, >> >> Nice to read your code. Here are some comments on it: >> >> >> Anyway, for simple textfile input/output, File.Read and File.Save will >> be your friends. >> > As a follow up to thi

Re: [Gambas-user] Writing to a file on disk

2010-11-11 Thread NW
On Thu, 11 Nov 2010 09:03:14 +0100 Rolf-Werner Eilert wrote: > Hi Neil, > > Nice to read your code. Here are some comments on it: > > > Anyway, for simple textfile input/output, File.Read and File.Save will > be your friends. > As a follow up to this. I have searched around via Google and m

Re: [Gambas-user] Writing to a file on disk

2010-11-11 Thread Fabien Bodard
make an archive of your project and send it here 2010/11/11 NW : > On Thu, 11 Nov 2010 09:03:14 +0100 > Rolf-Werner Eilert wrote: > >> Hi Neil, >> >> Nice to read your code. Here are some comments on it: >> >> > >> > Thanks for your comments. I have made the suggested changes. I still get an > e

Re: [Gambas-user] Writing to a file on disk

2010-11-11 Thread NW
On Thu, 11 Nov 2010 09:03:14 +0100 Rolf-Werner Eilert wrote: > Hi Neil, > > Nice to read your code. Here are some comments on it: > > > > Thanks for your comments. I have made the suggested changes. I still get an extra character at the beginning of the line every time I write the new version

Re: [Gambas-user] Gambas-user Digest, Vol 54, Issue 19

2010-11-11 Thread Wellington de Souza Pinto
Hi! Everyone helpme? I buy the mac and i like install gambas. How? Any step-by-step for this. tks -- Centralized Desktop Delivery: Dell and VMware Reference Architecture Simplifying enterprise desktop deployment and mana

Re: [Gambas-user] Installing gambas3 on LinuxMint

2010-11-11 Thread Jorge Carrión
I had some time ago a similar problem with a library of printing system (don't remember the name) and I created a link - (something like: ln -s libmysqlclient16 libmysqlclient15off) - and placed it in a directory located further down the chain of PATH than ver.16 . Thus, applications that seek ver

Re: [Gambas-user] Installing gambas3 on LinuxMint

2010-11-11 Thread Dr. Martin Senftleben
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am 11.11.2010 08:06, schrieb Ricardo Díaz Martín: > Did you read this: http://gambasdoc.org/help/install/ubuntu?view ? I went through all steps (the links at the top are inaccessible) with no success. Still the same error about dependency. > Because

Re: [Gambas-user] Writing to a file on disk

2010-11-11 Thread Rolf-Werner Eilert
Hi Neil, Nice to read your code. Here are some comments on it: > > PUBLIC SUB Button1_Click() > >DIM lineIn AS String >DIM fileIn AS File >DIM fname AS String >fname = "/home/neilwin/basic/trial.txt" > Benoit introduced a new way of writing such an OPEN, you already received mes