Re: [Gambas-user] Can Gambas3 compiled program be reversed?

2015-11-10 Thread Randall Morgan
With enough time and talent anything can be reverse engineered! Gambas is no exception. This question has been asked a few times before. Take a look at the mailing list archives for a longer discussion and more details. On Tue, Nov 10, 2015 at 4:36 PM, martin p cristia

Re: [Gambas-user] Gambas highlight

2015-08-10 Thread Randall Morgan
Since Javascript is ran in the browser, you should be able to use any of the javascript processors like Prism, Enlighten, zsh-syntax-hilighting, etc. Most syntax highlighters use a config file or special class to set highlighting rules. There is a Tex processor plugin I use with Lyx that has

Re: [Gambas-user] Conversion of datacheckbox control value from text to integer

2015-07-16 Thread Randall Morgan
Yes, -1 for True and 0 for false. I would bet that the conversion from access changed boolean fields to string fields. I would add a column for boolean values and then insert the values based on the contents of the string field. Then drop the string fields and rename the boolean columns. Then I

Re: [Gambas-user] Using a Struct

2015-07-16 Thread Randall Morgan
Rolf, I think the structure description in the documentation may have mislead you. Structures are not real arrays and cannot be used like an array in most cases. But they are implemented as arrays. Structures are a data type. They organize your data into a manageable container. Your code only

Re: [Gambas-user] Using a Struct

2015-07-16 Thread Randall Morgan
Thanks Tobias, I am still a bit slow and fuzzy but doing better. I will slowly start doing more and I am working (very slowly) on a couple articles for the magazine. At the moment my energy is very limited On Thu, Jul 16, 2015 at 9:56 AM, Tobias Boege tabo...@gmail.com wrote: On Thu, 16

Re: [Gambas-user] New gb.form.statusicon component

2015-06-29 Thread Randall Morgan
Similar results on Ubuntu 12/04 LTS I notice the use org.kde. which may be an issue when kde isn't install... On Mon, Jun 29, 2015 at 5:08 PM, Adrien Prokopowicz adrien.prokopow...@gmail.com wrote: Le Mon, 29 Jun 2015 04:38:41 +0200, Benoît Minisini gam...@users.sourceforge.net a écrit:

Re: [Gambas-user] New gb.form.statusicon component

2015-06-28 Thread Randall Morgan
On Ubuntu 12.04 LTS I got this error: Got bus address: unix:abstract=/tmp/dbus-rpp0FNMf50,guid=8d26a2cc34953a9ab507658e014d Connected to accessibility bus at: unix:abstract=/tmp/dbus-rpp0FNMf50,guid=8d26a2cc34953a9ab507658e014d Registered DEC: true process 20705: arguments to

Re: [Gambas-user] Running website from server

2015-06-25 Thread Randall Morgan
; This is the expected behavior I believe. You need to us gbw3 and not grbr3 to serve your your site. See the wiki: http://gambaswiki.org/wiki/doc/serverpage On Thu, Jun 25, 2015 at 11:35 AM, Moviga Technologies mov...@mykolab.ch wrote: Hi! I have made a website with Gambas, and uploaded it

Re: [Gambas-user] [GambasMag] Articles for Feb 2015 issue

2014-11-30 Thread Randall Morgan
Fishburne kevinfishbu...@eightvirtues.com wrote: On 11/24/2014 09:33 AM, Randall Morgan wrote: Hi Tobi, I have had some health issues and so I haven't been able to put much time into the magazine. I have also moved 1600 miles from where I was and that with the health issues delayed any work

Re: [Gambas-user] Gambas ready for Ubuntu Phone?

2014-09-27 Thread Randall Morgan
Try Gambas compiled for Arm. I've been told it can be made to run on Android. But I haven't tried it myself. On Sat, Sep 27, 2014 at 9:48 AM, Benoît Minisini gam...@users.sourceforge.net wrote: Le 27/09/2014 18:38, jockerfox a écrit : Hi to all, is possible to run gambas project on ubutu

Re: [Gambas-user] DateBox popup transparency issue

2014-09-23 Thread Randall Morgan
Hi Beniot, Try this for checking desktops. It works for me on Ubuntu 12.04. This of course is a BASK script... if [ $XDG_CURRENT_DESKTOP = ]then desktop=$(echo $XDG_DATA_DIRS | sed 's/.*\(xfce\|kde\|gnome\).*/\1/')else desktop=$XDG_CURRENT_DESKTOPfi desktop=${desktop,,} # convert to lower

[Gambas-user] Wiki Update

2014-09-17 Thread Randall Morgan
A colleague pointed out to me that the wiki does not specify is Gambas arrays are Zero or One based index. I told him zero based. However, I though the wiki maintainer might want to add that to the wiki page for arrays. -- If you ask me if it can be done. The answer is YES, it can always be

