[Gambas-user] Conversion of array value to integer

2014-11-28 Thread Ian
s is a bug ? Thanks, Ian. -- Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App In

[Gambas-user] Password error on clicking store or examples in GUI

2015-02-04 Thread Ian
1-2.0.so.0.2400.23 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.44.0.0 Qt4=libQtCore.so.4.8.6 SDL=libSDL-1.2.so.0.11.4 cheers, Ian. -- Dive into the World of Parallel Programming. The Go Parallel Website, sponsored by Inte

Re: [Gambas-user] Password error on clicking store or examples in GUI

2015-02-06 Thread Ian
a force quit to end. Cheers, Ian. On 04/02/15 21:00, Jussi Lahtinen wrote: > The screenshot is missing. > > > Jussi > > On Wed, Feb 4, 2015 at 12:03 PM, Ian wrote: > >> Hi , >> I've been getting this error for some time - what can I do to resolve ? >>

[Gambas-user] Feature Request

2015-02-06 Thread Ian
Return InStrTrue Else Return InStrFalse Endif End Use example: BoolValue = True Txt_AmIHappy.Text = IFF(BoolValue,"Yes- Im Using Gambas","No-I have to use VB") Of course this can be done with an If-Else or Select-Case but its a little more el

Re: [Gambas-user] Password error on clicking store or examples in GUI

2015-02-06 Thread Ian
Yes copied text exactly as per the error dialogue. with attachment now. When clicking on examples, I get the same error message as soon as I click the link "There" Cheers, Ian. On 07/02/15 09:54, Benoît Minisini wrote: Le 07/02/2015 02:40, Ian a écrit : Apologies - copied th

Re: [Gambas-user] Feature Request

2015-02-07 Thread Ian
IIF - I should have know there would be something. now if the wiki had a search function Ian. On 07/02/15 14:15, Fabien Bodard wrote: > :-P > > You need to read the wki help language pages at least ! > > 2015-02-07 7:09 GMT+01:00 T Lee Davidson : >> Hey Ian, >

Re: [Gambas-user] Feature Request

2015-02-07 Thread Ian
get a strange error. Posted with this subject in the forum "Password error on clicking store or examples in GUI" ...and yes, I'm on daily updates. Cheers, Ian. On 07/02/15 19:45, Lewis Balentine wrote: > The context sensitive on-line help system uses the Wiki. That implies

Re: [Gambas-user] Password error on clicking store or examples in GUI - SOLVED

2015-03-07 Thread Ian
Tested this on Linux Mint 18 and now works. Must have been fixed in one of the recent updates - had not tested for a while. Cheers, Ian. On 07/02/15 11:19, Ian wrote: > Yes copied text exactly as per the error dialogue. > > with attachment now. > > When clicking on examples,

[Gambas-user] [SPAM] Tool tip missing for GUI controls.

2015-05-09 Thread Ian
When in the GUI and selecting a form in design view... when you mouse over the available controls in the selection area,you no longer get a tool tip. By design or a bug ? (or just another Linux Mint issue) Cheers, Ian. [System] Gambas=3.7.90 OperatingSystem=Linux Kernel=3.13.0-24-generic

Re: [Gambas-user] Running website from server

2015-06-26 Thread Ian
hout any success. #!/usr/bin/gbw3 <% private sRes As String Exec ["cat", "/proc/meminfo"] To sRes %> <%= sRes %> === Also ensure that the symbolic link for gbw3 is set in : /usr/bin ian@Linux-Mint /usr/bin $ ls

Re: [Gambas-user] R: Key events don't work on gb.gtk

2014-08-15 Thread Ian
I have the same version of Linux as Jorge (Linux Mint 17) and key events don't work for me. ? Is there some other tertiary factor involved here? Cheers, Ian Roper. On 15/08/14 19:47, Jorge Carrión wrote: > Jesus: > In my computer works fine with both libraries qt and gtk. with L

[Gambas-user] Error with Scrollview and child objects

2014-08-22 Thread Ian
If you populate a scrollview with child checkbox objects where you need to scroll to see them all, as soon as you move the scroll bar the child objects do not respond to events. As soon as you move the scroll bar back to the top, the child objects will then respond. Trying this process with

Re: [Gambas-user] Textbox bug

