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

2011-09-04 Thread Ru Vuott
A dream for future RC4 or Component. I have a dream. Yes, people, I have a bright dream. I dream a new RC of Gambas3, or a new Component, ...that adds the possibility to insert file descriptors polls in the main message loop. I have a dream. I have an hope... Regards Paolo ---

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

2011-09-04 Thread Ru Vuott
> And where will these file descriptors come from? ...from ALSA. If I have a Gambas3-program, able to *receive* data Midi from ALSA (external Midi-Keyboard-->ALSA-sistem--->My-Gambas-Program), I could use "snd_seq_poll_descriptors_count()" and "snd_seq_poll_descriptors()" ALSA functions to get

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

2011-09-05 Thread Ru Vuott
> > And where will these file descriptors come from? > Hello Benoît, did you receive my answer ? Bye Paolo -- Special Offer -- Download ArcSight Logger for FREE! Finally, a world-class log management solution at an e

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

2011-09-05 Thread Ru Vuott
> Yes we have > Well, Fabien ! So, do you think you'll can make something about it? Thanks Paolo -- Special Offer -- Download ArcSight Logger for FREE! Finally, a world-class log management solution at an even bet

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

2011-09-13 Thread Ru Vuott
Hello Benoît, I tried your suggestion (see below), by using a external midi-keyboard, connected to PC, I tried about 50 (from num. 0) of fd and more, but it seems it doesn't work. :-( Thanks Bye Paolo > > Did you try to use "OPEN ... FOR READ / WRITE" on > "/proc/self/fd/xxx" where > xxx is

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

2011-09-15 Thread Ru Vuott
Hello Benoît, well, I need to put "arbitrary" file descriptors in the Message Loop, ...like GTK and QT toolkit that already allow to do it. These file descriptors (get from ALSA functions) can be used to wait for events from ALSA. bye Paolo --- Mar 13/9/11, Benoît Minisini ha scritto:

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

2011-09-16 Thread Ru Vuott
Hello Benoît, well, I cannot send you a source code, because, what I need and... wish, it doesen't exist in Gambas. I 'ld like to specify that ALSA provides only the "file descriptors". Stop ! The reopening of the same file should be checked and confirmed (you know it), because the opening coul

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

2011-09-17 Thread Ru Vuott
> Hello Benoît, > > well, I cannot send you a source code, because, what I need > and... wish, it doesen't exist in Gambas. > > I 'ld like to specify that ALSA provides only the "file > descriptors". > Stop ! > The reopening of the same file should be checked and > confirmed (you know it), becau

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

2011-09-18 Thread Ru Vuott
; Dont you have some c code to look at > from a similar alsa using prog? Or one > of its utils? > Op 18 sep. 2011 13:25 schreef "Ian Haywood" > het > volgende: > > On Sun, Sep 18, 2011 at 8:56 PM, Ru Vuott > wrote: > >> Hello, > >> > >> t

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

2011-09-18 Thread Ru Vuott
mbre 2011, 15:41 > Dont you have some c code to look at > from a similar alsa using prog? Or one > of its utils? > Op 18 sep. 2011 13:25 schreef "Ian Haywood" > het > volgende: > > On Sun, Sep 18, 2011 at 8:56 PM, Ru Vuott > wrote: > >> Hello, > >

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

2011-09-18 Thread Ru Vuott
Hello, about your new suggestion: 1) like I said, now I can open the fd in: /proc/self/fd/ e.g.: hFile = Open "/proc/self/fd/20" For read watch some fd (like 3,4,5,6, 16 and 20) gives data, others not. So, I don't understand what's the use of the trick. 2) how have I to use it ? maybe: hFil

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

2011-09-19 Thread Ru Vuott
Hello Benoît, thank you very much for your interest. I appreciated. Now, I am trying update my Gambas with: svn checkout https://gambas.svn.sourceforge.net/svnroot/gambas/gambas/trunk/ but I have some problem, ...maybe because I run Linux-Mint from a pen-drive as Live CD. I'll inform you abou

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

2011-09-24 Thread Ru Vuott
Hello Benoît, well, I tried your "trick" on using file descriptors. It seems it's OK ! But I verify a problem: when the midi-program runs, and midi events aren't sent, the use of one CPU springs up to 100% !!! If I press on a button or other object on the Form, the use of that CPU decrease

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

2011-09-24 Thread Ru Vuott
Hello Benoît, excuse me, I come back I send to you the source, so you can test the CPU problem. bye Paolo --- Sab 24/9/11, Ru Vuott ha scritto: > Da: Ru Vuott > Oggetto: Re: [Gambas-user] Release of Gambas 3 RC3. But I have a dream > A: "mailing list for gambas

[Gambas-user] Gambas + Midi + ALSA + file descriptors