Re: [Gambas-user] Wiki Update

2014-09-17 Thread Randall Morgan
We were looking at: http://gambaswiki.org/wiki/cat/arraydecl But don't all array indices in Gambas begin at Zero? On Wed, Sep 17, 2014 at 5:15 AM, Tobias Boege tabo...@gmail.com wrote: On Wed, 17 Sep 2014, Randall Morgan wrote: A colleague pointed out to me that the wiki does not specify

Re: [Gambas-user] Wiki Update

2014-09-17 Thread Randall Morgan
I am talking about native gambas arrays of any standard gambas type On Wed, Sep 17, 2014 at 6:04 AM, Tobias Boege tabo...@gmail.com wrote: On Wed, 17 Sep 2014, Randall Morgan wrote: We were looking at: http://gambaswiki.org/wiki/cat/arraydecl But don't all array indices in Gambas begin

Re: [Gambas-user] Building /trunk, deprecated documentation

2014-09-17 Thread Randall Morgan
Hi John, I run a system similar to yours. Still running 12.04 LTS and have not only routinely built Gambas 3 from source but, I have gone back and forth between the repo versions and the trunk code. If you take care to ensure all the listed prerequisites are installed, Gambas 3 build fine and

Re: [Gambas-user] ...And what is planned for Gambas 3.7

2014-09-16 Thread Randall Morgan
I would allow the user to chose during installation if basic help files and basic example files were to be downloaded locally. But let the user know that there are more available online. That way those like myself who often travel to where there is no internet can decide what they need to take

Re: [Gambas-user] Skipped 'trunk/comp/src/gb.report/.info' -- Node remains in conflict

2014-09-16 Thread Randall Morgan
Ru, You would use the same argument but in a new directory or delete the current version in the current directory and re-run $ svn checkout svn:// svn.code.sf.net/p/gambas/code/gambas/trunk On Tue, Sep 16, 2014 at 8:07 AM, Ru Vuott vu...@yahoo.it wrote: If you don't know how to deal with svn

[Gambas-user] Hot to get Class Name of Object

2014-09-16 Thread Randall Morgan
Hi All, This may be answered else where but I was unable to locate an answer using google. I need to be able to query an object for it's class name. I have an object that gets passed an owner object then, the owner is changed to a new object of a different class (think fire balls being tossed a

Re: [Gambas-user] Hot to get Class Name of Object

2014-09-16 Thread Randall Morgan
Thanks Tobi On Tue, Sep 16, 2014 at 7:29 PM, Tobias Boege tabo...@gmail.com wrote: On Tue, 16 Sep 2014, Randall Morgan wrote: Hi All, This may be answered else where but I was unable to locate an answer using google. I need to be able to query an object for it's class name. I have

Re: [Gambas-user] ...And what is planned for Gambas 3.7

2014-09-15 Thread Randall Morgan
Just my thoughts, I think a web front end for the website to allow searching of project would be important. Also, perhaps projects should be sorted into components and programs... On Mon, Sep 15, 2014 at 5:03 PM, Benoît Minisini gam...@users.sourceforge.net wrote: Hi again, For the next

[Gambas-user] Missing Keyword in Wiki

2014-09-13 Thread Randall Morgan
This is just an FYI for the Wiki maintainers. The Each keyword is missing from the Language index page. It can be found in the Loop Constructs page but should be added to the Language Index page as well. That will give users a quick way to find it. -- If you ask me if it can be done. The answer

Re: [Gambas-user] WebView can not Reload/Refresh

2014-09-02 Thread Randall Morgan
Is the page being cached? If so, you will need to empty the cache to see the new content. On Tue, Sep 2, 2014 at 7:45 AM, abbat81 abbat...@mail.ru wrote: Hi, AIfter once WebView loaded a content I can't renew those content which is changed. Public Sub Button1_Click()

Re: [Gambas-user] R: Font style in Printing Example

2014-09-01 Thread Randall Morgan
Abbat81, You really didn't give any details about your text. Is the text being displayed as a web page or in a gui control? If a control which one? Or is the text being used in a console app? Give a few more details or attach your project and people can help you better. On Mon, Sep 1, 2014

Re: [Gambas-user] How to use WBrowser.Print(True)

2014-09-01 Thread Randall Morgan
OK, the thread was split so I didn't see this earlier. Sorry. On Mon, Sep 1, 2014 at 1:01 PM, Tobias Boege tabo...@gmail.com wrote: On Mon, 01 Sep 2014, abbat81 wrote: Hi, I want to print HTML by WBrowser.Print(True) but I get: Unknown symbol 'Print' in class in WebView Yes,

Re: [Gambas-user] Gambas Magazine - Update