2014-09-13 Thread Ian
GET (widget)' failed with the gb.GUI or gb.GTK component selected. No error reported in the console with gb.GTK3 but the problem still exists as stated. Another has also reported this on the gambas forum at whiteislandsofware.com with Ubuntu 14.04 Cheers, Ian Roper. On 13/09/14 08:53, Sh

[Gambas-user] [CRASH REPORT] any project type.

2014-09-26 Thread Ian
gives the seg fault error. The GUI does not crash but will continue after the clicking OK on the error. Cheers, Ian Roper Kingdom-0.0.1-crash-140926-172542.tar.bz2 Description: application/bzip -- Meet PCI DSS 3.0

Re: [Gambas-user] Incomplete documentation in Wiki

2014-10-17 Thread Ian
Greetings all, Is there a way to automatically scan through the code base and give a list of control elements that are missing documentation ? It would be a good reference to have on the Wiki - a "things to do" list for those who want to contribute. Cheers, Ian Roper On 17/10/14 19

Re: [Gambas-user] Incomplete documentation in Wiki

2014-10-18 Thread Ian
view as a single page is quite educational - I've seen controls and attributes in the link you supplied that I had never used before and gives me a far greater idea of what's possible. Just a thought. Cheers, Ian. On 18/10/14 06:03, Tobias Boege wrote: > On Sat, 18 Oct 20

[Gambas-user] Gtk-CRITICAL messages.

2014-10-26 Thread Ian
.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.204.0 GTK+3=libgtk-3.so.0.1000.8 GTK+=libgtk-x11-2.0.so.0.2400.23 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.44.0.0 Qt4=libQtCore.so.4.8.6 SDL=libSDL-1.2.s

[Gambas-user] Question on Class.Load

2014-11-01 Thread Ian
s created classes, I have a standard Procedure to save the applicable database table records to a binary file called CreateBinaryFile(InPath as String) This is the process I am trying to call for e

Re: [Gambas-user] Question on Class.Load

2014-11-02 Thread Ian
? Ian. On 02/11/14 16:30, Fabien Bodard wrote: > Just one question ... have you exported those classes ? > > tmpClass is just a class ... not an instanciate object > > You need to call Object.New > > Or just new > > > Public Sub Main() > Dim hObj As Object > D

[Gambas-user] Segfault(11) when looping though an multidimensional array

2014-11-05 Thread Ian
0.so.0.2400.23 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.44.0.0 Qt4=libQtCore.so.4.8.6 SDL=libSDL-1.2.so.0.11.4 cheers, Ian Roper. -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user

[Gambas-user] Wizard control in Gambas 3.4 - Not responding to events ?

2013-03-16 Thread Ian
to manually type... Private Sub Wizard1_ The full(?) event list is then displayed. I have included a small project as required to display this. Am I doing it the wrong way or is it really a bug ? Regards, Ian - Perth Western Australia. [System] OperatingSystem=Linux Kernel=3.5.0-25-generic

[Gambas-user] gambas 3 release or otherwise as binary package

2010-09-16 Thread Ian Haywood
the gambas3 runtime. If you don't plan to release in the next 6 months or so, would you have any objection to a me developing .deb's for the gambas3 runtime which would be relased at regular intervals, tracking the latest stable SVN ver

[Gambas-user] circular inheritance

2010-09-18 Thread Ian Haywood
t;circular"? Thanks, Ian cLink.class Description: Binary data cWebLink.class Description: Binary data CAuditTrailLink.class Description: Binary data -- Start uncovering the many advantages of virtual appliances

Re: [Gambas-user] circular inheritance

2010-09-18 Thread Ian Haywood
On Sat, Sep 18, 2010 at 7:35 PM, Fabien Bodard wrote: > I need more than these three classes to understand the problem. sends > me a small project showing the problem please Here 'tis Ian circular-inheritance-0.0.1.tar.gz Description: GNU Zip comp

[Gambas-user] gambas3 ubuntu packages

2010-10-02 Thread Ian Haywood
karmic main then do "sudo apt-get update ; sudo apt-get install gambas3" The version numbers don't mean anything, currently "0.2-1", I will update the packages with svn at irregular intervals or when requested. the major version will stay

Re: [Gambas-user] MOD arithetic operator

