Re: [Gambas-user] How to Change Keyboard Layout

2018-10-02 Thread Charlie Ogier
T" Then **Print sLine** **Next** ** End * Output using a UK (gb = Great Britain) keyboard is: - *XKBLAYOUT="gb" *Charlie* * On 01/10/18 22:01, Wael M via Gambas-user wrote: thank you very much Lee you solved it I used: Desktop.SendKeys("[Alt_L] + [Shift_L]") so anoth

Re: [Gambas-user] JSON Parsing

2017-09-10 Thread Charlie Ogier
values, but attempts to retrieve any other column results in null. Any help is greatly appreciated. Sincerely, Brad R. Doyle Hi Brad, Have a look at the attached example which uses the URL in your post. Charlie ForBrad.tar.gz Description: application/gzip

[Gambas-user] size limit for files at Gambas Bug Tracker

2017-09-02 Thread Charlie Reinl
Salut Benoît, is there a size limit for files at Gambas Bug Tracker? I wanted attach a 6,5 MB valgrind output, but the Gambas Bug Tracker crashed while sending. -- Amicalement Charlie -- Check out the vibrant tech

[Gambas-user] gambas3 debugging

2017-09-02 Thread Charlie Reinl
Salut, does anyone have something like a 'How debug with the Gambas3-IDE' in English? -- Amicalement Charlie -- Check out the vibrant tech community on one of the world's most engaging tech sites, Sla

Re: [Gambas-user] Switching to GitLab

2017-08-26 Thread Charlie Reinl
? > > Even when I want only the latest dev version, I would still like to know > what has changed. It's quite important if you do bug hunting. > > > Jussi > Salut Jussi, I found that 'git log --graph --oneline --a

Re: [Gambas-user] Why is this code running twice?

2017-08-02 Thread Charlie
Fernando Cabral wrote > I am trying to create a sundial faceplate. I took the analogic clock, > discarded what I did not need and thought I was ready to work on the > calculations and drawing of the hour angles. > > Nevertheless, I am mystified by two things I can't understand: > a) The code produ

Re: [Gambas-user] textarea won't accept text

2017-07-28 Thread Charlie
bill-lancaster wrote > I'm obviously missing something here but have just added a textarea > control to my form. > I can display text in it from code but can only enter one character. > Any ideas? I have tried this and I can't find a fault. I can enter as much text as I like. Put text in with code

Re: [Gambas-user] Weather app in Software Farm

2017-07-28 Thread Charlie
Tony Morehen wrote > Hi Charlie, I just published a new version of gbWeather. Hi Tony, This seems to be working quite well though I don't always get 'Future' icons. I have been playing with this idea as well and if you look here <https://openweathermap.org/weather-condi

Re: [Gambas-user] Trouble with CSVFile Component

2017-07-28 Thread Charlie
markwalt wrote > Hi guys, > > I'm trying to write a very simple program that pulls in one CSV File, and > spits out another, based on what's inside the file. I use CSV files all the time. I find them easy and fast. Have a look at the attached example, hopefully it will help. CLIOnly1.tar

Re: [Gambas-user] Weather app in Software Farm

2017-07-27 Thread Charlie
I have tried out the latest version 0.1.9 and it worked on Mint 18 and the TryIcon is fine. I put in my location and it finds it but I notice that Line 98 in Config.class: - *Settings["Default/Location"] = Replace(txtLocation.Text, " ", "")* takes out any spaces so Saint Peter Port becomes SaintP

Re: [Gambas-user] Dragging from one control to another

2017-07-23 Thread Charlie
Rolf-Werner Eilert-2 wrote > The GridView_Drop event doesn't fire at all. No idea why. I can get this to work either, as you say the '_Drop' does not seem to fire. I came up with a different way to do this that might be of interest, see attached. GUITest.tar

Re: [Gambas-user] Weather app in Software Farm

2017-07-15 Thread Charlie
Tony Morehen wrote > I just uploaded a Weather systray app to the software farm. > Comments/suggestions welcome. Enjoy. Hi Tony, I tried your program on a computer at work and got it working after adding *gb.qt4*. Linux Mint does not have QT5 yet. I tried it a home but even after fixing QT I go

Re: [Gambas-user] Best ways to format float values

