On 08/21/2015 12:00 AM, Kevin Fishburne wrote:
> On Wed, Aug 19, 2015 at 9:22 AM, Kevin Fishburne <
> kevinfishbu...@eightvirtues.com> wrote:
>
>> I need to know how to declare, initialize and add elements to a
>> two-dimensional dynamic array. Using trial-and-error for every possible
>> syntax has
Thanks,
you are right , it works now.
Regards,
Ivan
-Ursprüngliche Nachricht-
Von: Benoît Minisini [mailto:gam...@users.sourceforge.net]
Gesendet: Donnerstag, 20. August 2015 15:33
An: mailing list for gambas users
Betreff: Re: [Gambas-user] SQLite problem, data has not been read
>>
Okay Benoît, you can take me off your list of people to kill now that
I've finally gotten around to implementing OpenAL. :)
The documentation online is pretty spartan, with much of it being
outdated, but I still managed to set things up reasonably well to play a
sine wave at a specified frequen
On Wed, Aug 19, 2015 at 9:22 AM, Kevin Fishburne <
kevinfishbu...@eightvirtues.com> wrote:
> I need to know how to declare, initialize and add elements to a
> two-dimensional dynamic array. Using trial-and-error for every possible
> syntax hasn't been too helpful so far. I'd post my code but it's
Le 21/08/2015 02:01, Benoît Minisini a écrit :
> Le 21/08/2015 00:58, martin p cristia a écrit :
>> 'thi is the actual (just what's important) code
>>
>> Public MatRigEst As New Float[]
>>
>> Function calcular() As Integer
>>
>>
>> Dim longo As Long, longo2 As Long
>>
>> ' longo = 1800
Le 21/08/2015 00:58, martin p cristia a écrit :
> 'thi is the actual (just what's important) code
>
> Public MatRigEst As New Float[]
>
> Function calcular() As Integer
>
>
> Dim longo As Long, longo2 As Long
>
> ' longo = 18000 * 6 * 64000 ' = -1677934592 !!!
>
> 'correct value
Comment #1 on issue 634 by jussi.la...@gmail.com: can't use the tray icon
https://code.google.com/p/gambas/issues/detail?id=634
This is not bug. Next time please ask help from the mailing list.
Use gb.gui.trayicon component, it is created to help compatibility issues
with different desktops.
-
This is not bug. Next time please ask help from the mailing list.
Use gb.gui.trayicon component, it is created to help compatibility issues
with different desktops.
Jussi
On Fri, Aug 21, 2015 at 1:38 AM, wrote:
> Status: New
> Owner:
> Labels: Version-3.8.0 Type-Bug Priority-Medium OpSys-
'thi is the actual (just what's important) code
Public MatRigEst As New Float[]
Function calcular() As Integer
Dim longo As Long, longo2 As Long
' longo = 18000 * 6 * 64000 ' = -1677934592 !!!
'correct value
longo = CLong(18000) * 6 * 64000 ' = 691200
MatRigEs
Status: New
Owner:
Labels: Version-3.8.0 Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any
Desktop-Any GUI-Any
New issue 634 by author.i...@gmail.com: can't use the tray icon
https://code.google.com/p/gambas/issues/detail?id=634
Hi
I do not know why I can't use the tray icon, where is
Comment #1 on issue 633 by justlost...@gmail.com: Opening page Mouse does
not work in IDE
https://code.google.com/p/gambas/issues/detail?id=633
Update after more testing, debuging IDE
The form FWelcome, never receives direct mouse events, Nor does the
CCoolButtons on the panButton scroll pan
Salut Benoît,
I remarked that problem also since Gambas r7227,
it still persists in r7230
Got back to r7226
new version with Sys-infos
--
Amicalement
Charlie
[System]
Gambas=3.8.0
OperatingSystem=Linux
Kernel=3.2.0-89-generic
Architecture=x86
Distribution=Ubuntu 12.04.5 LTS
Desktop=GNOME
Theme
Salut Benoît,
I remarked that problem also since Gambas r7227,
it still persists in r7230
Got back to r7226
--
Amicalement
Charlie
--
___
Gambas-user mailing list
Gambas-use
Comment #4 on issue 603 by justlost...@gmail.com: Logging class will not
load in project
https://code.google.com/p/gambas/issues/detail?id=603
Closed. Was fixed
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust yo
Status: New
Owner:
Labels: Version-TRUNK Type-Bug Priority-Medium OpSys-Any Dist-OpenSUSE
Arch-X86-64 Desktop-KDE Usability
New issue 633 by justlost...@gmail.com: Opening page Mouse does not work in
IDE
https://code.google.com/p/gambas/issues/detail?id=633
When I first start the IDE,
On Thu, 20 Aug 2015, martin p cristia wrote:
> Hi:
>
> I need a huge array of Floats, use:
>
> longNumber = 4 ' 400M * 8bytes = 3.2GB
>
> Resize fArray[longNumber] ' this gives no error !!!
>
>
> fArray[1] = 1000 ' this gives Out of Bounds
>
> workaround?
>
How does the code real
Hi:
I need a huge array of Floats, use:
longNumber = 4 ' 400M * 8bytes = 3.2GB
Resize fArray[longNumber] ' this gives no error !!!
fArray[1] = 1000 ' this gives Out of Bounds
workaround?
--
Saludos
Ing. Martin P Cristia
-
Thanks, I'll try tomorrow.
Regards,
Ivan
-Ursprüngliche Nachricht-
Von: Benoît Minisini [mailto:gam...@users.sourceforge.net]
Gesendet: Donnerstag, 20. August 2015 15:33
An: mailing list for gambas users
Betreff: Re: [Gambas-user] SQLite problem, data has not been read
>> What's wrong
>> What's wrong exactly?
>>
>
> Ha ok, I see.
>
The main reason is that you use "STRING" as SQL datatype, which is an
unknown SQL datatype.
The bug is that the new SQLite driver does not react intelligently. This
will be fixed in the next release, but do use standard SQL datatypes if
you don't
Le 20/08/2015 15:23, Benoît Minisini a écrit :
> Le 20/08/2015 14:38, Ivan Kern a écrit :
>>
>>
>> Hi,
>>
>>
>>
>>
>>
>> Data read from SQLite database is not possible.
>> Result delivers everything possible but not correct data.
>> Is it a bug?
>>
>> I use Gambas3.8 stable.
>>
>> With earlier vers
Le 20/08/2015 14:38, Ivan Kern a écrit :
>
>
> Hi,
>
>
>
>
>
> Data read from SQLite database is not possible.
> Result delivers everything possible but not correct data.
> Is it a bug?
>
> I use Gambas3.8 stable.
>
> With earlier versions of Gambas I have no problems.
>
> This does not work on Ubu
Hi,
Data read from SQLite database is not possible.
Result delivers everything possible but not correct data.
Is it a bug?
I use Gambas3.8 stable.
With earlier versions of Gambas I have no problems.
This does not work on Ubuntu14.04 LTS and on Xubuntu14.04 LTS as well.
Project exam
Sure, this is just what I did. But according to the address line above,
the help viewer still expects the texts coming from the internet.
Any other idea?
Am 19.08.2015 19:16, schrieb Charlie:
> Go to *Tools > Preferences > Help & Applications* and switch on *Use offline
> help*
>
>
>
> --
> View
I posted an example (array of arrays) that contains at least this error:
In routine: Public Sub Button3_Click()
The line: If iR = -1 Then iR = $iContoRighe, should be replaced with: If iR
= 0 Then iR = $iContoRighe
I apologize (I am on vacation :))
Greetings
Gianluigi
2015-08-19 10:22 GMT+02:00
24 matches
Mail list logo