2010-11-09 Thread Ian Haywood
ngely even after a 25 year hiatus in BASIC programming. It makes sense as the ASCII keyboard doesn't have an "obvious" symbol for modulus, (except for C programmers) unlike +, - and / which most people will understand from primary school

Re: [Gambas-user] Installing gambas3 on LinuxMint

2010-11-12 Thread Ian Haywood
o compile gambas3 yourself. Another is for me to release some packages for newer versions of Ubuntu ;-) I can do this mid next week if you want. Ian -- Centralized Desktop Delivery: Dell and VMware Reference Architecture Simp

Re: [Gambas-user] Installing gambas3 on LinuxMint

2010-11-19 Thread Ian Haywood
On Fri, Nov 12, 2010 at 8:22 PM, Ian Haywood wrote: > On Thu, Nov 11, 2010 at 5:42 PM, Dr. Martin Senftleben > wrote: > >> I want to install gambas3 on my LinuxMint machine (64bit), but it >> doesn't work, the gambas3-gb-db-mysql package cannot be install

Re: [Gambas-user] About help and arrays and variables

2010-11-19 Thread Ian Haywood
t; in Pascal) and a proper heredoc syntax. Gambas is interpreted, the other 2 are compiled, so it's slower, but in practice I haven't found this an issue (it's heaps faster than Java, and even Ruby, probably on par with Python) Ian

[Gambas-user] ODBC and MS SQL 2000 table existence test issue

2010-11-20 Thread Ian Roper
In the mean time , I have asked him to carefully check the perms on the SQL server for the account he is accessing with to ensure that there are no unusual settings applied. I'll post any suggestions back to his request thread. Thank you in advan

Re: [Gambas-user] About help and arrays and variables

2010-11-22 Thread Ian Haywood
2010/11/23 Benoît Minisini : >> > In Gambas 3, you have support for callbacks. That means you can send a >> > Gambas function to a extern C function, and the extern C function will >> > use it (almost) transparently! Can Gambas code c

Re: [Gambas-user] Result object, again

2010-11-24 Thread Ian Haywood
gt; the stupidity of most SQL backends. Postgresql definately supports cursors (being able to retrieve rows in groups and not hold them all in memory) Ian -- Increase Visibility of Your 3D Game App & Earn a Chance To

Re: [Gambas-user] hProcess is NULL

2010-12-26 Thread Ian Haywood
ad() Drop the "WAIT" keyword. Wait makes Gambas stop and wait until the process is finished. You don't want this: you want it to run in parallel with Gambas and read its input. Alternatively, if you just want to get the output as a string and not interact with the program, you can do

[Gambas-user] Command line gambas compiler

2010-12-26 Thread Ian Roper
Gambas application self update from the web. To be able to download modified/new project elements and then recompile the application.gambas from a secondary application using the command line function. I have all the rest working but can't find a way to recompile without using the GUI. R

Re: [Gambas-user] hProcess is NULL

2010-12-27 Thread Ian Haywood
On Mon, Dec 27, 2010 at 8:11 PM, Demosthenes Koptsis wrote: > On Mon, 2010-12-27 at 10:20 +1100, Ian Haywood wrote: >> On Mon, Dec 27, 2010 at 4:46 AM, Demosthenes Koptsis >> wrote: >> > Hello and merry Christmas, >> > >> > i have these lines of code &g

Re: [Gambas-user] hProcess is NULL

2010-12-27 Thread Ian Haywood
this function into two: hProcess1 = SHELL sCommand FOR INPUT AS "AntiVirRun End Private Sub Continue_The_Function() .. . . . whatever you where doing Then use AntiVirRun_Kill event to call the continue function

Re: [Gambas-user] Linuxmint and gambas

2010-12-29 Thread Ian Haywood
3 packages available for ubuntu at https://launchpad.net/~ihaywood3/+archive/gambas3 there are packages for "lucid" and"maverick" the two latest ubuntu versions. It depends which linux mint is based on, I have no idea, but try "maverick" first Ian --

Re: [Gambas-user] Sig 11 with menu items remains

2011-01-02 Thread Ian Haywood
was that maybe it is >> related to a QT4 bug. >> >> Maybe someone else on the list is aware of this or can help. >> >> I've emailed Ian, who is much more switched on than me about computing to >> see if he can liase with you on this. >> >> Also

[Gambas-user] signal 11 from menus

2011-01-03 Thread Ian Haywood
the second time from within the Menu_Show () handler. By only generating the menus once the problem is solved. Ian Program received signal SIGSEGV, Segmentation fault. 0x002d05e0 in ?? () from /lib/tls/i686/cmov/libc.so.6 (gdb) bt #0 0x002d05e0 in ?? () from /lib/tls/i686/cmov/libc.so.6 #1 0x0

[Gambas-user] Incorrect name at the top of the lang web page V2 instead of V3

2011-01-13 Thread Ian Roper
I noticed that at the top of the web page on the Gambas documentation site <http://gambasdoc.org/help/lang> that the version 2.n link is identified as ' > [3.0]' and the version 3.n link is identified as ' > lang [2.0] minor thing I know, but confusing for new users

Re: [Gambas-user] Crash with Free()

2011-01-13 Thread Ian Haywood
I would have thought they should be left well alone. Ian -- Protect Your Site and Customers from Malware Attacks Learn about various malware tactics and how to avoid them. Understand malware threats, the impact they can

Re: [Gambas-user] [Fwd: Gambas3 Pointers example] signal #6

2011-01-17 Thread Ian Haywood
to learn C anyway. My advice would be to make a choice: 1. sit down and learn basic C and how to use C pointers, then come back to this problem 2. leave Gambas pointers alone and concentrate on other sections Ian -- Prote

Re: [Gambas-user] Nightly Builds

2011-02-07 Thread Ian Haywood
inux Mint, Mepis, etc) I update about once a fortnight or so from svn, but if someone wants to take over and extend to use some nightly autobuild system that would be good. Ian -- The modern datacenter depends on network

