[Gambas-user] Tab's

2018-07-13 Thread Shane
how can I enter a value in a component and then press enter and have my program tab into the next component in the tab order? cheers Shane. -- Check out the vibrant tech community on one of the world's most eng

Re: [Gambas-user] Shell command formating

2017-08-07 Thread Shane
thanks tony this works just needs the & in front of the 1 On 08/08/17 00:30, Tony Morehen wrote: Try changing command to: command = "stm8flash -c stlinkv2 -p " & stmdevice & " -w " & path & " 2>1" On 2017-08-06 09:52 PM, Shane wrot

Re: [Gambas-user] Shell command formating

2017-08-07 Thread Shane
That worked great T Lee thanks On 08/08/17 00:00, T Lee Davidson wrote: On 08/06/2017 09:52 PM, Shane wrote: So again on the shell command I have this code Dim result As String Dim command As String path = File.SetExt(file_name, "ihx") command = "stm8flash -c stlinkv2 -

Re: [Gambas-user] Shell command

2017-08-07 Thread Shane
of cause missed that looking in wrong place Thanks Tony On 08/08/17 00:17, Tony Morehen wrote: Shane, I can reproduce your crash here on 3.9.2. It's cause is the line: Settings["Options/stmDevice"] = ComboBox1.Current If that line is changed to: Settings["Options/stm

[Gambas-user] Shell command formating

2017-08-06 Thread Shane
but the output is going to stdout and not the result String i know it to do with the command string but now do you set it up ? Thanks Shane.. -- Check out the vibrant tech community on one of the world's most eng

Re: [Gambas-user] Shell command

2017-08-06 Thread Shane
ESSION_DESKTOP=mate XDG_SESSION_ID=c1 XDG_VTNR=8 On 07/08/17 11:29, Jussi Lahtinen wrote: Is that all the code in the form? Can you give your system information? Jussi On Mon, Aug 7, 2017 at 3:35 AM, Shane wrote: Hi Jussi I gave that a try by commenting that line out still the same result

Re: [Gambas-user] Shell command

2017-08-06 Thread Shane
Same thing here is a file with the output On 07/08/17 11:10, Tony Morehen wrote: what is the output of the shell line? If you could post the complete output, we could properly test your code. You could try this line: devices = Split(sdevices, " ", "", True) On 2017-0

Re: [Gambas-user] Shell command

2017-08-06 Thread Shane
ent". Maybe you want to save ComboBox1.Current.Text? However there shouldn't be segfault. Jussi On Sun, Aug 6, 2017 at 7:18 AM, Shane wrote: I have this in a sub form Public sdevices As String Public Sub SaveOps_Click() Settings["Options/CCompCLine"] = Text

[Gambas-user] Shell command

2017-08-05 Thread Shane
tions/stmDevice"]) End but when I exit this form and then the main form i get s Seg fault but with the shell part commented out it is ok what am i doing wrong ? any ideas Thanks Shane -- Check out the vibrant t

[Gambas-user] mediaplayer

2017-08-03 Thread Shane
I think there might be a bug in the mediaplayer as the event mediaplayer_Progress Event is never raised -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.

Re: [Gambas-user] reading files

2017-07-21 Thread Shane
know if you want to do any thing about it ? regards Shane On 21/07/17 04:50, Tony Morehen wrote: Audio or development On 2017-07-20 02:40 PM, Hans Lehmann wrote: Am 20.07.2017 um 20:27 schrieb Tony Morehen: I've uploaded the class with a short command line demo to the software farm

Re: [Gambas-user] reading files

2017-07-20 Thread Shane
right it i should of said did he convert it to gambas ? i think this should be in the farm ? On 20/07/17 21:04, Gianluigi wrote: 2017-07-20 12:09 GMT+02:00 Shane : yep can't use structs have to do like tony's code works perfect thanks again tony h are you sure? p.s is this y

Re: [Gambas-user] reading files

2017-07-20 Thread Shane
:15 GMT+02:00 Shane : thanks tony sounds like just what i needed i will take a look cheers On 19/07/17 22:34, Tony Morehen wrote: I've attached an archive containing the code I use to read v1 and v2 MP3 tags and other MP3 info including bitrates (fixed and VBR), sampling rates and num