2017-07-13 Thread Charlie
Also consider: - Public Sub Main() Dim fNum As Float[] = [26.66016, 26.66516] 'Note 26.660.. and 26.665.. Dim fTemp As Float For Each fTemp In fNum fTemp *= 100 fTemp += 0.5 fTemp = Int(fTemp) fTemp /= 100 Print fTemp;; Next 'Output 26.66 26.67 End - Check out

Re: [Gambas-user] Best ways to format float values

2017-07-13 Thread Charlie
alexchernoff wrote > Peace to all, > > this might a bit silly but what is the best way to format float values > like 26.66016 into having two digits AND/OR with rounding them? > > e.g. > 26.66016 becomes 26.66 shortened > 26.66016 becomes 26.67 rounded > > cheers! You s

Re: [Gambas-user] About gambas, the word

2017-07-13 Thread Charlie Reinl
uot;gamberetto". Nevertheless, at the first sight, it is hard to see that > > "gamba" and "camarão" come from the same Greek word. > > There is the old meaning : Gambas Almost Means BASIC! look here http://gambas.sourceforge.net/en/main.html -- Amicalement

Re: [Gambas-user] How to use drag-and-drop

2017-07-11 Thread Charlie
Rolf-Werner Eilert-2 wrote > The basic usage of the drag-and-drop functions isn't quite clear to me. > I couldn't find much information in the wiki about it. Here is my code. > I use t$ as a simple storage place and TextBox1 is only to see what the > thing does. > > The user should pick the red

Re: [Gambas-user] [Gambas Bug Tracker] Bug #1126: idea to add code snippets

2017-07-10 Thread Charlie
bugtracker wrote > It would be a good idea to add code snippets > something like this: > Public Const _Properties As String = "*" > 'Public Const _DefaultEvent As String = "" > 'Public Const _DefaultSize As String = "" > 'Public Const _Group As String = "" > 'Public Const _DrawWith As String = "" >

Re: [Gambas-user] What is the simplest way to display text properties in Gambas?

2017-07-06 Thread Charlie
Fernando Cabral wrote > I'd like to display text highlights like bold and italics. Can I do it > using TextArea? If yes, how? > > If I can't which resource should I use? Try using a TextLabel: - - Check out www.gambas.one -- Vi

Re: [Gambas-user] gridview contents x, y are default richtext or text?

2017-06-28 Thread Charlie
OK sorry I deleted that post once I reread your post. Have a look at this solution GUITest.tar - Check out www.gambas.one -- View this message in context: http://gambas.8142.n7.nabble.com/gridview-contents-x-y-are-default-richt

Re: [Gambas-user] gridview contents x, y are default richtext or text?

2017-06-28 Thread Charlie
PICCORO McKAY Lenz wrote > i have a piece of code, from a complex project, that export line by line > to > a file, the contents of the gridview, but not the text, only the richtext > why are not the same? Try using: *linefile &= "\"" & grid[d, c].RichText & "\";" 'Not .Text* Also you can use:

Re: [Gambas-user] Strange behaviour of File.Read

2017-06-21 Thread Charlie
bill-lancaster wrote > I must be missing something - any ideas Try changing the line *Print IsDir(s) * to *Print IsDir(Trim(s)) * It worked for me. - Check out www.gambas.one -- View this message in context: http://gambas.8142.n7.nabble.com/Strange-behaviour-of-File-Read-tp59467p59479

Re: [Gambas-user] (Main) Form won't close - how to tell the user why

2017-06-20 Thread Charlie
adamn...@gmail.com wrote > When they attempt to close the main form, the event loop won't terminate. > Which is proper. However, I need to be able to tell the user to close the > "such and such window". How can I find out which process is blocking the > end of the event loop? You could try hiding

Re: [Gambas-user] reparent menu item

2017-06-18 Thread Charlie
Can you supply more detail and an example of what you are trying to do? - Check out www.gambas.one -- View this message in context: http://gambas.8142.n7.nabble.com/reparent-menu-item-tp59386p59397.html Sent from the gambas-user mailing list archive at Nabble.com.

Re: [Gambas-user] Sharing Code Between Projects

2017-06-06 Thread Charlie
If you want to use a Module that is in another program just right click on FMain in the Project window and click in Import.. Navigate to the Module you want and open it in your project. Or did I misunderstand what you are looking

Re: [Gambas-user] rdir returns unwanted directories