2011-09-26 Thread Ru Vuott
Hello Benoît, I would just like to add that trying your trick ( hFile = Open "." & CStr(iAlsaFileDescriptor) For xxx Watch) besides the problem about CPU over-working (at 100%), wich I have already told, there is also a strange thing: as you see in the source (wich I sent you in my previous e-m

Re: [Gambas-user] Gambas + Midi + ALSA + file descriptors

2011-09-26 Thread Ru Vuott
Hello Benoît, I tried to put POLLOUT, but it doesn't change: - a CPU always at 100%; - line OPEN "." & CStr(numfd) wants For WRITE, and the called sub-routine wants File_Read(). - I can put File_Write() also, but so I have to put the "no-blocking" Alsa function: snd_seq_nonblock(handle, 1)

Re: [Gambas-user] Gambas + Midi + ALSA + file descriptors

2011-09-27 Thread Ru Vuott
Hello Benoît, I'ld like to recapitulate... AIM: *Receiving* Midi data FROM ALSA (rectius: FROM ALSA functions). STRATEGY: Putting the FD - *passed by ALSA* - under "observation" for Read by using a mechanism like: hfile = OPEN...ForWATCH. Normally the gambas-program sleeps, but when da

Re: [Gambas-user] Gambas + Midi + ALSA + file descriptors

2011-09-27 Thread Ru Vuott
> > So we agree that you must watch the descriptor for reading > (For Read Watch), Yes, Benoit: hfile = OPEN "." & Cstr(numfd) For ** READ WATCH ** - and Sub-routine raised: Public Sub File_READ() etc... ect... Thanks, Benoit. Paolo ---

[Gambas-user] Gambas + Midi + ALSA + file descriptors TER

2011-09-27 Thread Ru Vuott
Excuse, Benoit, I'ld like to remember: I must not read data from fd (because I'll read Midi data from special ALSA function). I need fd to *have* and to **raise** a gambas _Read event (...awake the program, so that I can read Midi data from special ALSA function). ...Ok Excuse, Bye Paolo

[Gambas-user] R: Using ALSA library from Gambas

2011-09-28 Thread Ru Vuott
A: gambas-user@lists.sourceforge.net > Data: Mercoledì 28 settembre 2011, 03:02 > This mail is for Ru Vuott (Paulo): > > Hi Paulo, > > I finally succeeded in running your example. > > There was a bug in the interpreter that prevented the alsa > descritor from > being watched for r

[Gambas-user] R: Using ALSA library from Gambas

2011-09-30 Thread Ru Vuott
mbas > A: gambas-user@lists.sourceforge.net > Data: Mercoledì 28 settembre 2011, 03:02 > This mail is for Ru Vuott (Paulo): > > Hi Paulo, > > I finally succeeded in running your example. > > There was a bug in the interpreter that prevented the alsa > descritor from >

[Gambas-user] Conflict discovered in 'trunk/main/lib/db/gb.db/.startup'.

2011-12-28 Thread Ru Vuott
Hello, from Gambas-3 (svn checkout) updating I had a message: << ... ... Utrunk/main/gbx/gbx_c_array.h Conflict discovered in 'trunk/main/lib/db/gb.db/.startup'. Select: (p) postpone, (df) diff-full, (e) edit, (mc) mine-conflict, (tc) theirs-conflict, (s) show all

[Gambas-user] Unable to save a GIF picture

2012-01-02 Thread Ru Vuott
Hello, ...I try: $Screenshot = Desktop.Screenshot() $Screenshot.Save("meaImago.gif") but with .gif there's a problemem: I have this error: "Unable to save picture" Regards Paolo -- Ridiculously easy VDI. With Cit

Re: [Gambas-user] Unable to save a GIF picture