Re: [Gambas-user] Nightly Builds

2011-02-07 Thread Ian Haywood
getting bogged down in svn and dependencies, and also so gambas3 is ready for submission to Debian soon after it is officially released, Unfortunately I can't release gambas3 before Benoit does :-( Ian -- The mode

[Gambas-user] Error writing Binary data - Gambas 2.99.0

2011-02-12 Thread Ian Roper
e. Changed to Gambas 2.22 and same code worked as it should, - able to write & read. Can someone else please test. Thanks in advance. Regards, Ian Roper Perth Western Australia. -- The ultimate all-in-one performance too

[Gambas-user] changes to Regexp

2011-03-11 Thread Ian Haywood
brown fox re.SubMatches[1].Text brown and svn 3641: re.SubMatches[0].Text brown re.SubMatches[1].Text fox Is this an intentional/permanent change in the language? (because I have quite a few Submatches references to change) Ian test-regexp-0.0.1.tar.gz Description: GNU Zip compressed data

Re: [Gambas-user] Gambas 3 RC1 pre-release source package

2011-03-19 Thread Ian Haywood
ntu lucid and maverick without problems. packages can be downloaded from: https://launchpad.net/~ihaywood3/+archive/gambas3 Ian -- Colocation vs. Managed Hosting A question and answer guide to determining the best fit

Re: [Gambas-user] Gambas 3 RC1 pre-release source package

2011-03-19 Thread Ian Haywood
ms will be fixed before the final >> > release! >> >> compiles on Debian squeeze, Ubuntu lucid and maverick without problems. >> >> packages can be downloaded from: >> https://launchpad.net/~ihaywood3/+archive/gambas3 >> >> Ian >> > > Mmm... Bina

Re: [Gambas-user] Gambas 3 RC1 pre-release source package

2011-03-21 Thread Ian Haywood
2011/3/21 Benoît Minisini : > 1) I don't see where are all the individual binary packages (gambas3-runtime, > gambas3-dev...) on the launchpad link you sent. https://launchpad.net/~ihaywood3/+archive/gambas3/+sourcepub/1558737/+listing-archive-extra ---

Re: [Gambas-user] Gambas 3 RC1 pre-release source package

2011-03-21 Thread Ian Haywood
On Tue, Mar 22, 2011 at 7:22 AM, Laurent Carlier wrote: > 2011/3/21 Ian Haywood > >> 2011/3/21 Benoît Minisini : >> >> > 1) I don't see where are all the individual binary packages >> (gambas3-runtime, >> > gambas3-dev...) on the launchpad link y

Re: [Gambas-user] gb3 RC1: using structures to replace the loss of Mk$ functions