2017-05-29 Thread Charlie
Tobias Boege-2 wrote > Instead of Mid(sTemp, RInStr(sTemp, "/") + 1) you may want to use the > appropriately named function File.Name(sTemp). Thanks Tobi, I didn't know that one. - Check out www.gambas.one -- View this message in context: http://gambas.8142.n7.nabble.com/rdir-returns-unwa

Re: [Gambas-user] rdir returns unwanted directories

2017-05-28 Thread Charlie
I presume you just want the file name not the folder details. If so try this, sFiles will contain just the file name: - *Public Sub Form_Open() Dim sFileArray As New String[] Dim sFiles As New String[] Dim sTemp As String sFileArray = RDir(User.Home, "*", gb.File) For Each sTemp In sFileArray sF

Re: [Gambas-user] Tabstrip question

2017-05-23 Thread Charlie
Hi Willy, I have done a little testing and you can't disable the 'Tab' but you can disable the controls on that tab. Using this I was unable to click on a Button on 'Tab1' *TabPanel1[1].Enabled = False * This will hide the tab from view *TabPanel1[1].Visible = False* - Check out www.gambas

Re: [Gambas-user] left$ vs String.left behaviour

2017-05-23 Thread Charlie
I'm not sure where 'querycolsinserts' comes in to this but the code below works fine: - *Public Sub Form_Open() Dim query1 As String = "`SHW325X`," Dim siCount As Short For siCount = Len(query1) DownTo 1 Print String.Left(query1, siCount) Next Print String.Left(query1, -1) Print Left$(query1, -1)

[Gambas-user] Possible bug (Application_Signal)

2017-05-13 Thread Charlie
I think there is a small bug relating to Application_Signal. If the line 'Public Sub Application_Signal(x As Integer)' does not have 'x As Integer' an error is generated in the code, see image, but the compiler reports the 'x' as unused. See attached program that has my system details included.

Re: [Gambas-user] Editing still blocked

2017-05-08 Thread Charlie
Jussi Lahtinen wrote > Anyone else using Gambas on Linux Mint 18.1 ? Everything working? > Issues?Can you please go to Gambas IDE Menu "?" --> "System informations" > and copy& paste the result, if you can. I use Mint 18.1 without any problems, installed from the ppa using: - sudo add-apt-reposito

Re: [Gambas-user] Editing still blocked

2017-05-08 Thread Charlie
Have you checked the Edit menu, there is a 'Locked' feature there. This is just a guess as 'Everything is locked' is a little vague. - Check out www.gambas.one -- View this message in context: http://gambas.8142.n7.nabble.com/Editing-still-blocked-tp58923p58924.html Sent from the gambas-us

Re: [Gambas-user] transparency on rotated image

2017-05-07 Thread Charlie
Leon Davis wrote > While I have your eyes. Is there a way to add text to an image? Check out the good work done in 'Painting' which is in the Gambas Farm. Look at 'Example17' - Check out www.gambas.one -- View this message in con

Re: [Gambas-user] TryIcon issues

2017-05-06 Thread Charlie
Try the following code: - *Public Sub form_Open() TrayIcon1.Visible = True End Public Sub Menu4_Click() TrayIcon1.Visible = False Me.Close End* The use of *Quit* is not recommended see http://gambaswiki.org/wiki/lang/quit I used *gb.gui* to get rid o

Re: [Gambas-user] transparency on rotated image

2017-05-06 Thread Charlie
If you change: - *sImg.drawImage(sImg2)* to *sImg.PaintImage(sImg2, 0, 0)* and *sImg.DrawImage(sImg2, 50, 50)* to *sImg.PaintImage(sImg2, 50, 50)* It seems to help, see the help section on PaintImage. - Check out www.gambas.one

Re: [Gambas-user] Help needed with drag icon

2017-04-28 Thread Charlie
Have a look at my previous efforts regarding this here http://gambas.8142.n7.nabble.com/Drag-Icon-td58574.html - Check out www.gambas.one -- View this message in context: http://gambas.8142.n7.nabble.com/Help-needed-with-drag-ico

Re: [Gambas-user] shell

2017-04-25 Thread Charlie
Can you post the 'Shell' code you are using. - Check out www.gambas.one -- View this message in context: http://gambas.8142.n7.nabble.com/shell-tp58793p58795.html Sent from the gambas-user mailing list archive at Nabble.com. -

Re: [Gambas-user] collection of collection problem

2017-03-21 Thread Charlie
Can you simplify the code so we can run it or upload the program. - Check out www.gambas.one -- View this message in context: http://gambas.8142.n7.nabble.com/collection-of-collection-problem-tp58654p58659.html Sent from the gambas-user mailing list archive at Nabble.com. -