2014-08-23 Thread Randall Morgan
CJ, Thanks! And thanks to all those who have helped and continue to help! Like I said, you don't need to be an expert to write an article or to help. You only have to be willing. I can find translators and proof readers and we will all get better as we progress forward. The magazine is very

Re: [Gambas-user] [Gambas-devel] Gambas Magazine - Update

2014-08-21 Thread Randall Morgan
. Thanks for you help (again) Randall On Thu, Aug 21, 2014 at 2:33 PM, Tobias Boege tabo...@gmail.com wrote: On Wed, 20 Aug 2014, Randall Morgan wrote: Hi Folks, First thank you to all who provided comments and feed back on the first issue of Gambas Magazine. Now that I am back

Re: [Gambas-user] [Gambas-devel] Gambas Magazine - Update

2014-08-21 Thread Randall Morgan
article that matches the theme or is of importance to the Gambas community may be included at the discretion of the editors. Hope this helps Thanks again, Randall On Thu, Aug 21, 2014 at 4:29 PM, Randall Morgan rmorga...@gmail.com wrote: Hi Tobias, I can work up a list of topics for a 12

[Gambas-user] Gambas Magazine - Update

2014-08-20 Thread Randall Morgan
Hi Folks, First thank you to all who provided comments and feed back on the first issue of Gambas Magazine. Now that I am back in the city I am focused on the next issue of Gambas Magazine which will be released on October 1st. As usually, we are in need of articles of interest to Gambas users

Re: [Gambas-user] Issue 548 in gambas: complete code of htttp post example

2014-08-04 Thread Randall Morgan
PHP Code is simply a web script and while I have not seen the code, it is of no real value to a Gambas Developer. If you want to write php yes. Gambas no! That fact is it shouldn't make any difference whether the server side is using php, asp, java, html, etc... It only matters that the server

Re: [Gambas-user] Settings

2014-07-27 Thread Randall Morgan
Can you attached your project? On Sun, Jul 27, 2014 at 6:46 PM, Shane shanep1...@tpg.com.au wrote: Something strange is going on here i just put in the code Print Settings.Path and i get the same error but the settings in my other projects work fine? On 28/07/14 10:35, Shane wrote:

Re: [Gambas-user] Settings

2014-07-27 Thread Randall Morgan
/0B7AcxnE14xeaLVFDUGhja19NcUU/edit?usp=sharing On 28/07/14 11:54, Shane wrote: I'll try its 3.8MB is that to big ? On 28/07/14 11:38, Randall Morgan wrote: Can you attached your project? On Sun, Jul 27, 2014 at 6:46 PM, Shane shanep1...@tpg.com.au wrote: Something strange is going on here i just put

Re: [Gambas-user] Playing Music

2014-07-20 Thread Randall Morgan
Hi, I'm betting you are trying to play music with one of the audio file options. But XML Sheet music is simply sheet music scores. Look up http://www.musicxml.com/for-developers/ for information on the format for instrument voices and notes. You will need to convert the music scores to audio

Re: [Gambas-user] RFC: How to identify vertices and edges in a Graph class?

2014-07-06 Thread Randall Morgan
Found this: http://www.mathsisfun.com/geometry/vertices-faces-edges.html On Sun, Jul 6, 2014 at 11:12 AM, Randall Morgan rmorga...@gmail.com wrote: If I recall correctly: A vertex can be thought of as a corner while an edge is a line segment connecting to a vertex at both ends. Basically

Re: [Gambas-user] IDE Hint color washed out

2014-06-30 Thread Randall Morgan
I reported this on ubuntu 12.04 LTS a while back... Benoit was on Vacation at the time though. On Mon, Jun 30, 2014 at 11:43 AM, Jim Provan jpro...@gmail.com wrote: I am on Ubuntu 14.04. The hint color is a beige or yellow with white lettering. It isn't readable. Has anyone else experienced

Re: [Gambas-user] creating gb.qt4.webkit pages using gb.markdown etc (quick question)

2014-06-27 Thread Randall Morgan
I am not quit sure I understand what you mean the best way to build the how to form. I use a web editor like Dreamweaver, Aptana Studio, etc. to create template pages. These pages are stored in the project folder. I then load the data needed to complete the page from a database, text or xml file.

Re: [Gambas-user] DirChooser does not see symlink'd directories

2014-06-12 Thread Randall Morgan
I reported this maybe two weeks ago On Thu, Jun 12, 2014 at 12:12 PM, Tobias Boege tabo...@gmail.com wrote: Hi, I recently (maybe it was yesterday?) rolled an overdue Gambas update and I just noticed that the IDE won't let me browse to my projects directory anymore which I like to

Re: [Gambas-user] DirChooser does not see symlink'd directories

