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
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
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
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
> 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
> 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
>
> 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
>
>
---
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
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
> 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
> 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!
--
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
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
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
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
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
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
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
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
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
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
-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
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
23 matches
Mail list logo