Re: [Gambas-user] Playing Music

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

[Gambas-user] Playing Music

2014-07-20 Thread Dheeraj B
Hi, I am new to gambas and programming as well,I got a project to do in my internship to play music from an xml,i am able to play a single music file but not from an xml sheet,and when trying with an xml sheet i am getting lot of errors and also iam not able to do that, Can any one pls help me h

Re: [Gambas-user] how copy the screen to memory on a sdl project

2014-07-20 Thread MinnesotaJon
Hello, Jacky -- You may find it useful to go to my Wordpress blog: http://beginnersguidetogambas.com/ On the main page, you will find a list of downloads, including download #4, "4.Gambas3". This download includes a program that I wrote called "Screenshooter", which uses the Window.Screenshot m

[Gambas-user] Gambas applications and session management

2014-07-20 Thread Benoît Minisini
Hi, In revision #6392, I have implemented automatic session management support in gb.qt4. Consequently, if you logout while one or several Gambas IDE are opened, now they will be restarted automatically at the next login. Moreover, they will be put in the virtual desktop where they were locate

Re: [Gambas-user] New feature with Task component

2014-07-20 Thread Olivier Cruilles
In the TASK, I just do that: PRINT data1 & ";" & data2 & ";" & data3 & ";" & data4 ' In a For Each loop Ex: PRINT "127.0.0.1;3413;7834;57661510" In the parent process: Public sUDPServer_READ(Data as string) DIM Champs as String[] DIM ListLigne as String[] ListLigne = split(Data,

Re: [Gambas-user] New feature with Task component

2014-07-20 Thread Benoît Minisini
Le 20/07/2014 15:21, Olivier Cruilles a écrit : > Hello Benoit, > > I'm building an application that is a UDP Server to receive and > decompilate network flow. > > To not lose UDP sequence, the main process of this application need > to be the most fast possible. So in this case, when a READ event

[Gambas-user] New feature with Task component

2014-07-20 Thread Olivier Cruilles
Hello Benoit, I'm building an application that is a UDP Server to receive and decompilate network flow. To not lose UDP sequence, the main process of this application need to be the most fast possible. So in this case, when a READ event of the USPServer raise, I just catch it as string directl