2012-01-02 Thread Ru Vuott
o: Re: [Gambas-user] Unable to save a GIF picture > A: "mailing list for gambas users" > Data: Lunedì 2 gennaio 2012, 23:41 > 2012/1/2 Ru Vuott : > > Hello, > > > > ...I try: > > > > $Screenshot = Desktop.Screenshot() > > $Screenshot.Save("

[Gambas-user] Mirror-like rotation of a text character or an image...

2012-01-09 Thread Ru Vuott
Hello, I'ld like to get a specular/mirror-like rotation of a character (only as example: from "d" to "b") or an *image*... suggestion ? Thanks Paolo -- Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a c

[Gambas-user] QPaintDevice: Cannot destroy paint device that is being painted

2012-01-13 Thread Ru Vuott
Hello Benoît, using Paint (in Gambas-3), like: Dim h As Image h = h.Load("imago_mea.gif") paint.Begin(h) etc...etc... when I run program, console restores this message: << QPaintDevice: Cannot destroy paint device that is being painted >> what's that ? Regards Paolo --

Re: [Gambas-user] Balloon Colors Issue

2014-12-18 Thread Ru Vuott
:-D Gio 18/12/14, Jorge Carrión ha scritto: Oggetto: Re: [Gambas-user] Balloon Colors Issue A: "mailing list for gambas users" Data: Giovedì 18 dicembre 2014, 10:42 The solution is very simple, like Ru Vuott has pointed, Bal

[Gambas-user] ERROR with rev 6769

2014-12-26 Thread Ru Vuott
Hello, I obtained error with rev 6769: make[4]: ingresso nella directory "/home/vuott/trunk/gb.sdl2/src" CC gb_sdl2_la-c_window.lo In file included from c_window.h:27:0, from c_window.c:26: main.h:32:17: fatal error: SDL.h: No such file or directory #include "SDL.h"

[Gambas-user] Again about error with SDL 2

2014-12-27 Thread Ru Vuott
Hello, I reported some errors with SDL2. I was thinking: should I install SDL2-dev library, or is not necessary? Regards vuott -- Dive into the World of Parallel Programming! The Go Parallel Website, sponsored by Intel

[Gambas-user] SVN rev. 6772: SDL 2 ERROR NOT solved !

2014-12-27 Thread Ru Vuott
Hello, I tried with new rev 6772, but I obtained again an ERROR: make[4]: ingresso nella directory "/home/vuott/trunk/gb.sdl2/src" CC gb_sdl2_la-c_image.lo In file included from c_image.h:27:0, from c_image.c:26: main.h:33:17: fatal error: SDL.h: No such file or director

[Gambas-user] Still problem: ERROR with rev 6771

2014-12-28 Thread Ru Vuott
Hello, I obtained again an error, now with new revision: 6771. make[4]: ingresso nella directory "/home/vuott/trunk/gb.sdl2/src" make[4]: *** Nessuna regola per generare l'obiettivo "c_image.c", necessario per "gb_sdl2_la-c_image.lo". Arresto. make[4]: uscita dalla directory "/home/vuott/tr

[Gambas-user] SDL2 : another ERROR with rev. 6773

2014-12-28 Thread Ru Vuott
Hello, I obtain ERROR with new revision: 6773 make[4]: ingresso nella directory "/home/vuott/trunk/gb.sdl2/src" CC gb_sdl2_la-c_image.lo In file included from c_image.h:27:0, from c_image.c:26: main.h:34:17: fatal error: SDL.h: No such file or directory #include "SDL.

Re: [Gambas-user] SVN rev. 6772: SDL 2 ERROR NOT solved !

2014-12-29 Thread Ru Vuott
cembre 2014, 11:01 you need libsdl2-image-dev, and libsdl2-ttf-dev (for the future) 2014-12-27 20:30 GMT+01:00 Ru Vuott : > Hello, > > I tried with new rev 6772, but I obtained again an ERROR: > > > make[4]: ingresso nella directory "/home/vuott/trunk/gb.sdl2/src

Re: [Gambas-user] SVN rev. 6772: SDL 2 ERROR NOT solved !

2014-12-29 Thread Ru Vuott
solved ! A: "mailing list for gambas users" Data: Domenica 28 dicembre 2014, 14:26 Le 27/12/2014 20:30, Ru Vuott a écrit : > Hello, > > I tried with new rev 6772, but I obtained again an ERROR: > > > make[4]: ingresso nella directory "/home/

Re: [Gambas-user] Still problem: ERROR with rev 6771

2014-12-29 Thread Ru Vuott
e problem. Thanks! Jussi On Sun, Dec 28, 2014 at 8:16 PM, Fabien Bodard wrote: > you need libsdl2-image-dev, and libsdl2-ttf-dev (for the future) > > 2014-12-27 16:21 GMT+01:00 Ru Vuott : > > Hello, > > > > I obtained again an error, now with new revisi

[Gambas-user] Playing MIDI file by using gb.SDL2.audio

2014-12-30 Thread Ru Vuott
Hi, with rev. 6779 I saw the new resource to play audio files. Well, I would point out that, we can allow the execution also Midi files, but it is necessary to implement the Class "Music" function Mix_SetSoundFonts (const char * paths); (from file header: SDL_mixer.h) * Next set

Re: [Gambas-user] Playing MIDI file by using gb.SDL2.audio

2014-12-30 Thread Ru Vuott
t line 609 in that header file. Regards vuot Mar 30/12/14, Benoît Minisini ha scritto: Oggetto: Re: [Gambas-user] Playing MIDI file by using gb.SDL2.audio A: "mailing list for gambas users" Data: Martedì 30 dicembre 2014, 23:12

Re: [Gambas-user] Playing MIDI file by using gb.SDL2.audio

2014-12-30 Thread Ru Vuott
MIDI file by using gb.SDL2.audio A: "mailing list for gambas users" Data: Martedì 30 dicembre 2014, 23:59 Le 30/12/2014 23:12, Benoît Minisini a écrit : > Le 30/12/2014 20:21, Ru Vuott a écrit : >> Hi, >> with rev. 6779 I saw the new resource to play audi

Re: [Gambas-user] Playing MIDI file by using gb.SDL2.audio - BIS

2014-12-31 Thread Ru Vuott
2014 00:52, Ru Vuott a écrit : > Hello, > > here attached a screenshot of  header file /SDL2/SDL_Mixer, where it's possible to see the function   Mix_SetSoundFonts(const char * paths); > > Regards > vuott > > Thanks, I got it and implemented it in revi

[Gambas-user] What values for Music.Volume of gb.sdl2.sound ?

2014-12-31 Thread Ru Vuott
Hello, I'm continuing to test the resources of the component "gb.sdl2.sound", and I do not understand how setting the values of Music.Volume property. /SDL2/SDL_mixer.h documentation tells about volume in the range of 0-128... but I saw "Music.Volume" doesn't work with these values range. So,

Re: [Gambas-user] What values for Music.Volume of gb.sdl2.sound ?

2014-12-31 Thread Ru Vuott
opsss... excuse me, Charlie, -> gb.sdl2.audio Regards vuott Mer 31/12/14, Charlie ha scritto: Oggetto: Re: [Gambas-user] What values for Music.Volume of gb.sdl2.sound ? A: gambas-user@lists.sourceforge.net Data: Mercoledì 31 dicembre 2014, 14:1

Re: [Gambas-user] What values for Music.Volume of gb.sdl2.sound ?

2014-12-31 Thread Ru Vuott
a: Mercoledì 31 dicembre 2014, 14:39 Le 31/12/2014 13:31, Ru Vuott a écrit : > Hello, > > I'm continuing to test the resources of the component "gb.sdl2.sound", and I do not understand how setting the values of Music.Volume property. > > /SDL2/SDL_mixer.h  doc

[Gambas-user] SDL2 : "Channel" Class has not property nor metods...

2015-01-01 Thread Ru Vuott
Hello Benoît, SDL2 "Channel" Class doesn't seems at present to have active property nor metods. Doesn't it ? Regards vuott -- Dive into the World of Parallel Programming! The Go Parallel Website, sponsored by Intel a

[Gambas-user] R: SDL2 : "Channel" Class has not property nor metods...

2015-01-01 Thread Ru Vuott
...in short, SDL2 "Channel" Class seems to be useless at present. Regards vuott Gio 1/1/15, Ru Vuott ha scritto: Oggetto: [Gambas-user] SDL2 : "Channel" Class has not property nor metods... A: gambas-user@lists.sourceforge.

Re: [Gambas-user] R: SDL2 : "Channel" Class has not property nor metods...

2015-01-02 Thread Ru Vuott
enoît Minisini ha scritto: Oggetto: Re: [Gambas-user] R: SDL2 : "Channel" Class has not property nor metods... A: "mailing list for gambas users" Data: Venerdì 2 gennaio 2015, 04:47 Le 02/01/2015 02

[Gambas-user] R: Happy new year

2015-01-02 Thread Ru Vuott
Thanks Ven 2/1/15, Fabien Bodard ha scritto: Oggetto: [Gambas-user] Happy new year A: gambas-user@lists.sourceforge.net Data: Venerdì 2 gennaio 2015, 10:15 ... To all Gambasians 😃 I wish you a lot of fun Code for this new year  ! ---

Re: [Gambas-user] R: SDL2 : "Channel" Class has not property nor metods...

2015-01-02 Thread Ru Vuott
Minisini ha scritto: Oggetto: Re: [Gambas-user] R: SDL2 : "Channel" Class has not property nor metods... A: "mailing list for gambas users" Data: Venerdì 2 gennaio 2015, 04:47 Le 02/01/2015 02:14, Ru Vuott a écrit : > ...in short, SDL2 "Channel" Class s

Re: [Gambas-user] R: SDL2 : "Channel" Class has not property nor metods...

2015-01-02 Thread Ru Vuott
ck() event ? Regards vuott Ven 2/1/15, Benoît Minisini ha scritto: Oggetto: Re: [Gambas-user] R: SDL2 : "Channel" Class has not property nor metods... A: "mailing list for gambas users" Data: Venerdì 2 gennaio 2015, 10:49 Le

Re: [Gambas-user] R: SDL2 : "Channel" Class has not property nor metods...

2015-01-02 Thread Ru Vuott
rty nor metods... A: "mailing list for gambas users" Data: Venerdì 2 gennaio 2015, 13:29 Le 02/01/2015 12:55, Ru Vuott a écrit : > Ok, I understand,  but my problem is: > > with the old "gb.sdl.sound" component if I wanted to use .Stop() method to stop the pla

[Gambas-user] SDL2 : "Music.SoundFontPath" doesn't work with graphic components

2015-01-02 Thread Ru Vuott
Hello Benoît, I noticed " Music.SoundFontPath " property doesn't work, if I use any graphic component. So, for example, this works: Public Sub Main() With Music .SoundFontPath = "/path/of/soundbank/file.sf2" .Load("/path/of/my/file.mid") .Play End With While Music.Stat

Re: [Gambas-user] SDL2 : "Music.SoundFontPath" doesn't work with graphic components

2015-01-02 Thread Ru Vuott
hanks and bye. vuott Ven 2/1/15, Benoît Minisini ha scritto: Oggetto: Re: [Gambas-user] SDL2 : "Music.SoundFontPath" doesn't work with graphic components A: "mailing list for gambas users" Data: Venerdì 2 gennaio 2015, 19:10 Le 02/01/2015 18:37, Ru Vuo

[Gambas-user] R: Gridview cell coordinates

2015-01-02 Thread Ru Vuott
Hi, maybe, something like this example ? Public Sub Form_Open() GridView1.Columns.Count = 2 GridView1.Rows.Count = 2 End Public Sub GridView1_Menu()' If right click... Balloon.Info("Cell " & GridView1.Row & "," & GridView1.Column, GridView1, (GridView1.Columns[GridView1.Column].X

Re: [Gambas-user] SDL2 : "Music.SoundFontPath" doesn't work with graphic components

2015-01-02 Thread Ru Vuott
o activate and deactivate Volume setting in " Public Sub Slider1_Change() " routine. ) Regards. vuott -------- Ven 2/1/15, Ru Vuott ha scritto: Oggetto: Re: [Gambas-user] SDL2 : "Music.SoundFontPath" doesn't work with gra