2014-06-12 Thread Randall Morgan
LOL. I t is a busy list. You can't catch everything... I might have posted it to the devel list instead of the user list... On Thu, Jun 12, 2014 at 12:22 PM, Tobias Boege tabo...@gmail.com wrote: On Thu, 12 Jun 2014, Randall Morgan wrote: I reported this maybe two weeks ago Ouch

Re: [Gambas-user] gambas tutorials / android

2014-06-08 Thread Randall Morgan
Here are a few places: http://whiteislandsoftware.com/ http://gambaswiki.org/wiki http://gambasdoc.org/ http://www.gambas-buch.de/ (Use google translate) http://howtogambas.org/ http://www.gambasmag.com (coming soon) On Sun, Jun 8, 2014 at 10:14 AM, Timothy.a.Case timothy.a.c...@gmail.com

Re: [Gambas-user] UGD demo

2014-06-06 Thread Randall Morgan
I think GFA was for the Atari ST. It was used some for game development. One thing I recall it had was inline assembler code. But I think the last version of GFA was for Windows 32-bit. I never used it but I had a friend with an ST who was trying to learn to write games with it many many years

Re: [Gambas-user] Something has changed in Paint or DrawintArea?

2014-06-06 Thread Randall Morgan
I get an error on line 32 when I try to run this... Shell mkdir -p /tmp/$USER/ Shell DISPLAY=:0 scrot /tmp/$USER/fondo.jpg -q 100 Wait Error -- Me.Picture = Picture.Load(/tmp/ User.Name /fondo.jpg) -- Unable to load picture Me.X = 0 Me.Y = 0 Using Ubuntu 12.04 LTS with latest

Re: [Gambas-user] Accessing the nth item in a collection

2014-06-04 Thread Randall Morgan
In some languages, FOR EACH doesn't guaranty the order of the items processed. It only guaranties you will process each item in the collection. I think it is a bad habit to use For Each when order of processing is important. Unless you are using an array or other data structure that is known to

[Gambas-user] Changing Error Background Color or Font Color

2014-06-04 Thread Randall Morgan
Hi Folks, I've had an issue for sometime now and I haven't found the solution yet. Anytime I get an error message in the IDE it is displayed as a pale yellow background with white text. It is almost impossible to read! Is there some way to change the font color or background color of just the

Re: [Gambas-user] Changing Error Background Color or Font Color

2014-06-04 Thread Randall Morgan
Sorry, meant to attach a screen shot of the issue. So here it is. Again, just looking for a way to changed the background of font color of the popup error messages so they will be readable. On Wed, Jun 4, 2014 at 2:40 PM, Randall Morgan rmorga...@gmail.com wrote: Hi Folks, I've had an issue

Re: [Gambas-user] Questions on where *.webpage files should be put and how to call them

2014-05-29 Thread Randall Morgan
Paul, Take a good look at the small wiki example. Also read up on common gateway interfaces. CGI is just a standard method of talking to the webserver. Basically, when a web request is made, the server looks for the script or program to run and it's interpreter. The server has to be configure for

[Gambas-user] Gambas does not open browser defines in options.

2014-05-29 Thread Randall Morgan
I am running the latest version of gambas from the daily repo on Ubuntu 12.04 lts. It seems that gambas does not respect the browser chosen in the options panel. Can someone else confirm this? -- If you ask me if it can be done. The answer is YES, it can always be done. The correct questions

Re: [Gambas-user] data exchange at real time

2014-05-24 Thread Randall Morgan
Most Network types are far from realtime! They typically do not send data packets at regular time intervals and are usually at the mercy of the kernel to call them. There are specialized industrial realtime network though... But in fact nothing in a computer is realtime. Just the fact that you

Re: [Gambas-user] Keycode Enter

2014-05-24 Thread Randall Morgan
I'll bet you are pressing the return key on the qwerty keyboard and not the enter key on the numeric keypad. Since system manufacturers have started printing the word Enter on the Return key this becomes confusing for new developers. Most return keys still have the return symbol (a small down then

Re: [Gambas-user] GamBOS Alpha 3 released

2014-05-23 Thread Randall Morgan
Hi Willy, You may want to check out the free advertising available at www.gambasmag.com to help promote GamBOS. Infact, one of the articles for the first issue (due to be released Jul, 1st, 2014) introduces GamBOS and shows how to install it on Windows using VirtualBox. If interested, see

Re: [Gambas-user] -Inf

2014-05-19 Thread Randall Morgan
JAT: Id be checking for an over or under flow on one of the math functions On Sun, May 18, 2014 at 7:24 PM, Kevin Fishburne kevinfishbu...@eightvirtues.com wrote: I have an interpolation algorithm that continually moves the current value toward its target value in increments increased by

