t Minisini <
gam...@users.sourceforge.net> wrote:
> Le 28/07/2015 03:24, Zach Smith a écrit :
> > Done. File attached.
> >
> > On Mon, Jul 27, 2015 at 8:21 PM, Benoît Minisini <
> > gam...@users.sourceforge.net> wrote:
> >
> >> Le 27/07/2015 03:54, Zach Smith a écri
Done. File attached.
On Mon, Jul 27, 2015 at 8:21 PM, Benoît Minisini <
gam...@users.sourceforge.net> wrote:
> Le 27/07/2015 03:54, Zach Smith a écrit :
> > I'm running r7186 and get this error when starting Gambas on Arch x86_64
> > and Arch ARMv7. Please let me k
I'm running r7186 and get this error when starting Gambas on Arch x86_64
and Arch ARMv7. Please let me know if more information is required.
user1 ~ $ gambas3
_TextEditor_Styles._new.13: #6: Type mismatch: wanted TextEditorStyle, got
TextEditorStyle instead
Project.Main.352
qt4 4.8.7-2
qt5-bas
On Mon, Feb 23, 2015 at 9:51 PM, Benoît Minisini <
gam...@users.sourceforge.net> wrote:
> Le 24/02/2015 03:49, Benoît Minisini a écrit :
>
>> Le 17/02/2015 22:15, zachsmith...@gmail.com a écrit :
>>
>>> Hello,
>>>
>>> Damned, my program crashed Gambas that way :
>>>
>>> While running in the IDE, p
Hi,
How can one get the number of affected rows from a mysql query in gambas?
See https://dev.mysql.com/doc/refman/5.1/en/mysql-affected-rows.html
"It returns the number of rows changed, deleted, or inserted by the
last statement if it was an UPDATE, DELETE, or INSERT"
I've experimented with run
On 4/1/2013 1:01 PM, rocko wrote:
> I have a very strange and irritating problem in Gambas 3.
>
> The Cursor is off by about 2 characters, when I'm typing/editing code in
> the editor, the cursor is never where it
> supposed to be, it doesn't go to the end of a line or character/word,
> its back by
It works as expected. Thanks Benoit.
The comment at http://gambasdoc.org/help/cat/constant should be
revised where it says:
gb.GeneralDate Write a date only if the date and time value has a
date part, and write a time only if it has a date part.
On 2/5/2012 11:44 PM, Zach Smith wrote:
> only if the time is not 00:00:00
Correction - "only if the time *is* 00:00:00"
--
Try before you buy = See our experts in action!
The most comprehensive online lea
> gb.GeneralDate prints the date part the short way (dd/mm/yy) and prints
> the time if it is not zero.
The middle example is still inconsistent if one expects 00:00:00 to be
a valid time, that is, midnight (12:00 AM). Also note that the format
is mm/dd/yy only if the time is not 00:00:00. One c
The gb.GeneralDate formatting appears to be inconsistent in the
handling of time 00:00:00..
Dim d1 As Date, d2 As Date, d3 As Date
d1 = CDate("1/1/2003 00:00:00")
d2 = CDate("1/1/2003")
d3 = CDate("00:00:00")
Print Format(d1, gb.GeneralDate)
Print Format(d2, gb.GeneralDate)
Print Format(d3, gb.
On Fri, Jul 15, 2011 at 12:40 PM, wrote:
>
> Does anyone know how to automatically close and restart a running gambas
> program?
>
> For example, if I have a program update available, I'd like to click a
> button in my program ("Install/Run update") that would start an intermediate
> program that
2011/8/9 Benoît Minisini :
>
> Anyway, why do you need that option? Is the procedure popup button not enough?
>
I prefer using the keyboard (CTRL+UP and CTRL+DOWN) to navigate
procedures. If they are sorted (which I now do manually), it is
sometimes faster to get to the procedure I want without h
>
> Fixed in revision #3899.
>
> Regards,
>
This fixed issue 28 for gambas 3.
--
All the data continuously generated in your IT infrastructure contains a
definitive record of customers, application performance, security
Is there any possibility of adding a triple-click to select a whole
line of code in the IDE?
--
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in th
Benoît,
Is it possible to add the ability to add a breakpoint while a program
is running? VB6 can do this. It would be convenient because when you
pause the program there is no predicting where in the code it will
stop and then you have to find the line you wanted to add a breakpoint
to. Note th
When calling the text property of a valuebox using the ipaddress type,
you get "10. 1. 2. 3" instead of "10.1.2.3". Is that the desired
behavior?
--
The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio
This works in Qt but not GTK: FMain.mouse = 10
I've played around with an invisible cursor theme and it worked, but
that won't allow me to easily switch between visible and invisible.
--
The modern datacenter depends on
2011/1/2 Benoît Minisini :
> Or http://code.google.com/p/gambas/issues/list to go directly to the bug
> tracker.
There seems to be no way to set the issue labels while submitting.
Are they disabled for non-admins?
--
Lea
These work in Gambas 2 but not Gambas 3.
Print Format(Now, gb.GeneralDate)
Print Format(Now, gb.LongDate)
Print Format(Now, gb.MediumDate)
Print Format(Now, gb.ShortDate)
Print Format(Now, gb.LongTime)
Print Format(Now, gb.MediumTime)
Print Format(Now, gb.ShortTime)
--
Add a button to a program and modify code to read:
Public Sub Button1_Click(index As Integer)
End
If you try to run the program, nothing happens and the problem line is
not identified. This may happen if you import VB code and don't
realize control arrays are not allowed.
There are 2 Stack backt
2011/1/1 Benoît Minisini :
> Can somebody else confirm that "Page size" and "Orientation" are not disabled
> anymore on their GTK+ printer configuration dialog?
It works with gambas3 rev. 3416, Arch.
--
Learn how Oracle R
Run the following code and then look in the "local variables" tab.
The integer and string values are correct but the value of e is
1E-315. The same is true when you highlight the variable in the code
to see the current value.
Dim i As Integer
Dim e As Single
Dim s As String
i = 123
e = 1.23
s = "
On Fri, Dec 24, 2010 at 7:14 PM, zachsmith...@gmail.com wrote:
> I'm having trouble having keypresses detected on a form. Sample code
> attached.
>
Can someone please test this?
Any feedback would be appreciated.
--
Learn
On Fri, Dec 17, 2010 at 12:25 PM, Zach Smith wrote:
> After more testing... it works with v3289 32-bit, but does not with
> v3354 64-bit. Running Arch.
>
The problem was that I was running a clipboard manager - Glipper.
Sorry about
On Sat, Dec 18, 2010 at 12:39 PM, Fabien Bodard wrote:
> kde style... certainly
>
Yes, running qtconfig and changing the GUI style from default to
anything except GTK+ fixed the problem.
Thanks.
--
Lotusphere 2011
Regist
While drawing a frame control on a form the border doesn't show even
though the frame is created. When I run a simple test program in the
IDE, the frame border shows with gtk but not with qt. When I close
the program running qt I get a signal #11 error but the IDE continues
to run.
Arch 64-bit
g
2010/12/17 Benoît Minisini :
>> I can't copy and paste a control on a form. I right click on a button
>> to copy (or use CTRL-C). Then if I right click on the form, the paste
>> option in the menu is disabled. I'm running gambas 3 v 3354. It
>> works fine in gambas 2.22.
>>
>
> Humf. It works pe
I can't copy and paste a control on a form. I right click on a button
to copy (or use CTRL-C). Then if I right click on the form, the paste
option in the menu is disabled. I'm running gambas 3 v 3354. It
works fine in gambas 2.22.
2010/4/30 Benoît Minisini :
>> Is there any way to use the format command to get "05:32 PM"?
>>
>> Format (Now, "hh:nn") gives me the 24 hour format: 17:32
>>
>
> Format(Now, "hh:nn AM/PM") will give you what you want, provided that your
> current language use AM/PM notation.
>
Thanks Benoît. I d
Is there any way to use the format command to get "05:32 PM"?
Format (Now, "hh:nn") gives me the 24 hour format: 17:32
--
___
Gambas-user mailing list
Gambas-user@lists.sourcef
> Try revision #2637, I actually didn't fix the bug I talked about in #2636!
That worked.
Thanks Benoît.
--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field
Here you go.
gambas3.txt.gz
Description: GNU Zip compressed data
--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
a
I get the same error and I did a ./reconf-all.
Arch
x64 & x86
gambas 3, svn 2625
<>--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities
Thanks Benoit, Laurent. 32 bit (desktop) works now but... 64 bit
(laptop) still won't build, Arch, gcc 4.4.0-3, #2030 now gives me:
make[5]: Entering directory `/home/craig/gambas3/src/trunk/gb.qt4/src/ext'
/bin/sh ../../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H
-I. -I../.. -DQT3_SU
With Arch, 32 bit, #2029 fails with the following:
make[4]: Entering directory `/home/test/gambas3/src/trunk/gb.corba/src'
/bin/sh ../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I.
-I.. -I/usr/include/omniORB4/ -pipe -Wall -fno-exceptions
-Wno-unused-value -fsigned-char -fvisibility=
gambas3, build 2027, x_64, arch
I'm getting:
make[4]: Entering directory `/home/craig/gambas3/src/trunk/gb.db.sqlite3/src'
/bin/sh ../libtool --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I.
-I.. -pipe -Wall -fno-exceptions -Wno-unused-value -fsigned-char
-fvisibility=hidden -g -Os -fno-omi
gambas3, build 2026, x_64, arch
I'm getting:
make[4]: Entering directory `/home/test/gambas3/src/trunk/main/gbx'
gcc -DHAVE_CONFIG_H -I. -I.. -I../share -D_REENTRANT -I../libltdl
-I/usr/lib/libffi-3.0.8/include
-DGAMBAS_PATH="\"/home/test/gambas3/pkg/usr/bin\"" -pipe -Wall
-Wno-unused-value -fs
37 matches
Mail list logo