Re: [Gambas-user] SDL2 : "Music.SoundFontPath" doesn't work with graphic components

2015-01-02 Thread Ru Vuott
19:10 Le 02/01/2015 18:37, Ru Vuott a écrit : > Hello Benoît, > > I noticed " Music.SoundFontPath " property doesn't work, if I use any graphic component. > > So, for example, this works: > > Public Sub Main() > >     With Music >       

Re: [Gambas-user] SDL2 : "Music.SoundFontPath" doesn't work with graphic components

2015-01-02 Thread Ru Vuott
t IF. Regards vuott Ven 2/1/15, Benoît Minisini ha scritto: Oggetto: Re: [Gambas-user] SDL2 : "Music.SoundFontPath" doesn't work with graphic components A: "mailing list for gambas users" Data: Venerdì 2 gennaio 2015, 21:47 Le 02/01/2015 21:28, Ru Vuott a écrit :

[Gambas-user] Rev. #6829 --> Unable to compile gbh3

2015-01-11 Thread Ru Vuott
Hello, with rev. 6829 I obtain this notice: Unable to compile gbh3 Well, I suppose I need to install preliminarily a library... what ? Regards vuott -- New Year. New Location. New Benefits. New Data Center in Ash

[Gambas-user] R: Есть ли желающие из русскоязычного сообщества для поддержки сайта gambas.pro (Do R\russian-speaking volunteers from communities in the support site gambas.pro)