2011-04-01 Thread Ian Haywood
lone? Another stab in the dark: could you have a Object array, and then an class for each type of message which knows how to pack and unpack itself to the wire using an internal structure Ian -- Create and publish websites

Re: [Gambas-user] Webview + images Kubuntu 9 / Kubuntu 10

2011-04-09 Thread Ian Haywood
t it be a file:// URL. Ian -- Xperia(TM) PLAY It's a major breakthrough. An authentic gaming smartphone on the nation's most reliable network. And it wants your games. http://p.sf.ne

Re: [Gambas-user] Base 64 question

2011-04-27 Thread Ian Haywood
No, HL7 parsing is fine, let me restate the question: does gambas have an inbuilt function to decode base 64 data? Ian On Thu, Apr 28, 2011 at 3:48 AM, nando wrote: > Health Level 7 file format > To start visit: > http://en.wikipedia.org/wiki/Health_Level_7 > > > -

Re: [Gambas-user] Gambas 3 not out yet?

2011-04-28 Thread Ian Haywood
hing. > > Keith, > > You will have to build from svn till Gambas 3 RC1 is released. (watch > for the icon on the homepage to become active) you can use interim ubuntu packages from https://launchpad.net/~ihaywood3/+archive/gambas3 Ian --

Re: [Gambas-user] Gambas 3 working on Ubuntu Natty with Unity interface - Unable to run ./reconf-all for a fresh SVN download

2011-04-30 Thread Ian Roper
always successful. This is the error message I get: ======== ian@ian-Natty:~/trunk/gambas/trunk$ ./reconf-all libtoolize: putting auxiliary files in `.'. libtoolize: copying file `./ltmain.

Re: [Gambas-user] gb3: "System error #90: Message too long in Network:604."

2011-05-17 Thread Ian Haywood
On Tue, May 17, 2011 at 2:56 PM, Kevin Fishburne wrote: > I was trying to send a 100+ Kb UDP packet and received this error. Is this a > bug, or am I missing something? I think UDP packets are limited to 64KB

Re: [Gambas-user] Gambas 3 first release candidate

2011-05-26 Thread Ian Haywood
ux packages, see https://launchpad.net/~ihaywood3/+archive/gambas3/+sourcepub/1741887/+listing-archive-extra Ian -- vRanger cuts backup time in half-while increasing security. With the market-leading solution for virtual backup

Re: [Gambas-user] Gambas 3 first release candidate

2011-05-26 Thread Ian Haywood
On Fri, May 27, 2011 at 12:08 PM, Ian Haywood wrote: > I have also changed the distro list to match Laurent's archlinux packages, I mean the binary *package* list sorry. PS the best way to get into Ubuntu and friends is to get the packages in Debian, then it will filter its way into

Re: [Gambas-user] What is faster: OPEN or File.Load?

2011-05-30 Thread Ian Haywood
ts so you can read the rest without opening them a second time. Ian -- vRanger cuts backup time in half-while increasing security. With the market-leading solution for virtual backup and recovery, you get blazing-fast,

Re: [Gambas-user] odd gb3 issue

2011-06-03 Thread Ian Haywood
m is the network is too fast for the CPU) . But maybe let users adjust this timeout value, if they have fast computers and a fast network they may be able to lower it. Ian -- Simplify data backup and recovery for your

Re: [Gambas-user] arithmetic operations on dates and times

2011-06-08 Thread Ian Haywood
everything else. This number can then be converted back to a date and displayed by the client, using the clients own localisation setting (not the servers) so users see the time in their own localisation, but servers and c

Re: [Gambas-user] gambas2 and gambas3 Natty

2011-06-24 Thread Ian Haywood
on will be the new gambas3 icon even for gambas2 files. longer term I'm not sure. The gambas3 icon file can't go anywhere else or have any other name as it is a debian standard. I'll research the options. Ian --

Re: [Gambas-user] gambas2 and gambas3 Natty

2011-06-25 Thread Ian Haywood
e to install G2 and G3 together using the --force-overwrite option, do you try this? Ian -- All the data continuously generated in your IT infrastructure contains a definitive record of customers, application performa

Re: [Gambas-user] using Sin() to produce a specific range of values

2011-07-09 Thread Ian Haywood
. this example project does this using 50 numbers, you can adjust the stepping in the FOR loop to change the number of numbers produced. Ian sin-0.0.1.tar.gz Description: GNU Zip compressed data -- All of the data genera