Re: [Gambas-user] Mouse move ...

2017-03-21 Thread Charlie
Riccardo wrote > Is there a way to attach (or modify) the mouse move event to an object > such that it is activated without the left mouse button being pressed? I interpret this to mean that an object (e.g. a panel) should know if the mouse has 'Entered' or 'Left' it. Have a look at the attached

Re: [Gambas-user] Drag Icon

2017-03-07 Thread Charlie
There seems to be an issue depending on which Component you use: - gb.gui & gb.gtk3 only give a default 'drag.icon' gb.qt4 works as desired but only on the 2nd and subsequent 'drags' This is what I managed to get working: - take21.tar

Re: [Gambas-user] Media playback

2017-03-05 Thread Charlie
Thanks Fabien and bgWilly, I was looking at this on behalf of someone else. I have discovered that the ToOpPy Linux 2.2 (the latest) is based on Ubuntu 12.04 which came with Gambas2! None of the 'gstreamer-1' software, needed for Gambas 3.9.x, is available from the ToOpPy repositories. - Ch

Re: [Gambas-user] The Gambas Farm is 'Down'

2017-03-04 Thread Charlie
Excellent - Thanks. - Check out www.gambas.one -- View this message in context: http://gambas.8142.n7.nabble.com/The-Gambas-Farm-is-Down-tp58567p58569.html Sent from the gambas-user mailing list archive at Nabble.com.

[Gambas-user] The Gambas Farm is 'Down'

2017-03-04 Thread Charlie
Is it just me or is there a problem with the Farm? - Check out www.gambas.one -- View this message in context: http://gambas.8142.n7.nabble.com/The-Gambas-Farm-is-Down-tp58567.html Sent from the gambas-user mailing list archive

Re: [Gambas-user] Media playback

2017-03-02 Thread Charlie
Can nobody help me? - Check out www.gambas.one -- View this message in context: http://gambas.8142.n7.nabble.com/Media-playback-tp58542p58563.html Sent from the gambas-user mailing list archive at Nabble.com. -- C

[Gambas-user] whats new since rev. 8088

2017-02-24 Thread Charlie Reinl
Salut Benoît, made an update last Wednwesday (22.02) from 8088 to 8102. Now my program fails : FCRMMain.?.0: #2: Cannot load class 'DBTableView': Loading has already failed FCRMMain.?.0 FCRMMain.?.0 Main.?.0 So can you tell me whats new since rev. 8088 This is the line where it happend. tbvAd

[Gambas-user] Media playback

2017-02-23 Thread Charlie
Can anybody tell me what dependencies are needed to play a video? The program *VerySimpleVideoPlayer* (see the Gambas Farm) works perfectly in Ubuntu & Mint but not in ToOpPy Linux which is based on Puppy Linux. Any help appreciated. - Check out www.gambas.one -- View this message in conte

Re: [Gambas-user] Form Top bar

2017-02-16 Thread Charlie
On the Form properties set Border to False. - Check out www.gambas.one -- View this message in context: http://gambas.8142.n7.nabble.com/Form-Top-bar-tp58480p58481.html Sent from the gambas-user mailing list archive at Nabble.com. ---

Re: [Gambas-user] Sort multidimensional array?

2017-02-09 Thread Charlie
I played with this problem and came up with the attached. Hope it helps sort_second_array.tar - Check out www.gambas.one -- View this message in context: http://gambas.8142.n7.nabble.com/Sort-multidimensional-array-tp58

Re: [Gambas-user] dynamic created Menus

2017-02-07 Thread Charlie
Karl seems happy now. I have modified the program for you Gianluigi, does this do what you want? MenuExample.tar - Check out www.gambas.one -- View this mes

Re: [Gambas-user] dynamic created Menus

2017-02-06 Thread Charlie
Have a look at the code attached, the menu and menu items are all created in code. I think this will do what you need. MenuExample.tar Hope it helps. - Check out

[Gambas-user] dynamic created Menus

2017-02-06 Thread Charlie Reinl
Salut, how can I use dynamic created Menus, when they are made outside the Form. I expanded an example from Gianluigi to show what I want. The problem is, the Click event is not fired, if the menu is not created in the forms class. MenuGroupTag-0.0.2.tar.gz Description: application/compressed-