2015-01-17 Thread Ru Vuott
Hi, I reported russian "gambas.pro" site and its forum in italian Gambas forum: http://www.gambas-it.org/smf/index.php?topic=3883.0 bye vuott Sab 17/1/15, Беспалов Алексей ha scritto: Oggetto: [Gambas-user] Есть ли желающие из русскоязычного со

[Gambas-user] R: IsPunct

2015-01-31 Thread Ru Vuott
Hello Fabien, I use function from C : int isprint(int c) Its declaracion in Gambas obviously is: Private Extern isprint(num As Integer) As Integer In "libc:6" :-D Example: ' int isprint(int c) Private Extern isprint(num As Integer) As Integer In "libc:6" Public Sub Main() Print

[Gambas-user] R: IsPunct

2015-01-31 Thread Ru Vuott
Adde exemplum: ' int isprint(int c) Private Extern isprint(num As Integer) As Integer In "libc:6" Public Sub Main() Dim s As String = "Gam\nbas" Dim bb As Byte[] bb = Byte[].FromString(s) For Each s In bb Print CBool(isprint(s)) Next End ---

[Gambas-user] Creating a trasparent DrawingArea...

2015-02-13 Thread Ru Vuott
Hello, I'ld like to superimpose two DrawingArea: the **upper** DrawingArea has to have a transparent background, so I can see the drawings of both DrawingAreas. How can I do it ? Regards Vuott -- Dive into the World of

[Gambas-user] R: Tutorial on native component development

2015-03-06 Thread Ru Vuott
"Ru" is me: Vuott. :-D bye vuott Ven 6/3/15, Tobias Boege ha scritto: Oggetto: [Gambas-user] Tutorial on native component development A: gambas-user@lists.sourceforge.net Data: Venerdì 6 marzo 2015, 02:13 Hi list, Ru thought it would be a g

[Gambas-user] R: Tutorial on native component development

2015-03-08 Thread Ru Vuott
Thank you, Tobi. it's a good work. Bye vuott Ven 6/3/15, Tobias Boege ha scritto: Oggetto: [Gambas-user] Tutorial on native component development A: gambas-user@lists.sourceforge.net Data: Venerdì 6 marzo 2015, 02:13 Hi list, Ru thought it

[Gambas-user] Revision #4160 feature doesn't work anymore.

2015-03-17 Thread Ru Vuott
Hello Benoît, as you may recall, revision #4160 implemented the feature to "watch" the file-descriptor passed by the ALSA function "snd_seq_event_input (seq, & event)", which allows to read a file-descriptor when it is "ready". Well, I must say that this feature **always worked very well**. Lat

Re: [Gambas-user] Revision #4160 feature doesn't work anymore.