Re: [Gambas-user] Multiline RegExp

2011-07-26 Thread Ian Haywood
On Wed, Jul 27, 2011 at 8:34 AM, Bruce Bruen wrote: > regexp only (ever) works on a line by line basis by default yes, but: http://gambasdoc.org/help/comp/gb.pcre/regexp/dotall this makes the . cover newlines, so a regexp can span multiple lines in the string.

Re: [Gambas-user] Multiline RegExp

2011-07-27 Thread Ian Haywood
le for Regexp.Exec to have an offset parameter, this would allow more efficient searching loops. It would then be possible to write an iterator to grab all occurances of a regexp, and make it 'easy' like in Ruby/Perl. Ian -

Re: [Gambas-user] Gambas3 Debian Package

2011-08-17 Thread Ian Haywood
> prior to the full release of Gambas3? I have prepared debian packages and put them up for inclusion, currently waiting on a decision by the debian developers to include (well over 2 months, so I will follow up) Ian -- G

Re: [Gambas-user] Gambas Cloud

2011-08-27 Thread Ian Haywood
uot;clouds" would work just fine. If you wanted to go "serious cloud" you could run Gambas inside an Amazon EC2 instance and access via VNC or X. You could use SQLite in this situation. Ian -- EMC VNX: th

Re: [Gambas-user] Gambas app calling a PERL Script which calls a program (rtmpdump)

2011-09-02 Thread Ian Haywood
that gambas EXEC does in a gnome terminal, in the same current directory as your gambas programme would be in, and see what happens. Ian -- Special Offer -- Download ArcSight Logger for FREE! Finally, a world-class log m

Re: [Gambas-user] gambas3 and the hidden .src

2011-09-06 Thread Ian Haywood
ard UNIX tools such as ls and grep. Maybe I'm just a command-line diehard, but I *like* using those tools and so I agree with Karl. Also it is more "standard" as all other languages have their src directory without a dot. Ian

Re: [Gambas-user] Release of Gambas 3 RC3

2011-09-10 Thread Ian Haywood
binary packages. >> >> http://gambasdoc.org/help/doc/package > > Archlinux packages pushed to the repos Ubuntu packages at https://launchpad.net/~ihaywood3/+archive/gambas3 Ian signature.asc Description: OpenPGP digital signature

Re: [Gambas-user] Getting access to popup children of datebox

2011-09-12 Thread Ian Haywood
uld be enough. or maybe it only fires when the user closes the calendar/time control: that's a problem for our project and probably means we can't use a popup calendar after all. Ian -- Doing More with Less: The

Re: [Gambas-user] Release of Gambas 3 RC3. But I have a dream....

2011-09-17 Thread Ian Haywood
fd, then the program'ld enter into >> competition with ALSA. not sure that this matters: if you open the file under /proc it will link to the same underlying structure in kernelspace and ALSA won't know the difference. Maybe give it a try and i

Re: [Gambas-user] Release of Gambas 3 RC3. But I have a dream....

2011-09-18 Thread Ian Haywood
; first with zero, then with 1, then with 2, and so on... until approximately > 60. why wouldn't you use the fd number returned from the ALSA library: isn't that the whole point? Ian -- BlackBerry® DevCon Ame

Re: [Gambas-user] repository gambas 3 for ubuntu

2011-10-14 Thread Ian Haywood
On Sat, Oct 15, 2011 at 4:00 PM, Arnezt He wrote: > Is there any repository of gambas3 for ubuntu 11.04? Thank you for the > response. https://launchpad.net/~ihaywood3/+archive/gambas3 -- All the data continuously generat

[Gambas-user] Editor 'Split' function is reversed

2012-01-26 Thread Ian Roper
dor=Ubuntu DistributionRelease="Ubuntu 10.10" Desktop=Gnome [Gambas 2] Version=2.21.0 Path=/usr/bin/gbx2 [Gambas 3] Version=2.99.5 Path=/usr/local/bin/gbx3 [Libraries] Qt4=libQtCore.so.4.7.0 GTK+=libgtk-x11-2.0.so.0.2200.0 Revision (r4222) Regards, Ian Roper. Per

[Gambas-user] Code Folding Issue when used with 'Format page'