Re: [Gambas-user] reading files

2017-07-19 Thread Shane
ii, either kind of utf16, or utf8 encoding. The code I sent has been tested with over 10,000 mp3 files has seems to have no issues. On 2017-07-19 12:33 AM, Shane wrote: thank you Gian i did take a rest and read but alas it did not help as far as i see it he is saying don't use binary fi

Re: [Gambas-user] reading files

2017-07-18 Thread Shane
t and read what Tobias Boege recommend me in the discussion [0] I told you here [1]? [0] http://gambas.8142.n7.nabble.com/Random-access-files-with-fixed-length-string-td50880.html [1] http://gambas.8142.n7.nabble.com/vb-code-td59764.html 2017-07-18 9:04 GMT+02:00 Shane : I am very confused fro

Re: [Gambas-user] reading files

2017-07-18 Thread Shane
: I think Read #hfile, IDtag, ID3v1_TAG should be Read #hfile, IDtag as ID3v1_TAG -- Open WebMail Project (http://openwebmail.org) -- Original Message --- From: Shane To: gambas-user@lists.sourceforge.net Sent: Tue, 18 Jul 2017 10:50:43 +1000 Subject: Re: [G

Re: [Gambas-user] reading files

2017-07-17 Thread Shane
-- Open WebMail Project (http://openwebmail.org) -- Original Message --- From: T Lee Davidson To: gambas-user@lists.sourceforge.net Sent: Sun, 16 Jul 2017 12:42:35 -0400 Subject: Re: [Gambas-user] reading files On 07/16/2017 06:57 AM, Shane wrote: given this example PRIVATE SU

[Gambas-user] reading files

2017-07-16 Thread Shane
given this example PRIVATE SUB BinaryRead(FilePath AS String) DIM binaryFile AS File DIM i AS Integer DIM b AS Byte DIM s AS Short DIM s1 AS String DIM s2 AS String ' Read binary file binaryFile = OPEN FilePath FOR READ READ #binaryFile, i READ #binaryFile, b READ #binaryFil

[Gambas-user] vb code

2017-07-14 Thread Shane
I have some vb code i want to convert to gambas and it uses this code Private Type ID3V22HDR frameName1 As String * 3 frameSize1 As Byte frameSize2 As Byte frameSize3 As Byte End Type what would be the best way to convert this to gambas? ---

Re: [Gambas-user] class

2017-02-16 Thread Shane
nal arguments of the grand-parent constructor. * Optional arguments of the parent constructor. * Optional arguments of the final constructor. On 17/02/17 13:55, Benoît Minisini wrote: > Le 17/02/2017 à 03:08, Shane a écrit : >&g

Re: [Gambas-user] class

2017-02-16 Thread Shane
here it is On 17/02/17 13:55, Benoît Minisini wrote: Le 17/02/2017 à 03:08, Shane a écrit : Looks Like Pic1 and then pic2 Which version of Gambas do you use? Gamtetris-0.0.1.tar.gz Description: application/gzip

Re: [Gambas-user] class

2017-02-16 Thread Shane
here is the code it looks like its the way I'm doing things with inheriting On 17/02/17 13:55, Benoît Minisini wrote: > Le 17/02/2017 à 03:08, Shane a écrit : >> Looks Like Pic1 >> >> and then pic2 >> >> &

Re: [Gambas-user] class

2017-02-16 Thread Shane
/02/2017 à 03:08, Shane a écrit : >> Looks Like Pic1 >> >> and then pic2 >> >> >> > Which version of Gambas do you use? > -- Check out the vibrant tech community on one of the w

Re: [Gambas-user] class

2017-02-16 Thread Shane
> Gambas IDE? Is that library or regular Gambas project? > > > Jussi > > On Fri, Feb 17, 2017 at 4:08 AM, Shane wrote: > >> Looks Like Pic1 >> >> and then pic2 >> >> >> >> >> On 17/02/17 13:04, Jussi Lahtinen wrote: >> >&g

Re: [Gambas-user] class

2017-02-16 Thread Shane
Looks Like Pic1 and then pic2 On 17/02/17 13:04, Jussi Lahtinen wrote: Looks like this..? Jussi On Fri, Feb 17, 2017 at 3:32 AM, Shane wrote: No the ide only crashed once so my class declaration looks like this and when i try ti instantiate my class so no matter what i but into the

Re: [Gambas-user] class

2017-02-16 Thread Shane
IDE crashes > every time you try to make the changes? > Can you send the source? > > > Jussi > > On Fri, Feb 17, 2017 at 3:03 AM, Shane wrote: > >> So gambas ide crashed while editing source code now i can't change a >> class _new definition it keeps >> >

[Gambas-user] class

2017-02-16 Thread Shane
So gambas ide crashed while editing source code now i can't change a class _new definition it keeps going back to the original one i had even though i deleted the definition and deleted the class file and reinstalled gambas any ideas thanks

Re: [Gambas-user] Desktop size in sdl2

2017-01-26 Thread Shane
So I can center my window on the Screen On 26/01/17 22:12, Fabien Bodard wrote: > why the desktop ? > > 2017-01-26 0:29 GMT+01:00 Shane : >> How do you get the Desktop size in SDL2? >> >> >> >>

[Gambas-user] Desktop size in sdl2

2017-01-25 Thread Shane
How do you get the Desktop size in SDL2? -- Check out the vibrant tech community on one of the world's most engaging tech sites, SlashDot.org! http://sdm.link/slashdot ___ Gamb

Re: [Gambas-user] Grabbed

2017-01-24 Thread Shane
Thanks Benoît On 25/01/17 09:06, Benoît Minisini wrote: > Le 23/01/2017 à 06:48, Shane a écrit : >> Any word on getting the Window.Grabbed property for SDL2? >> > Added in revision #8062. > > Regards, > -

[Gambas-user] Grabbed

2017-01-22 Thread Shane
Any word on getting the Window.Grabbed property for SDL2? -- Check out the vibrant tech community on one of the world's most engaging tech sites, SlashDot.org! http://sdm.link/slashdot ___

[Gambas-user] Sdl Grabbed

2017-01-12 Thread Shane
Hi Benoit could you please add the Window.Grabbed function to the sdl2 component like we had with Sdl1 -- Developer Access Program for Intel Xeon Phi Processors Access to Intel Xeon Phi processor-based developer platfor

Re: [Gambas-user] Key.Text Bug

2017-01-12 Thread Shane
Ok thanks Benoît On 12/01/17 23:56, Benoît Minisini wrote: > Le 12/01/2017 à 08:36, Shane a écrit : >> Key.Text doesn't return anything in the following project >> > Key.Text is only available during the "Text" event. "KeyPress" is o

[Gambas-user] Key.Text Bug

2017-01-11 Thread Shane
Key.Text doesn't return anything in the following project [System] Gambas=3.9.90 OperatingSystem=Linux Kernel=4.4.0-45-generic Architecture=x86_64 Distribution=Linux Mint 17.2 Rafaela Desktop=MATE Theme=Gtk Language=en_AU.UTF-8 Memory=3805M [Libraries] Cairo=libcairo.so.2.11301.0 Curl=libcu

[Gambas-user] SDL Bug

2016-11-03 Thread Shane
I Think there id a bug in the SDL Image.Copy method when used it is not working as expected and when you try to copy a large amount of Image it crashes this program. [System] Gambas=3.9.1 OperatingSystem=Linux Kernel=4.4.0-45-generic Architecture=x86_64 Distribution=Linux Mint 17.2 Rafaela Des

Re: [Gambas-user] Flyer Invasion Game - And a possible bug-report

2016-11-03 Thread Shane
s of the window when you click outside, I > have no idea why? A SDL bug? > > > Den 03. nov. 2016 03:44, skrev Shane: >> there were pics >> >> >> >> On 02/11/16 17:46, Moviga Technologies wrote: >>> Please rephrase what you said? >>> >&g

Re: [Gambas-user] Flyer Invasion Game - And a possible bug-report

2016-11-02 Thread Shane
there were pics On 02/11/16 17:46, Moviga Technologies wrote: Please rephrase what you said? Den 02. nov. 2016 02:29, skrev Shane: this is what i get with your latest version and when i click away and come back On 02/11/16 07:11, Benoît Minisini wrote: Le 31/10/2016 à 13:51, Moviga

Re: [Gambas-user] Flyer Invasion Game - And a possible bug-report

2016-11-01 Thread Shane
this is what i get with your latest version and when i click away and come back On 02/11/16 07:11, Benoît Minisini wrote: > Le 31/10/2016 à 13:51, Moviga Technologies a écrit : >> Hi! >> >> This weekend I had some fun making a simple game in SDL that you can >> find on the farm, or download here

Re: [Gambas-user] Flyer Invasion Game - And a possible bug-report

2016-11-01 Thread Shane
Im getting not freeded messages form a project that uses serial port and map and a sdl game as well On 31/10/16 23:51, Moviga Technologies wrote: > Hi! > > This weekend I had some fun making a simple game in SDL that you can > find on the farm, or download here: > http://forum.gambas.one/downlo

Re: [Gambas-user] array of classes

2016-07-03 Thread Shane
...@gmail.com wrote: > On Sun, 3 Jul 2016 18:20:15 +1000 > Shane wrote: > >> I'm trying create a array of myClass but when i create it i have an >> array of null values >> >> i have my Rect.class >> >> Public x As Integer >> Public y As Intege

Re: [Gambas-user] array of classes

2016-07-03 Thread Shane
thanks Bruce that was my problem i just fixed a little differant i used the add function thanks for your help Shane. On 03/07/16 19:38, adamn...@gmail.com wrote: > On Sun, 3 Jul 2016 18:20:15 +1000 > Shane wrote: > >> I'm trying create a array of myClass but when i create i

[Gambas-user] array of classes

2016-07-03 Thread Shane
_hits As Integer and then in the main module i do Public Blocks As New Block[MAX_BLOCKS] and i get an array with Max_BLOCKS indexes on null values what am i doing wrong thanks Shane -- Attend Shape: An AT&T

[Gambas-user] paint to report

2016-06-22 Thread Shane
How do I Paint Text directly to a report -- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San Francisco, CA to explore cutting-edge tech and listen to tech luminaries present their vision of the futu

Re: [Gambas-user] Conditional edit of a database table

2016-06-17 Thread Shane
Are you looking for something like hConn.Find("clients", "firstname LIKE &1 OR lastname LIKE &1 OR phone like &1 OR street_name LIKE &1 OR suburb LIKE &1", "%" & s & "%") except with AND'S On 17/06/16 06:45, wi...@develop.earthshipeurope.org wrote: > On 2016-06-16 22:05, Benoît Minisini wrote: >

Re: [Gambas-user] picturebox

2016-06-12 Thread Shane
I tried that but I get the error Image is read only mypicbox.picture.image = myimage.copy(x,y,width,height) On 12/06/16 22:18, Gianluigi wrote: > Looking for this? > http://gambaswiki.org/wiki/comp/gb.image/image/copy > > 2016-06-12 9:55 GMT+02:00 Shane : > >> I'm tr

[Gambas-user] picturebox

2016-06-12 Thread Shane
I'm trying to display part of an Image in a picture box is this possible i seem to rember something about no mem to mem copy available ? -- What NetFlow Analyzer can do for you? Monitors network bandwidth and traffic patte

Re: [Gambas-user] Printing

2015-10-14 Thread Shane
sorry my bad I think I forgot the ignore property On 14/10/15 16:17, Fabien Bodard wrote: > Le 13 oct. 2015 23:16, "Shane" a écrit : >> Is there a way to stop ReportImage from scaling up to fill the page >> > Hum. Change the height and width. If they are 0 then autor

Re: [Gambas-user] Printing

2015-10-13 Thread Shane
Is there a way to stop ReportImage from scaling up to fill the page On 14/10/15 08:02, Shane wrote: > Thanks Fabien I had a quick look at setting ignore to true and I can now > move things where i want > so it might work for me after all Thanks. > > > On 14/10/15 03:47, F

Re: [Gambas-user] Printing

2015-10-13 Thread Shane
n. But it is not > a problem for filled reports. > > you can see some of my reports here : > https://plus.google.com/u/0/communities/113475756360896510823 > > > > > > > > > > > > > > > 2015-10-13 8:01 GMT+02:00 Shane : >> Hi Fabien I ha

Re: [Gambas-user] Printing

2015-10-12 Thread Shane
Le 12 oct. 2015 09:19, "Shane" a écrit : > >> What am I doing wrong here I'm trying to print something the same size on >> the printer as on the screen >> but when it goes to the printer it huge ? >> I'm using Paint.Sc

[Gambas-user] Printing

2015-10-12 Thread Shane
What am I doing wrong here I'm trying to print something the same size on the printer as on the screen but when it goes to the printer it huge ? I'm using Paint.Scale and from what the doc's say this should scale the fonts ? InvoicePrint-0.0.1.tar.gz Description: application/gzip ---

Re: [Gambas-user] This is some play around the Breeze theme

2015-09-16 Thread Shane
nice bird On 16/09/15 20:16, Moviga Technologies wrote: > > > Just some thoughts on some modifications > > > -- > Monitor Your Dynamic Infrastructure at Any Scale With Datadog! > Get real-time metrics from all of your s

[Gambas-user] id3

2015-09-14 Thread Shane
anyone had any experience with id3 tags in gambas what would be the best lib etc or native gambas code? thanks Shane -- ___ Gambas-user mailing list Gambas-user

Re: [Gambas-user] R: Fwd: Re: MediaPlayer

2015-09-07 Thread Shane
Ok i got End event to trigger but still can't get Progress event to trigger On 08/09/15 16:03, Shane wrote: i don't like the loop thing but thanks i obviously need to call stop i guess i can just call stop before for calling play but i want to load the next song after one is finished

Re: [Gambas-user] R: Fwd: Re: MediaPlayer

2015-09-07 Thread Shane
hing wrong this seems to be the way it should be done thanks Ru Vuott. On 08/09/15 09:22, Ru Vuott wrote: > Hello Shane, > > in " Public Sub Button1_Click() " routine you can try: > > > Public Sub Button1_Click() > >If Not Dialog.OpenFile(

Re: [Gambas-user] Fwd: Re: MediaPlayer

2015-09-07 Thread Shane
On 08/09/15 11:42, Benoît Minisini wrote: > Le 08/09/2015 00:16, Shane a écrit : >> sent this already but it looks like it didn't work trying again >> >> >> >> Forwarded Message >> Subject: Re: MediaPlayer >> Date:

[Gambas-user] Fwd: Re: MediaPlayer

2015-09-07 Thread Shane
sent this already but it looks like it didn't work trying again Forwarded Message Subject:Re: MediaPlayer Date: Mon, 7 Sep 2015 17:18:57 +1000 From: Shane To: Benoît Minisini On 07/09/15 13:20, Benoît Minisini wrote: Le 07/09/2015 04:45, Shane a

Re: [Gambas-user] serial ports

2015-06-01 Thread Shane
vice do. (with > usb interfaces) > That's why you see extra code to read the links, you can leave it out > if not needed. > > Regards, > Ron. > > 2015-06-01 14:20 GMT+02:00 Shane : >> Thanks heaps this is exactly what i wanted. >> just one thing i get some 30

Re: [Gambas-user] serial ports

2015-06-01 Thread Shane
ok this works for me "tty[ACM*,USB*]" On 01/06/15 22:20, Shane wrote: > Thanks heaps this is exactly what i wanted. > just one thing i get some 30 odd ttys's and I'm sure there all not > usable serial ports but this is not a problem for me i can just use the >

Re: [Gambas-user] serial ports

2015-06-01 Thread Shane
On 01/06/15 21:55, Ron wrote: > https://domotiga.nl/projects/domotiga/repository/revisions/master/entry/DomotiGa3/.src/Util.module#L218 > > Where argument are '/dev/', 'tty[ACM|S|USB]*' > > Regards, > Ron. > > 2015-06-01 13:31 GMT+02:00 Benoît Minisini

[Gambas-user] Textbox bug

2014-09-12 Thread Shane
All of a sudden i can't type text in textboxs anymore i can delete but thats it? shane. [System] Gambas=3.5.90 OperatingSystem=Linux Kernel=3.11.0-26-generic Architecture=x86_64 Distribution=Linux Mint 16 Petra Desktop=GNOME Theme=QGtk Language=en_AU.UTF-8 Memory=3807M [Libraries]

Re: [Gambas-user] GridView not setting Row & Column on right-click Menu event

2014-08-07 Thread Shane
this helps Shane. On 07/08/14 08:43, DaveOxford1 wrote: > Hi All > > When right-clicking on a GridView, .Row and .Column are not set to the > values for the new cell in the Menu event (as they in the Click event for a > left-click). > > Is this a bug or the intended behaviou

Re: [Gambas-user] Settings

2014-07-27 Thread Shane
the next thing did anyone play it and what are some of your thoughts On 28/07/14 15:43, Shane wrote: > Thanks benoit that fixed it > But i'm not sure why but i guess you do > > Thanks Shane > > > On 28/07/14 15:26, B Bruen wrote: >> On Mon, 28 Jul 2014 07:18:47

Re: [Gambas-user] Settings

2014-07-27 Thread Shane
Thanks benoit that fixed it But i'm not sure why but i guess you do Thanks Shane On 28/07/14 15:26, B Bruen wrote: > On Mon, 28 Jul 2014 07:18:47 +0200 > Benoît Minisini wrote: > >> Le 28/07/2014 06:59, B Bruen a écrit : >>> On Sun, 27 Jul 2014 20:35:53 -0

Re: [Gambas-user] Settings

2014-07-27 Thread Shane
yep to big try this https://drive.google.com/file/d/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? >> >> >>

Re: [Gambas-user] Settings

2014-07-27 Thread Shane
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 wrote: > >> Something strange is going on here i just put in the code " Print >> Settings.Path " an

Re: [Gambas-user] Settings

2014-07-27 Thread Shane
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: > still not working i even changed the project name but i still get the > same error and th

Re: [Gambas-user] Settings

2014-07-27 Thread Shane
re/xxx"] = HighScore. > Regards, Matti > > Am 27.07.2014 05:02, schrieb Shane: >> I'm getting file already exists error when trying to run this code >> Settings["High_Score"] = HighScore >> am i doing this the right way? also this is a sdl program. >>

[Gambas-user] Settings

2014-07-26 Thread Shane
I'm getting file already exists error when trying to run this code Settings["High_Score"] = HighScore am i doing this the right way? also this is a sdl program. [System] Gambas=3.5.90 OperatingSystem=Linux Kernel=3.8.0-35-generic Architecture=x86_64 Distribution=Linux Mint 15 Olivia Desktop=

Re: [Gambas-user] sdl mouse

2014-07-05 Thread Shane
Thanks Benoit that works really well as for a name maybe "Capture" On 03/07/14 18:33, Benoît Minisini wrote: > Le 16/06/2014 15:25, Shane a écrit : >> hi benoit would it be possible to include the ability to keep the mouse >> within the bounds of the sdl window >&

Re: [Gambas-user] sdl mouse

2014-07-03 Thread Shane
eset them to within the > window, by code of your application, so that the mouse gets free if the > application dies. > > Rolf > > > Am 03.07.2014 07:44, schrieb Shane: >> any word on this >> >> On 16/06/14 23:25, Shane wrote: >>> hi benoit would it be po

Re: [Gambas-user] sdl mouse

2014-07-02 Thread Shane
any word on this On 16/06/14 23:25, Shane wrote: > hi benoit would it be possible to include the ability to keep the mouse > within the bounds of the sdl window > > thanks Shane > > -- > HPCC Systems

[Gambas-user] making 6349

2014-06-29 Thread Shane
i get this error when trying to make version 6349 make[4]: Entering directory `/home/shane/trunk/gb.desktop.x11/src' CC gb_desktop_x11_la-main.lo CC gb_desktop_x11_la-x11.lo CC gb_desktop_x11_la-c_x11systray.lo CC systray/gb_desktop_x11_la-systray.lo rm: cannot r

Re: [Gambas-user] menu error

2014-06-29 Thread Shane
ummm maybe i should have said i was using the ide to do this On 29/06/14 18:05, Patrik Karlsson wrote: > My guess is that you have to subtract one from your menu index. > http://en.wikipedia.org/wiki/Off-by-one_error > > > > 2014-06-29 5:14 GMT+02:00 Shane : > >> I

[Gambas-user] menu error

2014-06-28 Thread Shane
I get the attached error when trying to insert a menu to an existing project form build 6343 [System] Gambas=3.5.90 OperatingSystem=Linux Kernel=3.8.0-35-generic Architecture=x86_64 Distribution=Linux Mint 15 Olivia Desktop=GNOME Theme=QGtk Language=en_AU.UTF-8 Memory=3808M [Libraries] Cairo=li

[Gambas-user] sdl mouse

2014-06-16 Thread Shane
hi benoit would it be possible to include the ability to keep the mouse within the bounds of the sdl window thanks Shane -- HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions Find What Matters

Re: [Gambas-user] SDL Feature Hide Cursor

2014-06-15 Thread Shane
Thanks Benoit On 15/06/14 21:58, Benoît Minisini wrote: > Le 15/06/2014 05:58, Shane a écrit : >> Could we please have the ability in SDL to hide and show the cursor? >> >> thanks Shane. >> > Done in revision #6318. > > Mouse.Hide() hides the cursor. > Mo

[Gambas-user] SDL Feature Hide Cursor

2014-06-14 Thread Shane
Could we please have the ability in SDL to hide and show the cursor? thanks Shane. -- HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions Find What Matters Most in Your Big Data with HPCC Systems

Re: [Gambas-user] Pcduino

2014-05-06 Thread Shane
he pcduino would have a Library for the ardunio side of things but It is a bit more complicated than this it seems On 07/05/14 06:20, PICCORO McKAY Lenz wrote: >> From: Shane >>Can you show me some links to what you are talking about as i am not >> sure what you mean > i

Re: [Gambas-user] Pcduino

2014-05-05 Thread Shane
Can you show me some links to what you are talking about as i am not sure what you mean thanks On 06/05/14 01:41, PICCORO McKAY Lenz wrote: >> From: Shane >> is anyone one using gambas with the pcduino ? >> > i run venenux in darumas's pc's, that are minor

[Gambas-user] Pcduino

2014-05-02 Thread Shane
is anyone one using gambas with the pcduino ? to me they are a perfect match better than the pi at the moment i have got basic gpio working but anything else is alluding me is there a way to use a C library or something ? thanks shane

Re: [Gambas-user] Parent bug ?

2014-02-07 Thread Shane
lol what i have is a form2 on a workspace1 and the workspace1 is on the main form1 so from2 I want to get the location of workspace1 on form1 hope that makes sense? it just seem that these properties should be filled. On 07/02/14 17:13, Fabien Bodard wrote: > Le 7 févr. 2014 02:46, "S

Re: [Gambas-user] spelling bug ?

2014-02-06 Thread Shane
Control.Parent (gb.qt4) Property Read *Parent* As Container <http://gambasdoc.org/help/comp/gb.qt4/container?v3> Returns the control container. On 07/02/14 02:54, Fabien Bodard wrote: > But what is parent ? > Le 6 févr. 2014 06:31, "Shane" a écrit : > >> >

Re: [Gambas-user] spelling bug ?

2014-02-05 Thread Shane
> is this a bug ? > > when I use - " Me.Parent.Width " I get a value as expected > but when I use " Me.Parent.X .Y " I get 0 when I expecting a value > 0 > and the same with > " Me.Parent.ClientX .ClientY " etc -- Mana

[Gambas-user] bug ?

2014-02-05 Thread Shane
is this a bug ? when I use - " Me.Parent.Width " I get a value as exspeced but when I use " Me.Parent.X .Y " I get 0 when I expecting a value > 0 and the same with " Me.Parent.ClientX .ClientY " etc -- Managing the Perfo

[Gambas-user] ppa

2014-02-04 Thread Shane
is the daily build of kendek's ppa still working ? -- Managing the Performance of Cloud-Based Applications Take advantage of what the Cloud has to offer - Avoid Common Pitfalls. Read the Whitepaper. http://pubads.g.double

Re: [Gambas-user] printer bug ?

2014-02-04 Thread Shane
and here is the project On 05/02/14 11:26, Shane wrote: I think there might be a bug in the printer component this program generates a signal 11 when you press print -- Managing the Performance of Cloud-Based

Re: [Gambas-user] print repot to pdf file

2014-02-04 Thread Shane
That's Great just what i needed too On 04/02/14 04:05, Fabien Bodard wrote: > As always you under estimates gb ? > > Just name the file with a .pdf as extention. > > Printer.filename="Toto.pdf" > > Will generate a pdf. > Le 3 févr. 2014 16:46, "PICCORO McKAY Lenz" a > écrit : > >> i note that g

[Gambas-user] printer bug ?

2014-02-04 Thread Shane
I think there might be a bug in the printer component this program generates a signal 11 when you press print -- Managing the Performance of Cloud-Based Applications Take advantage of what the Cloud has to offer - Avoid C

Re: [Gambas-user] sdl music

2014-01-27 Thread Shane
On 28/01/14 05:46, Benoît Minisini wrote: > Le 27/01/2014 19:39, Benoît Minisini a écrit : >> Le 27/01/2014 11:17, Shane a écrit : >>> Can Someone please add a playing property to the sdl music component it >>> looks easy >>> using >>> >>

[Gambas-user] sdl music

2014-01-27 Thread Shane
Can Someone please add a playing property to the sdl music component it looks easy using 4.5.19 Mix_PlayingMusic |int *Mix_PlayingMusic*()| Tells you if music is actively playing, or not. *Note*: Does not check if the channel has been paused. *Returns*: Zero if the music is not playing,

[Gambas-user] Gridview

2014-01-01 Thread Shane
what is needed to get word warp height resizing working ? this is what i have GridView1.Rows[Index].Height = -1 GridView1[Index, 0].WordWrap = True so wordwarp works but the height is not resized -- Rapidly troubleshoot

Re: [Gambas-user] sdl

2013-12-15 Thread Shane
sorry wrong one try this On 15/12/13 22:53, Benoît Minisini wrote: Le 15/12/2013 07:06, Shane a écrit : i did a small program That program does not use SDL at all. Please provide a project that shows your problem! SDLtest-0.0.1.tar.gz Description: application/gzip

Re: [Gambas-user] sdl

2013-12-14 Thread Shane
i did a small program On 15/12/13 11:59, Shane wrote: what's going on here i'm trying to display and image with a rectangle around it on an SDL Window using Screen.Clear Draw.Image Draw.Rect when i do this i get just the Rect if i comment out the Draw.Rect the Image shows and if i c

[Gambas-user] sdl

2013-12-14 Thread Shane
what's going on here i'm trying to display and image with a rectangle around it on an SDL Window using Screen.Clear Draw.Image Draw.Rect when i do this i get just the Rect if i comment out the Draw.Rect the Image shows and if i comment out the Screen.Clear the image and rect show -

Re: [Gambas-user] Reading RGB(A) values of screen pixels

2013-11-21 Thread Shane
Is this of any help On 21/11/13 09:01, ukimiku wrote: *Dear list members,* this is my first post, I am new to Gambas. I tried to find an answer to my question by searching the list archives first, but have not been able to find information that was to the point. There are my 2 questions: a) W

Re: [Gambas-user] Reading RGB(A) values of screen pixels

2013-11-20 Thread Shane
and here http://gambasdoc.org/help/comp/gb.image/image?v3 On 21/11/13 09:01, ukimiku wrote: > *Dear list members,* > > this is my first post, I am new to Gambas. I tried to find an answer to my > question by searching the list archives first, but have not been able to > find information that was to

Re: [Gambas-user] Reading RGB(A) values of screen pixels

2013-11-20 Thread Shane
there is this for ver 2.0 http://gambasdoc.org/help/comp/gb.qt/image where you use image[x,y] On 21/11/13 09:01, ukimiku wrote: > *Dear list members,* > > this is my first post, I am new to Gambas. I tried to find an answer to my > question by searching the list archives first, but have not been a

[Gambas-user] curl ftp

2013-09-30 Thread Shane
I'm having trouble connecting to a FTP server using the curl ftpclient and it seems that it uses EPSV buy default is there a way to switch to PASV mode ? also when i'm finished using the ftp connection what is the correct way to dissconect? th

[Gambas-user] debug redirect

2013-09-19 Thread Shane
Is there a way to redirect the debug info from the curl Ftpclient to a textarea or something to give some user feed back (hope this one makes sense) :-) -- LIMITED TIME SALE - Full Year of Microsoft Training For Just $49.

  1   2   >