2015-03-19 Thread Ru Vuott
ist for gambas users" Data: Giovedì 19 marzo 2015, 14:51 Le 17/03/2015 18:02, Ru Vuott a écrit : > Hello Benoît, > > as you may recall, revision #4160 implemented the feature to "watch" > the file-descriptor passed by the ALSA function "snd_seq_event_in

Re: [Gambas-user] Revision #4160 feature doesn't work anymore.

2015-03-19 Thread Ru Vuott
ailing list for gambas users" Data: Giovedì 19 marzo 2015, 19:53 Le 19/03/2015 19:19, Ru Vuott a écrit : > No, Benoît, revision #6993 didn't solve the problem. > The two programs don't work.  :-( > > bye > vuott > Do you mean that before that change, o

Re: [Gambas-user] Revision #4160 feature doesn't work anymore.

2015-03-19 Thread Ru Vuott
can't get any sound with the "working" version. Jussi On Thu, Mar 19, 2015 at 9:51 PM, Ru Vuott wrote: > No, Benoît, excuse me: I expressed myself badly and not properly. > > I want to say  nothing changed with revision #6993: > * the old/original Drum-Machi

Re: [Gambas-user] Revision #4160 feature doesn't work anymore.

2015-03-19 Thread Ru Vuott
Le 20/03/2015 00:16, Ru Vuott a écrit : > Hello Jussi, > > if you want to ear the drum sound: > > 1) run Jack Audio Connection Kit; > 2) run a softsynth (for example: Qsynth); > 3) connect via Jack 14:0 Midi-Through port ---> 129:Fluid Sinth (id est: QSynth) &

Re: [Gambas-user] Revision #4160 feature doesn't work anymore.

2015-03-19 Thread Ru Vuott
; Data: Venerdì 20 marzo 2015, 01:17 OK, I'm not very familiar with Midi things. With your instructions, the working version works as expected. Jussi On Fri, Mar 20, 2015 at 1:16 AM, Ru Vuott wrote: > Hello Jussi, > > if you want to ear the drum sound: > &g

Re: [Gambas-user] Revision #4160 feature doesn't work anymore.

2015-03-20 Thread Ru Vuott
enerdì 20 marzo 2015, 07:48 Le 20/03/2015 01:17, Ru Vuott a écrit : > No, Benoît, it doesn't work. > > bye > vuott > And with revision #6995? -- Benoît Minisini -- Dive into the Wo

[Gambas-user] R: Ubuntu message

2015-03-22 Thread Ru Vuott
> would not be wonderful if Gambas also inform us so? What would be the difference and the real utility compared to that ordinary from Gambas? Dom 22/3/15, Gian ha scritto: Oggetto: [Gambas-user] Ubuntu message A: Gambas-user@lists.sourceforge

[Gambas-user] Error: Commands out of sync...

2015-03-27 Thread Ru Vuott
Hello, an our friend of gambas-it forum said that he gets the error " Commands out of sync; you can't run this command now " when running twice a MySQL stored procedures. He said he saw on Google that the problem is known, but he could not find a solution. Do you know something about ? Reg

[Gambas-user] ERROR with revision 7017

2015-03-30 Thread Ru Vuott
Hello, ... I obtain this error with revision 7017: Making all in gb.db.sqlite3 make[2]: Entering directory `/home/vuott/trunk/gb.db.sqlite3' make all-recursive make[3]: Entering directory `/home/vuott/trunk/gb.db.sqlite3' Making all in src make[4]: Entering directory `/home/vuott/trunk/gb.db.sq

Re: [Gambas-user] [Gambas-devel] Gambas trunk Rev. 7017 error

2015-03-30 Thread Ru Vuott
...me too. I solved by removing gb.db.sqlite3/src/.deps' folder. Thanks vuott Lun 30/3/15, Charlie Reinl ha scritto: Oggetto: Re: [Gambas-user] [Gambas-devel] Gambas trunk Rev. 7017 error A: gambas-user@lists.sourceforge.net Data: Lunedì 30 marz

[Gambas-user] R: ERROR with revision 7017

2015-03-30 Thread Ru Vuott
I solved by removing " gb.db.sqlite3/src/.deps " folder. regards vuott Lun 30/3/15, Ru Vuott ha scritto: Oggetto: [Gambas-user] ERROR with revision 7017 A: gambas-user@lists.sourceforge.net Data: Lunedì 30 marzo 2015, 11:10 Hello

Re: [Gambas-user] TextArea show first line of text

2015-05-01 Thread Ru Vuott
TextArea.Pos = 0 or, if you prefer TextArea1.Line = 0 TextArea1.Column = 0 Ven 1/5/15, Johny Provoost ha scritto: Oggetto: Re: [Gambas-user] TextArea show first line of text A: gambas-user@lists.sourceforge.net Data: Venerdì 1 maggio 2015,

[Gambas-user] R: Control.Move like animation

2015-05-01 Thread Ru Vuott
It works. Pay attention, Wait 10 -> 10 seconds !!! Regards vuott Ven 1/5/15, abbat81 ha scritto: Oggetto: [Gambas-user] Control.Move like animation A: gambas-user@lists.sourceforge.net Data: Venerdì 1 maggio 2015, 13:11 How to move a control