2012-01-26 Thread Ian Roper
ktop=Gnome [Gambas 2] Version=2.21.0 Path=/usr/bin/gbx2 [Gambas 3] Version=2.99.5 Path=/usr/local/bin/gbx3 [Libraries] Qt4=libQtCore.so.4.7.0 GTK+=libgtk-x11-2.0.so.0.2200.0 Revision (r4222) Regards, Ian Roper. Perth Western Australia. ---

[Gambas-user] Issues with 'double click' & Keypress events not working on some controls.

2012-01-26 Thread Ian Roper
Version=2.99.5 Path=/usr/local/bin/gbx3 [Libraries] Qt4=libQtCore.so.4.7.0 GTK+=libgtk-x11-2.0.so.0.2200.0 Revision (r4222) Regards, Ian Roper. Perth Western Australia. DoubleClickIssue.tar.gz Description: application/compressed-tar -

Re: [Gambas-user] Editor 'Split' function is reversed

2012-01-28 Thread Ian Roper
t the layout of the divided screens is as the menu options says. ;) so it's not an error. Regards, Ian Roper. On Fri, 2012-01-27 at 13:08 +0800, Ian Roper wrote: > Greetings, > In the code editor, if you select on 'right click' > > Advanced - View - Horizontal Split

[Gambas-user] Editor Control (gb.qt4.ext) - Some questions.

2012-02-04 Thread Ian Roper
flag ? Q: Is it possible to be able to set this to True/False to show line numbers in the control ? Regards, Ian Roper Perth - Western Australia. -- Try before you buy = See our experts in action! The most comprehensive o

[Gambas-user] gambas3 -V

2015-07-10 Thread ian . roper
Running gambas3 -V produces the result below I'm on Kubuntu 15.04 - Is this specific to this distro or small bug ? ian@ian-Kubuntu:~$ gambas3 -V 3.7.90 kf5.kiconthemes: "Theme tree: (Oxygen)" <---<<<<<< Running this test produced the expected result

Re: [Gambas-user] The interview on FLOSS

2015-09-19 Thread Ian Haywood
ably notice that I will never become an > english teacher. Your English was pretty easy to understand FYI "autodidact" *is* an English word, evidently it has the same meaning as French (your use of

Re: [Gambas-user] The interview on FLOSS

2015-09-19 Thread Ian Haywood
On Sat, Sep 19, 2015 at 11:21 PM, Ru Vuott wrote: >> "autodidact" *is* an English word, > > ..that doesn't come from english sure, can you think of a word that does? -- ___

[Gambas-user] running IDE with Qt5

2015-12-03 Thread Ian Haywood
is there a way to run the IDE with Qt5 only (not Qt4 at all) The reason is Qt4 webkit is getting pulled out of Debian, so we are not allowed to depend on it anymore. Ian -- Go from Idea to Many App Stores Faster with

Re: [Gambas-user] running IDE with Qt5

2015-12-03 Thread Ian Haywood
On Fri, Dec 4, 2015 at 1:10 AM, Benoît Minisini wrote: > Le 03/12/2015 11:47, Ian Haywood a écrit : >> is there a way to run the IDE with Qt5 only (not Qt4 at all) >> The reason is Qt4 webkit is getting pulled out of Debian, so we are >> not allowed to depend on it anymore.

Re: [Gambas-user] running IDE with Qt5

2015-12-05 Thread Ian Haywood
t4 which is probably what Debian will end up doing. Ian -- Go from Idea to Many App Stores Faster with Intel(R) XDK Give your users amazing mobile app experiences with Intel(R) XDK. Use one codebase in this all-in-one

Re: [Gambas-user] [Gambas Bug Tracker] Bug #835: gambas3 doesn't build with llvm > 3.5

2016-01-13 Thread Ian Haywood
tributions sitting in alioth git waiting for weeks/months to be uploaded. (unfortunately debian does not have an equivalent to "launchpad" for making third-party .debs available) Ian -- Site24x7 APM Insight: G

Re: [Gambas-user] [Gambas Bug Tracker] Bug #880: gambas-gb-pdf will not install

2016-01-17 Thread Ian Haywood
e been form the standard 14.04 repositories) Ian -- Site24x7 APM Insight: Get Deep Visibility into Application Performance APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month Monitor end-to-end web transactions a

Re: [Gambas-user] Debian problem step 3.5.4 to 3.8.4