Re: [Gambas-user] Daily Builds PPA stuck at gambas3_3.5.99.1+svn20140509...

2014-05-19 Thread Randall Morgan
Thanks Sebastian! On Mon, May 19, 2014 at 4:25 PM, Sebastian Kulesz sebi...@gmail.com wrote: Hey! Sorry it took me this long. I'm a full time student and time is scarce. New builds are on the way. Trusty already has an updated version but if forgot to add the new packages to the gambas3

Re: [Gambas-user] Community Component Repo

2014-05-17 Thread Randall Morgan
: Le 17/05/2014 07:31, Randall Morgan a écrit : If we produce the Gambas User Component Directory, should we provide snv hosting for the project or just ask for the source files to be uploaded? Or maybe provide a mechanism for pulling from an svn repository elsewhere? Your thoughts? I

Re: [Gambas-user] Wiki Source

2014-05-17 Thread Randall Morgan
Thanks. I'll take a look at it. On Sat, May 17, 2014 at 4:33 AM, Tobias Boege tabo...@gmail.com wrote: On Fri, 16 May 2014, Randall Morgan wrote: Hi Tobias, Where can I find the source code for the wiki? In the source tree under app/src, you see the three wikis: - doc.cgi, the old

Re: [Gambas-user] JIT problem

2014-05-17 Thread Randall Morgan
Interesting. I too seem to have not had an update since 5-9-2014. And I am using the daily repo I tried uninstalling and re-installing and it did not help. On Sat, May 17, 2014 at 6:24 AM, Roki n.rogozar...@gmail.com wrote: Thank you Willie for your response. I still do not get any

Re: [Gambas-user] JIT problem

2014-05-17 Thread Randall Morgan
Here's what I'm pulling from the ppa: http://ppa.launchpad.net/pool/main/g/gambas3/gambas3_3.5.99.1+svn20140509+build42~ubuntu12.04.1 And i have done a sudo apt-get update... On Sat, May 17, 2014 at 6:58 AM, Randall Morgan rmorga...@gmail.com wrote: Interesting. I too seem to have not had

[Gambas-user] Community Component Repo

2014-05-16 Thread Randall Morgan
Hi Everyone, Is there a standard place on the web for folks to upload and share their gambas components? If not, do you think it would be a good idea to create such a place. Something similar to the Wordpress plugin site maybe A place where folks can upload and share their components,

Re: [Gambas-user] Community Component Repo