[Gambas-user] R: How to know is my Form activated or not?

2015-05-02 Thread Ru Vuott
If you know visible-name of Form, you could use (gb.Desktop): Public Sub Button1_Click() Dim dw As DesktopWindow For Each dw In Desktop.Windows ' If the visible-name is the same as the name of the form that we seek, then it detects that: If dw.VisibleName = "visible-name

Re: [Gambas-user] R: How to know is my Form activated or not?

2015-05-03 Thread Ru Vuott
Me.Caption = "my visible name" Dom 3/5/15, abbat81 ha scritto: Oggetto: Re: [Gambas-user] R: How to know is my Form activated or not? A: gambas-user@lists.sourceforge.net Data: Domenica 3 maggio 2015, 13:28 Does not work in my pr

Re: [Gambas-user] R: How to know is my Form activated or not?

2015-05-04 Thread Ru Vuott
Activating gb.desktop: Public Sub Form_Open() Me.Caption = "Novum Nomen" End Public Sub Button1_Click() Dim dw As DesktopWindow For Each dw In Desktop.Windows Print "_" & dw.VisibleName Next End ***

Re: [Gambas-user] R: How to know is my Form activated or not?

2015-05-05 Thread Ru Vuott
...very strange ! Mar 5/5/15, abbat81 ha scritto: Oggetto: Re: [Gambas-user] R: How to know is my Form activated or not? A: gambas-user@lists.sourceforge.net Data: Martedì 5 maggio 2015, 08:59

[Gambas-user] Rev. 7062 - gb.qt5 component: disabled

2015-05-08 Thread Ru Vuott
Hello, with rev. 7062 I obtain this notice: || || THESE COMPONENTS ARE DISABLED: || - gb.qt5 || What library "qt5" I have to install ? Regards vuott -- One dashboard for servers and applications across Physical-Virtua

[Gambas-user] I: DrawigArea second mailing

2015-05-16 Thread Ru Vuott
...from Gianluigi (its email end in SPAM) --- Sab 16/5/15, Gian ha scritto: > Da: Gian > Oggetto: [Gambas-user] DrawigArea second mailing > A: Gambas-user@lists.sourceforge.net > Data: Sabato 16 maggio 2015, 16:18 > I was informed that the previous > email with the subject DravingArea > error

[Gambas-user] I: Re: I: DrawigArea second mailing

2015-05-16 Thread Ru Vuott
scritto: > > Le > 16/05/2015 16:27, Ru Vuott a écrit : > >> ...from Gianluigi (its email end in > SPAM) > >> > > > > "Pending path" means that you > cannot draw text (with DrawText() method > > for example) if you have started a drawing &g

[Gambas-user] Kde 5 and trayicon

2015-05-17 Thread Ru Vuott
Hello, a member of gambas.it forum says he installed the latest version of Kubuntu, the 15.04, with kde 5. He tells that unfortunately trayicon seems not to be compatible with the new system tray, and the program icon is not displayed. He questions if there is a solution or if with later versi

Re: [Gambas-user] Kde 5 and trayicon

2015-05-17 Thread Ru Vuott
Well, thank you. I'll tell it to him. vuott Dom 17/5/15, Benoît Minisini ha scritto: Oggetto: Re: [Gambas-user] Kde 5 and trayicon A: "mailing list for gambas users" Data: Domenica 17 maggio 2015, 19:36 Le 17/05/2015 19:

[Gambas-user] ERROR in IDE with vers. #7089 !!!

2015-05-19 Thread Ru Vuott
Hello Benoît, I update vers. #7089, but now when I want to open a "New" project from IDE, I obtain an Error notice. You can see it in attached file immage. Regards vuott-- One dashboard for servers and applications acro

[Gambas-user] Problem with rev. #7090: impossible to paste a text in the project

2015-05-20 Thread Ru Vuott
Hello, with rev. #7090 I have a strange problem: I cannot paste in a project the text that I highlighted with the mouse. regards vuott P.S. : I wanted to paste here the characteristics of my system, but - although I have clicked on the "Copy" on "System information" window - I could not paste

Re: [Gambas-user] Problem with rev. #7090: impossible to paste a text in the project

2015-05-20 Thread Ru Vuott
I cannot copy a text code and insert it as code of some my project. Regards vuott vuott Mer 20/5/15, Benoît Minisini ha scritto: Oggetto: Re: [Gambas-user] Problem with rev. #7090: impossible to paste a text in the project A: "mailing list for gambas users" Data: Mercoledì 20 maggi

Re: [Gambas-user] Problem with rev. #7090: impossible to paste a text in the project

2015-05-20 Thread Ru Vuott
iling list for gambas users" Data: Giovedì 21 maggio 2015, 00:32 Le 21/05/2015 00:20, Ru Vuott a écrit : > Ok, but it is really a trouble and an inconvenience, because if I want to insert in the IDE some text Gambas code: > - if it was copied from a web page, I obtain strange sy

