Re: [Gambas-user] Can't start gambas IDE

2015-07-28 Thread Zach Smith
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

Re: [Gambas-user] Can't start gambas IDE

2015-07-27 Thread Zach Smith
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

[Gambas-user] Can't start gambas IDE

2015-07-26 Thread Zach Smith
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

Re: [Gambas-user] [CRASH REPORT] Webview control

2015-02-25 Thread Zach Smith
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

[Gambas-user] How to get the number of affected rows in mysql?

2013-07-03 Thread Zach Smith
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

Re: [Gambas-user] Cursor in wrong place in gambas 3

2013-04-04 Thread Zach Smith
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

Re: [Gambas-user] gb.GeneralDate formatting is inconsistent

2012-02-13 Thread Zach Smith
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.

Re: [Gambas-user] gb.GeneralDate formatting is inconsistent

2012-02-06 Thread Zach Smith
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

Re: [Gambas-user] gb.GeneralDate formatting is inconsistent

2012-02-05 Thread Zach Smith
> 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

[Gambas-user] gb.GeneralDate formatting is inconsistent

2012-02-02 Thread Zach Smith
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.

Re: [Gambas-user] restarting a gambas application

2012-01-04 Thread Zach Smith
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

Re: [Gambas-user] Making code pretty

2011-08-09 Thread Zach Smith
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

Re: [Gambas-user] Problem with index order in debugging window.

2011-06-24 Thread Zach Smith
> > 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

[Gambas-user] Feature request: triple-click to select line

2011-03-14 Thread Zach Smith
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

[Gambas-user] Add/remove a breakpoint without pausing program

2011-03-03 Thread Zach Smith
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

[Gambas-user] format of the valuebox text property when using the IPAddress type

2011-02-12 Thread Zach Smith
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

[Gambas-user] How do you hide the mouse cursor in GTK?

2011-02-05 Thread Zach Smith
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

Re: [Gambas-user] Gambas bug tracker

2011-01-02 Thread Zach Smith
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

[Gambas-user] predefined date formats don't work in Gambas 3

2011-01-02 Thread Zach Smith
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) --

[Gambas-user] code for VB button control array hangs program

2011-01-01 Thread Zach Smith
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

Re: [Gambas-user] More on Print bugs.

2011-01-01 Thread Zach Smith
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

[Gambas-user] value of single variable always shows as 1E-315

2010-12-29 Thread Zach Smith
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 = "

Re: [Gambas-user] problem with Key.Code and form focus

2010-12-27 Thread Zach Smith
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

Re: [Gambas-user] can't copy and paste controls in gambas3

2010-12-26 Thread Zach Smith
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

Re: [Gambas-user] frame control border won't display in IDE

2010-12-18 Thread Zach Smith
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

[Gambas-user] frame control border won't display in IDE

2010-12-18 Thread Zach Smith
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

Re: [Gambas-user] can't copy and paste controls in gambas3

2010-12-17 Thread Zach Smith
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

[Gambas-user] can't copy and paste controls in gambas3

2010-12-17 Thread Zach Smith
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.

Re: [Gambas-user] User-defined format characters for dates (AM/PM)

2010-05-01 Thread Zach Smith
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

[Gambas-user] User-defined format characters for dates (AM/PM)

2010-04-30 Thread Zach Smith
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

Re: [Gambas-user] 2625 build Can't load class 'Main' error

2010-01-24 Thread Zach Smith
> 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

Re: [Gambas-user] 2625 build Can't load class 'Main' error

2010-01-23 Thread Zach Smith
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

Re: [Gambas-user] 2625 build Can't load class 'Main' error

2010-01-23 Thread Zach Smith
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

Re: [Gambas-user] build 2027 failing

2009-06-19 Thread Zach Smith
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

Re: [Gambas-user] build 2027 failing

2009-06-19 Thread Zach Smith
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=

[Gambas-user] build 2027 failing

2009-06-18 Thread Zach Smith
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

[Gambas-user] build 2026 failing

2009-06-18 Thread Zach Smith
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