Re: [Gambas-user] how-to execute file or bash script packaged inside gambas

2017-01-29 Thread Charlie
Here is a little program that copies a small 'sh' file from the program's folder and runs it. Hope it helps. runscript.tar - Check out www.gambas.one -- View this message in context: http://gambas.8142.n7.nabble.com/how-to-exec

Re: [Gambas-user] Timer

2017-01-27 Thread Charlie
Hi j h-7, I have created what I think you are looking for, have a look at the attached program. Stopwatch.tar - Check out www.gambas.one -- View this message in conte

Re: [Gambas-user] Console Window

2017-01-08 Thread Charlie
*All I have to do is click the "Dock" button whose Tooltip says "Undock console" if it's docked or not.* -- View this message in context: http://gambas.8142.n7.nabble.com/Console-Window-tp58194p58195.html Sent from the gambas-use

gambas-user@lists.sourceforge.net

2016-12-31 Thread Charlie
Try changing the following line. *var = Val("&H" & "80")* -- View this message in context: http://gambas.8142.n7.nabble.com/How-to-Chr-VARIABLE-as-Chr-H80-tp58096p58109.html Sent from the gambas-user mailing list archive at Nabble.com. --

Re: [Gambas-user] Installing GAMBAS on MINT

2016-12-28 Thread Charlie
Try pressing F4 when looking at the form. Mint comes with an old version of Gambas. If you want to keep up to date with the latest stable release run the following in Terminal. It will add the Gambas repository and update everything for you. *sudo add-apt-repository -y ppa:gambas-team/gambas3 && su

Re: [Gambas-user] Get Hex from Char using some Code Page

2016-12-27 Thread Charlie
Have a look at the attached program. It will work with the first 48 characters of Code page 866 Hex866.tar -- View this message in context: http://gambas.8142.n7.nabble.com/Get-Hex-from-Char-using-some-Code-Page-tp58055p58064.html Sent

Re: [Gambas-user] Beware to revision #7983!

2016-12-19 Thread Charlie Reinl
any moons this: format(Date("10/01/2016")," ") and I didn't felt me concerned by that mail..but: format(Date("10/01/2016")," ") gives September 2016 now, gave

Re: [Gambas-user] Setting focus to form.

2016-11-29 Thread Charlie
Here is my contribution to this solution. This code shows a 'Splash' screen while doing a little work then closes the 'Splash' and returns the focus to FMain. Hope it helps. FMainFocus.tar -- View this message in context: http://ga

Re: [Gambas-user] SimpleEval - Error

2016-11-28 Thread Charlie
Hi Fabien, is there any progress on this please. Thanks, Charlie -- View this message in context: http://gambas.8142.n7.nabble.com/SimpleEval-Error-tp57833p57900.html Sent from the gambas-user mailing list archive at Nabble.com

Re: [Gambas-user] SimpleEval - Error

2016-11-22 Thread Charlie
I am sorry but I do not understand your explanation. I obviously don't have the in depth knowledge of Gambas that you do. Can you please be a little more explicit. Thanks. -- View this message in context: http://gambas.8142.n7.nabble.com/SimpleEval-Error-tp57833p57846.html Sent from the gambas-

[Gambas-user] SimpleEval - Error

2016-11-19 Thread Charlie
I am interested in SimpleEval 0.2.0 which is on the 'Farm' but I get this error: - http://gambas.8142.n7.nabble.com/file/n57833/Eval1.png"; border="0"/> If I try to run the program another error appears: -

Re: [Gambas-user] FileChooser select bug

2016-11-09 Thread Charlie
Thanks Benoît that is useful information. -- View this message in context: http://gambas.8142.n7.nabble.com/FileChooser-select-bug-tp57735p57740.html Sent from the gambas-user mailing list archive at Nabble.com. -- Dev

[Gambas-user] FileChooser select bug

2016-11-08 Thread Charlie
When I place a *FileChooser* on a form and then deselect it, I am unable to reselect the *FileChooser* with the mouse, I can click on it repeatedly but nothing happens. I have to go to *Hierarchy* and select it there. I have noticed this also happens on my Rapberry Pi 3 with Gambas 3.8.4 but repeat

Re: [Gambas-user] App idle with long loops

2016-10-12 Thread Charlie
Hi Dim, I thought that as you are using 'wget' the easy way to keep control was to use a BASH script which would do the job in the background. I have written a bit of code that creates the BASH script and runs it in the background, leaving the main program still responsive. Hope it helps. WgetFiles