2016-01-20 Thread Ian Haywood
Qt5 has a rich text editor (see http://doc.qt.io/qt-5/richtext.html) I don't see why that cannot be used. I'd have a crack at doing it myself but I have limited time and haven't used C++/Qt for many years so it would take some time to relearn. Would be

[Gambas-user] TextEdit on Qt5

2016-01-23 Thread Ian Haywood
s the docs wil lbe under qt5.ext.TextEdit) I suspect I'm missing something (i.e. if it's so easy presumably Benoit had a good reason for not doing it at the start) Anyway I hope this will kick the work along... as I said several of us *really need* TextEdit! Ian diff --git a/gb.qt4/src/m

Re: [Gambas-user] TextEdit on Qt5

2016-01-25 Thread Ian Haywood
Thanks heaps for doing this I have found one problem that blocks loading the qt5 component at all /usr/bin/gbi3: symbol lookup error: /usr/lib/gambas3/gb.qt5.so: undefined symbol: _ZTV14FixBreezeStyle On Sun, Jan 24, 2016 at 12:23 PM, Benoît Minisini wrote: > Le 24/01/2016 02:18, Moviga Technolog

Re: [Gambas-user] qt5

2016-06-14 Thread Ian Haywood
so it preferentially loads Qt5 (a bit of work). That will get the IDE working, but many other programs won't run (because Qt5 doesn't quite have the stability of Qt4, at least last time I checked) Sadly, my recommendation to all (our) users has been stick to Mint/Ubuntu and the PPAs for

Re: [Gambas-user] qt5

2016-06-16 Thread Ian Haywood
On Wed, Jun 15, 2016 at 5:40 AM, Benoît Minisini wrote: > Le 14/06/2016 13:21, Ian Haywood a écrit : >> >> The problem quite complicated. Gambas looks for Qt4 and Qt5. If both are >> found, >> Qt4 is loaded. > > No, if Qt5 and Qt4 are present, Qt5 is use

Re: [Gambas-user] qt5

2016-06-16 Thread Ian Haywood
theoretically) bridge the gap temporarily until qt5 > becomes more stable. Qt5 is pretty stable. The only real problem AFAICT is TextEdit isn't available in Qt5 in 3.8.4 This means you can't have TextEdit and WebKit in the same program at the same time.

Re: [Gambas-user] qt5

2016-06-16 Thread Ian Haywood
Will Qt5 have a HTML display widget of any sort? Ian -- What NetFlow Analyzer can do for you? Monitors network bandwidth and traffic patterns at an interface-level. Reveals which users, apps, and protocols are cons

[Gambas-user] Gambas Comparison constant Gb.Like - How does it work ?

2013-08-14 Thread Ian Roper
27; parameter I tried this: If TmpArry.Find("some",gb.like,0) > -1 then {/this does not work}// / If TmpArry.Find("some",gb.like,1) > -1 then {/this does not work}// /There was no difference in the results. Many thanks. Ian // ---

[Gambas-user] Fwd: Specifications for Gambas 3

2013-10-27 Thread Ian Haywood
or message comes up: Cannot load component > 'gb.desktop.gnome': cannot find component is there a "gambas3-gb-desktop-kde"? I didn't think so, if but there is you can use the same trick If not I'd pick some kde package that represents the desktop as use this as the oth

[Gambas-user] Gambas self-extracting installer (4)

2013-10-27 Thread Ian Haywood
ink "installing locally" is a good idea or particularly useful IMHO. In practice you will almost always need root access to install some dependency, so you might as well install the program itself the normal way in /usr/bin while you're at it. Ian -

[Gambas-user] Official release of Gambas 3.5

2013-10-27 Thread Ian Haywood
o make sure kendek is acknowledged!] The only problem remaining is manpages for gbs3 and gbw3: they exist but are not being installed properly for some reason Ian signature.asc Description: PGP signature -- October Webinar

Re: [Gambas-user] WIP Debian packages of Gambas

2013-10-29 Thread Ian Haywood
On Tue, Oct 29, 2013 at 12:44 AM, PICCORO McKAY Lenz wrote: > From: Ian Haywood > NOW must search and revise ALL files and sure for a right header of > license, and specified in the copyrithg file, this are the most > important task before uploading, if not some debian mantainers se

  1   2   >