2014-05-16 Thread Randall Morgan
I have seen Gambas growing in popularity over the past few years, and I feel something like this could help it grow even more. I think one of the reasons we see so few components is the lack of a centralized place to host them. Giving a component author a place to host (even if it is just a wiki

Re: [Gambas-user] Community Component Repo

2014-05-16 Thread Randall Morgan
Bruen bbr...@paddys-hill.net wrote: On Fri, 16 May 2014 22:31:02 +0200 Benoît Minisini gam...@users.sourceforge.net wrote: Le 16/05/2014 19:31, Randall Morgan a écrit : I have seen Gambas growing in popularity over the past few years, and I feel something like this could help it grow even

Re: [Gambas-user] Community Component Repo

2014-05-16 Thread Randall Morgan
, 2014 at 4:50 PM, Randall Morgan rmorga...@gmail.com wrote: LOL I've had your site's component page sitting open in my browser for two days now. Along with others I have found components on. Some of your components like the list manger are indeed general components that others will find useful

Re: [Gambas-user] Community Component Repo

2014-05-16 Thread Randall Morgan
Benoit, To prevent name clashes we could invent a naming scheme that included the publisher's account name or a portion there of and then require account names to be unique. I am sure there are other methods we could use as well. On Fri, May 16, 2014 at 4:53 PM, Randall Morgan rmorga

Re: [Gambas-user] Community Component Repo

2014-05-16 Thread Randall Morgan
work on a gambas implementation for a more complete system. Any thoughts on that approach? On Fri, May 16, 2014 at 4:56 PM, Randall Morgan rmorga...@gmail.com wrote: Benoit, To prevent name clashes we could invent a naming scheme that included the publisher's account name or a portion

[Gambas-user] Wiki Source

2014-05-16 Thread Randall Morgan
Hi Tobias, Where can I find the source code for the wiki? -- If you ask me if it can be done. The answer is YES, it can always be done. The correct questions however are... What will it cost, and how long will it take?

Re: [Gambas-user] Community Component Repo

2014-05-16 Thread Randall Morgan
If we produce the Gambas User Component Directory, should we provide snv hosting for the project or just ask for the source files to be uploaded? Or maybe provide a mechanism for pulling from an svn repository elsewhere? Your thoughts? On Fri, May 16, 2014 at 5:03 PM, Randall Morgan rmorga

Re: [Gambas-user] Feature request: Option to create .gitignore in new Project dialog

2014-05-15 Thread Randall Morgan
I myself was just looking into using git with Gambas. I'd be very interested in anything you guys have to add. If anyone would like to write an article about it for Gambas Magazine let me know On Thu, May 15, 2014 at 1:31 PM, Jussi Lahtinen jussi.lahti...@gmail.comwrote: Better: the IDE

Re: [Gambas-user] A strategical move for two communities: Gambas and The GNU Project

2014-05-13 Thread Randall Morgan
I too have mixed feelings about GNU. However, without them I doubt there would be as much OSS as there is today. In that respect and support them. But they do force their will on the projects under them and while I understand the need for following standards, I don't like that they try to dictate

Re: [Gambas-user] My appreciation and thanks

2014-05-13 Thread Randall Morgan
Jb, I'd be interested in learning more about your church apps On Thu, May 8, 2014 at 8:17 AM, Jb Skaggs jbskagg...@gmail.com wrote: I started using Gambas in 2007 / 08 and quit in 2010 becuase of job changes and going to windows only systems I lost much of what I had learned. But I

Re: [Gambas-user] Timer Error: QTimer can only be used with threads started with QThread

2014-05-12 Thread Randall Morgan
of the LED component in df.measurement by Daniel Fuchs circa 2008 written for GB2. As always, thanks for your help! On Fri, May 9, 2014 at 12:36 AM, Benoît Minisini gam...@users.sourceforge.net wrote: Le 09/05/2014 05:25, Randall Morgan a écrit : Hi Folks, I'm creating a simple component

Re: [Gambas-user] Several years ago I finished a application for writers in gambas2 I need some advice for rewriting

2014-05-09 Thread Randall Morgan
If you are wanting to make this one (or more) file(s). You might consider wrapping it in an XML scheme. Just a thought On Fri, May 9, 2014 at 3:59 PM, Jb Skaggs jbskagg...@gmail.com wrote: This is basically a fancy editor that is broken down into scenes, chapters My question is the best

Re: [Gambas-user] Report and Settings

2014-05-08 Thread Randall Morgan
with the code. Accidentally noticed that when uncheck gb.settings from the component tab, the review of a report, run without any problem. I hope that now I was clear enough about the problem. On 05/07/2014 11:27 PM, Randall Morgan wrote: Can you supply your code? You don't give enough details

[Gambas-user] Timer Error: QTimer can only be used with threads started with QThread

2014-05-08 Thread Randall Morgan
Hi Folks, I'm creating a simple component that requires two timers. The component uses gb.qt4. However, anytime I use the timers I get this error: QTimer can only be used with threads started with QThread. Any ideas how to solve this? I am running Ubuntu 12.04 with latest updates. [System]

Re: [Gambas-user] Report and Settings

2014-05-07 Thread Randall Morgan
Can you supply your code? You don't give enough details for anyone to be able to help. On Wed, May 7, 2014 at 2:11 PM, Roki n.rogozar...@gmail.com wrote: Hello everyone, I'm new here! Here's my question!? When I add gb.settings component in my project, a report returning this error (type

Re: [Gambas-user] UCase$()

2014-04-23 Thread Randall Morgan
This is not a bug as the docs say that Ucase$ does not work with UTF-8 string encoding. Try String.Ucase(). On Wed, Apr 23, 2014 at 7:02 PM, Pino Zollo pinozo...@gmail.com wrote: UCase$() does not work with ñ and accented vowels. Try this: Debug UCase$(ñ), UCase$(á), UCase$(à),

Re: [Gambas-user] Calling a function via variable name

2014-04-17 Thread Randall Morgan
...@gmail.com wrote: On Wed, 16 Apr 2014, Randall Morgan wrote: I'm hoping someone here can help me. I am trying to port a genetic program from C to Gambas 3. The original code passes various function as pointers in an array. They are then called using the function pointer. How can I best pass

[Gambas-user] Calling a function via variable name

2014-04-16 Thread Randall Morgan
I'm hoping someone here can help me. I am trying to port a genetic program from C to Gambas 3. The original code passes various function as pointers in an array. They are then called using the function pointer. How can I best pass functions around in Gambas via variable. FYI: This program

Re: [Gambas-user] R: morse code sound ?

2014-02-07 Thread Randall Morgan
Morse Code is a binary code. An audible binary code. It has two states. Long tone or short tone. I used the similarity between Morse Code and Binary ASCII text to help teach how computers represent text in binary many years ago. I am sure you could find Morse code audio files (They provide them

Re: [Gambas-user] R: morse code sound ?

2014-02-07 Thread Randall Morgan
It seems like playing a simple tone is something that should be a primitive in the Gambas Language... A simple Play(frequency, duration) type of function as was found in many of the early BASIC languages. Am I the only one who think like this? On Fri, Feb 7, 2014 at 4:15 PM, Caveat

Re: [Gambas-user] R: morse code sound ?

2014-02-07 Thread Randall Morgan
:07 PM, Bruce bbr...@paddys-hill.net wrote: On Fri, 2014-02-07 at 18:15 -0800, Randall Morgan wrote: It seems like playing a simple tone is something that should be a primitive in the Gambas Language... A simple Play(frequency, duration) type of function as was found in many of the early

Re: [Gambas-user] Serial port control

2013-12-22 Thread Randall Morgan
As I recall gb serial is steam based and so you would handle buffers via the stream not the serial object. On Sun, Dec 22, 2013 at 3:01 PM, Carl Nilsson nils...@iinet.net.au wrote: G'day all: Now with Gambas 3 installed, I want to get on with porting my running software from VB6/Windows. It

Re: [Gambas-user] Serial port control

2013-12-22 Thread Randall Morgan
It has been a long while since I have used the serial component of GB but I have a project starting in which I will need to re-acquaint myself with it. The stream can be setup as blocking or non-blocking. The PC uses either polling or interrupt when the port is opened. So trying to manage the

Re: [Gambas-user] Serial port control

2013-12-22 Thread Randall Morgan
I think the RTheshold of VB simply sets the byte count that must accumulate in the receive buffer before a comm event is triggered. It doesn't do anything else. In the background VB is still polling the buffer and looking at the byte count. You can do this in GB but you will have to write it

Re: [Gambas-user] A little article on Gambas on Phoronix

2013-11-27 Thread Randall Morgan
When I think of mission critical, I think of things that could cost someone's life if failure occurred. Things like, aircraft guidance systems, embedded medical devices, automotive steering and breaking systems, rail switching systems, etc. You can argue that almost any software is mission

Re: [Gambas-user] A little article on Gambas on Phoronix

2013-11-26 Thread Randall Morgan
Ok, I'll give my two cents worth... BASIC has gotten a bad wrap and it is now vogue to knock BASIC. The statement someone made in the article comments, something to the fact that Anyone who has been exposed to BASIC cannot be a good programmer is crap. BASIC was the first language for many GREAT

Re: [Gambas-user] Key code constant wrong?

2013-11-15 Thread Randall Morgan
15, 2013 at 4:34 AM, Fabien Bodard gambas...@gmail.com wrote: You are all so old ? 2013/11/11 Randall Morgan rmorga...@gmail.com: BTW, Most Enter Keys on Qwerty keyboards still maintain the old line-feed/Carriage-Return Arrow. An arrow that goes down and then to the left. Does your laptop

Re: [Gambas-user] sge component and md2 file modeling software

2013-11-14 Thread Randall Morgan
Misfit, Fragmotion, and Quake 2 Model Editor (native support) Blender, Cenima 4D, and Studio Max (all with plugins) Marvelous Designer (for character clothing development) Checkout: https://dev.metaio.com/content-creation/3d-animation/format/md2/ GameDev ought to have some info as well On

Re: [Gambas-user] sge component and md2 file modeling software

2013-11-14 Thread Randall Morgan
Yes, I do think adding support for newer model types would be good. Perhaps even add support for models done in solid works On Thu, Nov 14, 2013 at 4:34 AM, Fabien Bodard gambas...@gmail.com wrote: Le 14 nov. 2013 06:14, Kevin Fishburne kevinfishbu...@eightvirtues.com a écrit : Using

Re: [Gambas-user] Key code constant wrong?

2013-11-11 Thread Randall Morgan
differently too. Good and bad. -Fernando -- Original Message --- From: Randall Morgan rmorga...@gmail.com To: mailing list for gambas users gambas-user@lists.sourceforge.net Sent: Sun, 10 Nov 2013 20:01:31 -0800 Subject: Re: [Gambas-user] Key code constant wrong

Re: [Gambas-user] Key code constant wrong?

2013-11-10 Thread Randall Morgan
This is an interesting thread If you look back at some of the early keyboards you will see that they did name the two keys differently. And this was a hold over from the use of Qwerty keyboards on teletypes and typewriters. The key on the text (main) keyboard is the return key. On teletypes

Re: [Gambas-user] Gambas and MS SQL

2013-10-18 Thread Randall Morgan
This question was asked a few months ago. so you might want to search the list archive. You might also want to look at: This question was asked a few months ago. It is also possible to write a simple client on the Windows db server and link to it over the network. Back around 2000 there was a

Re: [Gambas-user] Gambas and MS SQL

2013-10-18 Thread Randall Morgan
Sorry, I forgot the link to the article: http://www.easysoft.com/products/data_access/odbc-sql-server-driver/getting-started.html On Fri, Oct 18, 2013 at 4:34 AM, Randall Morgan rmorga...@gmail.com wrote: This question was asked a few months ago. so you might want to search the list archive

Re: [Gambas-user] Charts in Gambas: alternatives to Chart

2013-10-16 Thread Randall Morgan
On 14/10/13 17:30, Randall Morgan wrote: NO, I allow python to open the chart window so it floats above the Gambas application. Same with Octave. On Sun, Oct 13, 2013 at 11:21 PM, Alberto Caballero alberto.ka...@gmail.com wrote: Hi Randall, Thanks for your advice. Do

[Gambas-user] How to Get UTF-8 Character Codes

2013-10-15 Thread Randall Morgan
Hi All, I was looking at the online Docs and I see a function Code(). The docs say it should return the utf-8 character code. However, in Gambas 3.5.0 this function gives an unknown identifier error. Does anyone else experience this issue? Thanks for the feedback -- If you ask me if it can be

Re: [Gambas-user] How to Get UTF-8 Character Codes

2013-10-15 Thread Randall Morgan
I meant String.Code On Tue, Oct 15, 2013 at 5:33 AM, Jussi Lahtinen jussi.lahti...@gmail.comwrote: I cannot find such function. You mean Key.Code, String.Code, or..? Jussi On Tue, Oct 15, 2013 at 2:34 PM, Randall Morgan rmorga...@gmail.com wrote: Hi All, I was looking

Re: [Gambas-user] How to Get UTF-8 Character Codes

2013-10-15 Thread Randall Morgan
Never mind... I was linking to an old version On Tue, Oct 15, 2013 at 7:00 AM, Randall Morgan rmorga...@gmail.com wrote: I meant String.Code On Tue, Oct 15, 2013 at 5:33 AM, Jussi Lahtinen jussi.lahti...@gmail.comwrote: I cannot find such function. You mean Key.Code

Re: [Gambas-user] Charts in Gambas: alternatives to Chart

2013-10-14 Thread Randall Morgan
? How do you draw it inside a DrawingArea? Regards, Alberto 2013/10/13 Randall Morgan rmorga...@gmail.com I have been successful in using both Python and Octave for charting. Basically, you write out your data into a file and then write a python or octave script and call it passing

Re: [Gambas-user] Charts in Gambas: alternatives to Chart

2013-10-13 Thread Randall Morgan
I have been successful in using both Python and Octave for charting. Basically, you write out your data into a file and then write a python or octave script and call it passing your data file. One note, use full paths as Gambas will prefix and relative path with the Gambas application's directory.

Re: [Gambas-user] Different behaviour of dialog

2013-10-13 Thread Randall Morgan
IMHO I do think this should be addressed as Willy says it will lead to confusion. Adding a component shouldn't changed the behavior of something as routine as opening a file unless the component specifically deals with that behavior. On Sun, Oct 13, 2013 at 9:03 AM, Willy Raets

Re: [Gambas-user] [slightly OT] No Problem with Gambas or MySql!

2013-10-07 Thread Randall Morgan
How old is this database? Is it MySQL or MSSQL? I ask because there was a time when databases did not support transactions. So some db designers did indeed use temporary tables for what was called scratch tables. These were tables where updates were collected over a period of time and then batch

Re: [Gambas-user] [slightly OT] No Problem with Gambas or MySql!

2013-10-06 Thread Randall Morgan
A simple explanation as to why you do not repeat data in a rational database. (Very simplistic): Rational or Relational data bases normalize data so that any usage of a single bit of data is stored only once. This allows the data to be edited in only one location and also requires the least

Re: [Gambas-user] [slightly OT] No Problem with Gambas or MySql!

2013-10-06 Thread Randall Morgan
not yet directly supported by Gambas. But 99% of databases are indeed relational and even those that are not typically carry along of the ideas from relational databases. On Sun, Oct 6, 2013 at 11:17 AM, Randall Morgan rmorga...@gmail.com wrote: A simple explanation as to why you do not repeat

Re: [Gambas-user] gb.Chart capabilities

2013-09-24 Thread Randall Morgan
I would agree! There are many mathematical applications for graph types and several data structures for them Avoiding the use of the word graph and using plot would be much better. On Tue, Sep 24, 2013 at 7:11 AM, Tobias Boege tabo...@gmail.com wrote: On Mon, 23 Sep 2013, Fabien Bodard wrote:

[Gambas-user] IDE Console Window

2013-09-24 Thread Randall Morgan
Hi All, I am running the GambOS with all updates, on a virtual machine under vbox on a Ubuntu 12.04 host. I have noticed that the short-cut key F11 now maximized and contracts the window instead of opening and closing the console window at the bottom of the IDE. Is this a bug or something on my

  1   2   3   >