Re: [Gambas-user] App idle with long loops

2016-10-09 Thread Charlie Reinl
the world's most > > engaging tech sites, SlashDot.org! http://sdm.link/slashdot > > ___ > > Gambas-user mailing list > > Gambas-user@lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > >

Re: [Gambas-user] Load an Image from Data

2016-10-05 Thread Charlie
Interesting. I have always used: - *PictureBox1.Picture = Picture.load("Test.png")* -- View this message in context: http://gambas.8142.n7.nabble.com/Load-an-Image-from-Data-tp57467p57474.html Sent from the gambas-user mailing list archive at Nabble.com.

Re: [Gambas-user] Menu has no Click() event

2016-10-03 Thread Charlie
Your code works fine in Linux Mint 18 Cinnamon 64bit http://www.cogier.com/gambas/TestG.png -- View this message in context: http://gambas.8142.n7.nabble.com/Menu-has-no-Click-event-tp57442p57457.html Sent from the gambas-user mailing list archive at N

Re: [Gambas-user] gambasdoc.org up for sale?

2016-10-03 Thread Charlie
In Mint/Ubuntu etc. simply run the following line to install the latest stable release of Gambas: - */sudo add-apt-repository -y ppa:gambas-team/gambas3 && sudo apt-get update && sudo apt-get -y install gambas3/* This way you will stay up to date with any later stable releases. -- View this mess

Re: [Gambas-user] ProgressBar code example

2016-09-25 Thread Charlie
Have a look at the attached and see if that helps, if not check us out at Gambas.one Take2.tar -- View this message in context: http://gambas.8142.n7.nabble.com/ProgressBar-code-example-tp57393p57405.html Sen

Re: [Gambas-user] Softwarefarm / Libraries etc.

2016-09-16 Thread Charlie Reinl
Am Freitag, den 16.09.2016, 22:21 +0200 schrieb Benoît Minisini: > Le 16/09/2016 à 22:10, Charlie Reinl a écrit : > > Salut Benoît, > > > > problem : I have a project using a gambas written library. How can I > > install/set that on Softwarefarm? > > *.gambas on /

[Gambas-user] Softwarefarm / Libraries etc.

2016-09-16 Thread Charlie Reinl
Charlie -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user

Re: [Gambas-user] Christmas gift

2016-09-12 Thread Charlie Reinl
Am Montag, den 12.09.2016, 14:27 +0200 schrieb Benoît Minisini: > Le 12/09/2016 à 12:14, Charlie Reinl a écrit : > > Salut, > > > > since a few days I worked with the new 3.9.x IDE version. > > And I missed the old console! Because I often used it to store > > te

Re: [Gambas-user] Christmas gift

2016-09-12 Thread Charlie Reinl
Salut, since a few days I worked with the new 3.9.x IDE version. And I missed the old console! Because I often used it to store temporarily some lines code. So my wish, not necessarily for Christmas, a writing pad, just beside the console. -- Amicalement Charlie

Re: [Gambas-user] Positioning Image and Text in a Button

2016-08-23 Thread Charlie
You can have the "Buttons" I created in a group and this will work OK. Check out the attached based on my last example, now 30 lines of code. SimpleButton.tar -- View this message in context: http://gambas.8142.n7.nabble.com/Posi

Re: [Gambas-user] Positioning Image and Text in a Button

2016-08-20 Thread Charlie
I thought I would add to this debate. The examples above work just fine but they seem very complicated to me. I have taken your picture, put it in a PictureBox and in 8 lines of code have a button you can click. SimpleButton.tar -

Re: [Gambas-user] How to add subitems to a ListView?

2016-08-04 Thread Charlie
Hi Gianluigi - Very good, you certainly know your way around the 'Paint' command. -- View this message in context: http://gambas.8142.n7.nabble.com/How-to-add-subitems-to-a-ListView-tp56846p56855.html Sent from the gambas-user mailing list archive at Nabble.com. ---

Re: [Gambas-user] How to add subitems to a ListView?

2016-08-02 Thread Charlie
See if the attached works for you. I have used a Gridview to get the result I think you are looking for. MultipleListView.tar -- View this message in context

[Gambas-user] Is this a bug

2016-06-30 Thread Charlie
I have tried this using gb.gui/gb.gtk3/gb.qt4 and it fails, is this a bug? Public Sub Button1_Click() SpinBox1.Enabled = False 'O.K. SpinBar1.Enabled = False 'Doesn't work End -- View this message in context: http://gambas.8142.n7.nabble.com/Is-this-a-bug-tp56630.html Sent from the gambas-u

Re: [Gambas-user] Component problems

2016-05-23 Thread Charlie
I this case I think the problem starts with 'Me'. Is this because there is no SpinLabel.Form which would be 'Me'? I've messed about with this and if you change 'Me' to 'FMain' things change. Hope that helps. -- View this message in context: http://gambas.8142.n7.nabble.com/Component-problems-tp

Re: [Gambas-user] MessageBox problem

2016-05-07 Thread Charlie
Hi Gianluigi, That's an interesting twist and it does solve the problem, thank you. -- View this message in context: http://gambas.8142.n7.nabble.com/MessageBox-problem-tp56154p56240.html Sent from the gambas-user mailing list archive at Nabble.com. ---

Re: [Gambas-user] MessageBox problem

2016-05-06 Thread Charlie
Yes I am aware of this but as I said "The MessageBox gives focus to the first button created so it's a good idea to use the first button as 'Cancel' in case a user presses [Enter]." So in your example if you reverse the 'Yes' and 'No' (Cancel) buttons so that if the user presses [Enter] the 'No' bu

Re: [Gambas-user] QT5 Configuration on Ubuntu 16.04

2016-05-06 Thread Charlie
Try the following command. *sudo add-apt-repository -y ppa:gambas-team/gambas3 && sudo apt-get update && sudo apt-get -y install gambas3* -- View this message in context: http://gambas.8142.n7.nabble.com/QT5-Configuration-on-Ubuntu-16-04-tp56232p56233.html Sent from the gambas-user mailing list

Re: [Gambas-user] Gambas=3.8.90 r7754

2016-05-05 Thread Charlie Reinl
Am Donnerstag, den 05.05.2016, 14:48 +0200 schrieb Benoît Minisini: > Le 05/05/2016 14:44, Charlie Reinl a écrit : > > Am Donnerstag, den 05.05.2016, 11:54 +0200 schrieb Charlie Reinl: > >> Salut Benoît, > >> > >> Gambas=3.8.90 r7754 the debug console is bro

Re: [Gambas-user] Gambas=3.8.90 r7754

2016-05-05 Thread Charlie Reinl
Am Donnerstag, den 05.05.2016, 11:54 +0200 schrieb Charlie Reinl: > Salut Benoît, > > Gambas=3.8.90 r7754 the debug console is broken. > The ? line do not work any more. Entries + CR makes a empty line in the > console. > The ? line you can make entries only by copy/paste. >

[Gambas-user] Gambas=3.8.90 r7754

2016-05-05 Thread Charlie Reinl
Salut Benoît, Gambas=3.8.90 r7754 the debug console is broken. The ? line do not work any more. Entries + CR makes a empty line in the console. The ? line you can make entries only by copy/paste. -- Amicalement Charlie

[Gambas-user] MessageBox problem

2016-05-04 Thread Charlie
The MessageBox gives focus to the first button created so it's a good idea to use the first button as 'Cancel' in case a user presses [Enter]. If the user decides he does not want the MessageBox at all and presses the 'X' to close it the message box returns the number of the last button which in th

Re: [Gambas-user] qt5

2016-05-03 Thread Charlie
I have now installed Gambas 3.8.4 from the ppa on 16.04 and the Farm now works as expected Thanks to all your efforts. -- View this message in context: http://gambas.8142.n7.nabble.com/qt5-tp56109p56147.html Sent from the gambas-user mailing list archive at Nabble.com. -

Re: [Gambas-user] qt5

2016-05-02 Thread Charlie
126/Make_Inst3-8.log> R_conf3-8.log <http://gambas.8142.n7.nabble.com/file/n56126/R_conf3-8.log> Did I do something wrong? Thanks, Charlie -- View this message in context: http://gambas.8142.n7.nabble.com/qt5-tp56109p56126.html Sent from the gambas-user mailing list archive a

Re: [Gambas-user] qt5

2016-05-02 Thread Charlie
I have reinstalled Ubuntu 16.04, just to make sure. I then installed Gambas3 with the following command *sudo add-apt-repository -y ppa:gambas-team/gambas3 && sudo apt-get update && sudo apt-get -y install gambas3* I started Gambas from the command line and saw the following: - gambas1.png

Re: [Gambas-user] qt5

2016-05-01 Thread Charlie
Are you able to add a 'xenial' repository to the Gambas ppa so that we can download the stable version that will work from there? -- View this message in context: http://gambas.8142.n7.nabble.com/qt5-tp56109p56114.html Sent from the gambas-user mailing list archive at Nabble.com. --

Re: [Gambas-user] qt5

2016-05-01 Thread Charlie
Thanks for the reply Benoît. Ubuntu 16.04 has Gambas 3.8.4 which I also use on Linux Mint 17.3 Cinnamon. Here is the Gambas Farm error I get. gambas1.png Here are the 'System information' details for both operating systems. mint17.txt

[Gambas-user] qt5

2016-05-01 Thread Charlie
I have been playing with Ubuntu 16.04 and a lot of the Gambas Farm programs wont install as they use qt4 (gb.qt4 and gb.qt4.ext), Ubuntu uses qt5. If I install the necessary libraries Synaptic uninstalls the IDE! *buntu 14.04/Mint 17* etc are supported until 2019 and have qt4. Has anybody got any

Re: [Gambas-user] ListEditor Icons

2016-04-19 Thread Charlie
/1) The ListEditor has four icons. If I don't like them, is there a chance to change them?/ I don't know how to do this, or even if it can be done. /2) And how is the Insert/Add button handled? Is there an event?/ When the list is displayed you can click on an item and then click the *Add* button.

Re: [Gambas-user] How to replace chr$(13) from a text file

2016-04-11 Thread Charlie
Not sure why but if you add Chr(13) to the TextArea and then save the output as a file then look at the Hex in the file the Chr(13) is '0A' which is Chr(10). The code below works. *Public Mglobal As String Public Sub Form_Open() TextArea1.text = "Hello" & Chr(13) & "World" & Chr(13) & "Hello " & C

Re: [Gambas-user] MediaView1.URL cannot set status

2016-03-10 Thread Charlie
Works for me as well. -- View this message in context: http://gambas.8142.n7.nabble.com/MediaView1-URL-cannot-set-status-tp55626p55649.html Sent from the gambas-user mailing list archive at Nabble.com. -

Re: [Gambas-user] Different Foreground Color of a string in TableView.Cell

2016-03-05 Thread Charlie
This works for me: - Public Sub Form_Open() TableView1.Rows.Count = 2 TableView1.Columns.Count = 2 With TableView1[0, 0] .Background = Color.Yellow .Foreground = Color.Red .Text = "Hello" .Alignment = Align.Center .Font.bold = True End With End -- View this message in context: http://

Re: [Gambas-user] "Result is not available" error with ODBC connection and DataSource

2016-03-02 Thread Charlie Reinl
e ODBC connection (no error is risen, both schema and > data are loaded fine into the DataBrowser). I'm using the following > entry in /etc/odbc.ini : > > [sqlite] > Description=My SQLite database > Driver=SQLite3 > Database=/home/markus/test.sqlite3 > UserName = mylogin > P

Re: [Gambas-user] Fwd: Re: Feature request for gambas load screen

2016-02-26 Thread Charlie Reinl
t: Re: [Gambas-user] Feature request for gambas load screen > > > Am 26.02.2016 04:35, schrieb richard terry: > > On 26/02/16 10:07, Charlie Reinl wrote: > >> Am Donnerstag, den 25.02.2016, 22:54 +0100 schrieb Benoît Minisini: > >>> Le 25/02/2016 22:42, Charli

Re: [Gambas-user] Feature request for gambas load screen

2016-02-25 Thread Charlie Reinl
Am Donnerstag, den 25.02.2016, 22:54 +0100 schrieb Benoît Minisini: > Le 25/02/2016 22:42, Charlie Reinl a écrit : > > Am Freitag, den 26.02.2016, 07:55 +1100 schrieb richard terry: > >> Hi benoit, > >> > >> If there is another way to do this please let me kn

Re: [Gambas-user] An heretical suggestion for the IDE toolbar

2016-02-25 Thread Charlie
Simply press [F12] to swap between code and Form -- View this message in context: http://gambas.8142.n7.nabble.com/An-heretical-suggestion-for-the-IDE-toolbar-tp55547p3.html Sent from the gambas-user mailing list archive at Nabble.com. ---

  1   2   3   4   5   6   7   8   9   >