[Gambas-user] ERROR "Unable to compile gambas3" in rev. #7092 !

2015-05-21 Thread Ru Vuott
Hello, at end of "make install" rev. 7092 I obtaoned this Error: Installing gb.form.editor... make[2]: Nessuna operazione da eseguire per "install-data-am". make[2]: uscita dalla directory "/home/vuott/trunk/comp" make[1]: uscita dalla directory "/home/vuott/trunk/comp" Making install in app mak

[Gambas-user] R: ERROR "Unable to compile gambas3" in rev. #7092 !

2015-05-22 Thread Ru Vuott
Hello, new rev. #7093 didn't solve the Error ! :-( Regards vuott Gio 21/5/15, Ru Vuott ha scritto: Oggetto: [Gambas-user] ERROR "Unable to compile gambas3" in rev. #7092 ! A: gambas-user@lists.sourceforge.net Data: Giovedì

Re: [Gambas-user] R: ERROR "Unable to compile gambas3" in rev. #7092 !

2015-05-22 Thread Ru Vuott
maggio 2015, 17:18 Try a sudo make uninstall make clean svn up ./reconf ./configure -C make -j4 sudo make install Le 22 mai 2015 16:25, "Ru Vuott" a écrit : > Hello, > > new rev. #7093 didn't solve the Error !  :-( > > Regards > vuott >

Re: [Gambas-user] R: ERROR "Unable to compile gambas3" in rev. #7092 !

2015-05-22 Thread Ru Vuott
" in rev. #7092 ! A: "mailing list for gambas users" Data: Venerdì 22 maggio 2015, 18:29 Le 22/05/2015 18:15, Ru Vuott a écrit : > Hello Fabien, > > thank you for your suggestion. > > So, I tried like reported below: > > ~/trunk $ sudo make uni

Re: [Gambas-user] R: ERROR "Unable to compile gambas3" in rev. #7092 !

2015-05-25 Thread Ru Vuott
.0.1000.8 GTK+=libgtk-x11-2.0.so.0.2400.23 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.44.0.0 Qt4=libQtCore.so.4.8.6 Qt5=libQt5Core.so.5.2.1 SDL=libSDL-1.2.so.0.11.4 Ven 22/5/15, Ru Vuott ha scritto: Oggetto: Re: [Gambas-user] R: ERROR "Unab

Re: [Gambas-user] R: ERROR "Unable to compile gambas3" in rev. #7092 !

2015-05-26 Thread Ru Vuott
: Re: [Gambas-user] R: ERROR "Unable to compile gambas3" in rev. #7092 ! A: gambas-user@lists.sourceforge.net Data: Martedì 26 maggio 2015, 13:01 Am Montag, den 25.05.2015, 11:07 +0100 schrieb Ru Vuott: > Hello, > > I come back about this problem that I had on my home PC

Re: [Gambas-user] R: ERROR "Unable to compile gambas3" in rev. #7092 !

2015-05-26 Thread Ru Vuott
Le 26/05/2015 17:22, Ru Vuott a écrit : > > Thank you very much, Charlie, finally a more information ! > So, therefore, do I have "to wait for" :-(   Ubuntu provides Qt5Core >= 5.3 version ? > > Amicalement - con amicizia > > vuott > See my answe

[Gambas-user] No "OK" Button in "Project Type" window

2015-05-29 Thread Ru Vuott
Hello, with rev. 7102 at last Gambas now is compiled. Well. Now, with rev. 7103 I have a new problem: "Project Type" IDE window (when I want to create new project) has only 1 (one) button !!! The "OK" button is missing. I see only "Cancel" (for closing the window). Regards vuott

Re: [Gambas-user] No "OK" Button in "Project Type" window

2015-05-29 Thread Ru Vuott
Yes, it is. Bye Ven 29/5/15, Benoît Minisini ha scritto: Oggetto: Re: [Gambas-user] No "OK" Button in "Project Type" window A: "mailing list for gambas users" Data: Venerdì 29 maggio 2015, 13:46 Le 29/05

[Gambas-user] R: how to generation 12 random letters (A-Z and 0-9)

2015-05-30 Thread Ru Vuott
Hello, I propose: Public Sub Button1_Click() Dim j As Byte Dim s As String For j = 1 To 12 If Fix(Rnd(0, 2)) Then s &= Chr(Rnd(48, 58)) Else s &= Chr(Rnd(65, 91)) Endif Next Print s End Sab 30/5/15, tsukuba GI

Re: [Gambas-user] R: how to generation 12 random letters (A-Z and 0-9)

2015-06-05 Thread Ru Vuott
On 15-06-02 08:49 AM, nando wrote: > >> Alternate: > >> > >> Dim j as Byte > >> Dim s as String > >> > >> For j = 1 To 12 > >>    s &= Mid("ABCDEFGJIJKLMOPQRSTUVWXYZ0123456789", Int(1, 13), 1) > >> Next

  1   2   3   4   5   6   7   >