Am 18.12.2013 08:35, schrieb Charlie Reinl:
> Am Mittwoch, den 18.12.2013, 08:21 +0100 schrieb Rolf-Werner Eilert:
>>
>> Am 18.12.2013 03:54, schrieb Benoît Minisini:
>>> Le 18/12/2013 03:35, Bruce a écrit :
Wasn't there a context menu item somewhere in the IDE that told you
(amongst ot
Am Mittwoch, den 18.12.2013, 08:21 +0100 schrieb Rolf-Werner Eilert:
>
> Am 18.12.2013 03:54, schrieb Benoît Minisini:
> > Le 18/12/2013 03:35, Bruce a écrit :
> >> Wasn't there a context menu item somewhere in the IDE that told you
> >> (amongst other things) how many source code lines were in th
Am 18.12.2013 03:54, schrieb Benoît Minisini:
> Le 18/12/2013 03:35, Bruce a écrit :
>> Wasn't there a context menu item somewhere in the IDE that told you
>> (amongst other things) how many source code lines were in the project?
>>
>> ?
>> Bruce
>>
>
> There was, but I removed it. Do you need th
On Wed, 2013-12-18 at 03:54 +0100, Benoît Minisini wrote:
> Le 18/12/2013 03:35, Bruce a écrit :
> > Wasn't there a context menu item somewhere in the IDE that told you
> > (amongst other things) how many source code lines were in the project?
> >
> > ?
> > Bruce
> >
>
> There was, but I removed i
Le 16/12/2013 13:27, Pino Zollo a écrit :
> My project does not use cairo component...but I get in the console the
> message:
>
> gbx3: /build/buildd/cairo-1.10.2/src/cairo-surface.c:385:
> _cairo_surface_begin_modification: La declaración `! surface->finished'
> no se cumple.
>
> no se cumple...me
Le 17/12/2013 12:41, nero a écrit :
> Hi all , I'm using a to get some data from a postgresql
> database , everything's work fine but I've some problema setting
> column width.
>
> When I double click between two columns they get the right width , is
> there a way to do so by code ?
DataBrowser u
Le 18/12/2013 03:35, Bruce a écrit :
> Wasn't there a context menu item somewhere in the IDE that told you
> (amongst other things) how many source code lines were in the project?
>
> ?
> Bruce
>
There was, but I removed it. Do you need that? What do you mean by
"amongst other things"?
--
Benoî
On Wed, 2013-12-18 at 13:03 +1030, Bruce wrote:
> Some idiotic code.
Forget it. I can see why it doesn't work.
Sorry about the noise.
Bruce
--
Rapidly troubleshoot problems before they affect your business. Most IT
Wasn't there a context menu item somewhere in the IDE that told you
(amongst other things) how many source code lines were in the project?
?
Bruce
--
Rapidly troubleshoot problems before they affect your business. Most I
I have done this so many times before but today I just cant get it to
work.
We have a code generator that updates the source code for a library
project. As well as that it updates an SQLite database file in the
project. This database gets stored inside the library executable.
Fundamentally every
"snd_pcm_t" is synonymous for "struct _snd_pcm" (typedef struct _snd_pcm
snd_pcm_t;).
And struct _snd_pcm is declared as... see from line 183.
http://fossies.org/dox/alsa-lib-1.0.27.2/pcm__local_8h_source.html
Quite a task to implement in Gambas (not sure it's possible).
Jussi
On Wed, Dec 18
Also 14 is wrong, according to documentation, correct values are between -1
to 1.
Jussi
On Wed, Dec 18, 2013 at 1:20 AM, Ru Vuott wrote:
> I suppose it's a kind of signal, meaning
>
> ..you can see snd_pcm_writei() gives to ALSA handle a buffer variable full
> of Float values.
>
> vuott
>
Also this was wrongly declared (correct below):
' snd_pcm_sframes_t snd_pcm_writei(snd_pcm_t *pcm, const void *buffer,
snd_pcm_uframes_t size)
Private Extern snd_pcm_writei(pcm As Pointer, buffF As Pointer, sizeI As
Integer) As Integer
Perhaps the biggest problem is that you give null pointer, no
I suppose it's a kind of signal, meaning
..you can see snd_pcm_writei() gives to ALSA handle a buffer variable full of
Float values.
vuott
Mer 18/12/13, Jussi Lahtinen ha scritto:
Oggetto: Re: [Gambas-user] Generating a sine wave with ALSA
No, as the name suggest it's float, not integer.
Jussi
On Wed, Dec 18, 2013 at 12:03 AM, Ru Vuott wrote:
> Uh... it would seem to be correct.
> In fact, if I insert this line in the code C:
>
>printf("SND_PCM_FORMAT_FLOAT value = %d", SND_PCM_FORMAT_FLOAT);
>
> and then I run that com
The C code is in Data folder of Gambas project.
Anyway, I've attached it to this email.
Bye
vuo
Mar 17/12/13, Jussi Lahtinen ha scritto:
Oggetto: Re: [Gambas-user] Generating a sine wave with ALSA
A: "mailing list for gambas users"
Dat
Uh... it would seem to be correct.
In fact, if I insert this line in the code C:
printf("SND_PCM_FORMAT_FLOAT value = %d", SND_PCM_FORMAT_FLOAT);
and then I run that compilated C code, I obtain in terminal this results:
SND_PCM_FORMAT_FLOAT value = 14
In addition, you can easily
At least this isn't right:
Private Const SND_PCM_FORMAT_FLOAT As Integer = 14
I'll look more closely later.
Jussi
On Tue, Dec 17, 2013 at 11:31 PM, Ru Vuott wrote:
> The C code is in Data folder of Gambas project.
>
> Anyway, I've attached it to this email.
>
> Bye
> vuo
>
>
>
> -
Oh, apparently I didn't read it through...
Jussi
On Tue, Dec 17, 2013 at 11:26 PM, Jussi Lahtinen
wrote:
> Where is the C source? Without it I can't say whether you have translated
> it correctly or not.
>
> Jussi
>
>
> On Tue, Dec 17, 2013 at 6:38 PM, Ru Vuott wrote:
>
>> Hello,
>>
>> in my e
Where is the C source? Without it I can't say whether you have translated
it correctly or not.
Jussi
On Tue, Dec 17, 2013 at 6:38 PM, Ru Vuott wrote:
> Hello,
>
> in my eternal struggle with ALSA :-) I was trying to convert in gambas
> a C code, written to generate a sine wave with ALSA fun
Hello,
in my eternal struggle with ALSA :-) I was trying to convert in gambas a C
code, written to generate a sine wave with ALSA functions.
When I run the application, I can hear the sound of the wave, but it is mixed
with a background hiss.
I would like to have your opinion and check if I
That's good news (for Sudeep) Jussi!
I never bothered to google StretchBlt (the Blt part made it sound more
complicated than it really is).
tsk tsk ;-)
Kind regards,
Caveat
On 17/12/13 14:15, Jussi Lahtinen wrote:
> I think you can have same functionality with Draw.Picture().
> http://gambasd
I think you can have same functionality with Draw.Picture().
http://gambasdoc.org/help/comp/gb.qt4/draw/picture?v3
Jussi
On Tue, Dec 17, 2013 at 8:03 AM, //SCLPL/ Sudeep Damodar <
sudee...@scantechlaser.com> wrote:
> HI All,
> Thank for your valuable comments .i have one doubt i have to declar
Status: New
Owner:
Labels: Version-3.1.0 Type-Enhancement Priority-Low OpSys-Linux Dist-Ubuntu
Arch-X86 Desktop-Gnome GUI-QT4
New issue 481 by arif_rah...@ymail.com: Different picture for closed and
opened TreeView item
http://code.google.com/p/gambas/issues/detail?id=481
TreeView item m
Hi all ,
I'm using a to get some data from a postgresql database ,
everything's work fine but I've some problema setting column width.
When I double click between two columns they get the right width , is there a
way to do so by code ?
Also can I set test allignment of the cells ? I see some
Sounds like you have some more reading to do.
Start here: http://www.lmgtfy.com/?q=gdi32+linux
Come back to us when you have already done a little research and have
SPECIFIC questions...
Your approach to this conversion project puts me in mind of someone
translating Russian to Italian word for
26 matches
Mail list logo