Another bug:
gb.qt4: warning: calling the event loop during a keyboard event handler is
ignored
gbx3: warning: circular references detected:
It comes up for nearly any action, be it menu or keypress. The application
closes without error message.
Csaba
-
I didn't code in Gambas for a while. I found that when I close the
application using window's close button, the application closes, but gbr3
process remains. How could I quit this as well?
--
___
Hi! I would like to know whether SWT's GridLayout could be implemented in
Gambas. I see VPanel and HPanels but it seems to me that it isn't possible
to say how many rows/columns should be inside such a container, and it
makes them quite clumsy. E.g if I need 4 radioButtons in 2x2 layout and if
I wa
Why, at least if it would be possible to implement multi-threading...
2013/11/1 Kevin Fishburne
> On 11/01/2013 12:19 PM, PICCORO McKAY Lenz wrote:
> > well, theres some point that end in a double-edged sword
> >
> > there's sense to ported to BSD, maebo, firefox-os,but if we make
> > software
I have done any network programming, but that seems
> bit odd.
>
> Jussi
>
>
> On Fri, Sep 27, 2013 at 5:01 PM, M. Cs. wrote:
>
> > Hello, I am trying to write a Gambas frontend for a Java server. I have
> > written a short class for that purpose:
> >
> > S
Hello, I am trying to write a Gambas frontend for a Java server. I have
written a short class for that purpose:
Static App As SSocket
Public messenger As Socket
Public Sub _new()
messenger = New Socket As "socket"
messenger.Connect("localhost", )
End
Public Sub socket_Read()
Dim sCad As S
Bom dia!
You can do it only switching the system's language locale to a sort of
English, e.g. US.
Csaba
2013/5/5 Rodrigo Maia
> I am brazilian guy, people's i one question for you
>
> My gambas language is Portugueze Brazilian how switch for English
> American???
>
>
>
> --
> -
What kind of syntax are you using to communicate with the database? Give us
some example, please.
Csaba
2013/2/26 Jorge Carrión
> I have a serious problem with mysql server. I'm developing a proyect in
> gambas 3.4 on linuxmint 13 maya against a Mysql 5.0.96 server.
>
> All works fine but rando
Hi Benoit, I think I found the error:
I was using Dir(DirView1.Current, *"*.*"*, gb.File).Sort() instead of
Dir(DirView1.Current,* "*"*, gb.File).Sort().
Although I don't understand why "*.*" wasn't correct.
Csaba
--
Free
won't
found any files, although I know there are hundreds of files inside. Is
Dir() able to recognize files without proper extensions?
Csaba
2013/2/10 Benoît Minisini
> Le 10/02/2013 18:34, Benoît Minisini a écrit :
> > Le 10/02/2013 17:42, M. Cs. a écrit :
> >> Hi I a
Hi John,
I can offer you GamCat: http://sourceforge.net/projects/gamcat/
This is a versatile cataloging program written in Gambas3. It has a tons of
features.
I can offer you the Nevezz: http://sourceforge.net/projects/nevezz/
This is a lightweight batch file renamer written also in G3.
I have also
I guess you will need Chr$(39) as ASCII code for ', or if you need double
quote just use Chr$(34).
2013/1/24 John Rose
> I have written a GUI to execute a command which involves selecting
> filenames (e.g. sCombinedPath below) to be used in a Shell command (as part
> of a Process). It works OK
Use String.Len() instead if you plan to use non ASCII characters. The é is
theproblem for Len().
2012/12/31 Johny Provoost
> Why is Len("Andre") = 5, and Len("André") = 6?
> The same for words with ë, ú, ê ..
> Is there's a particular reason for that, or is it a bug?
>
> Working in Ubuntu 12
Public codepage As ComboBox
Public felulet As Form
...
Public Sub encoder_Click()
Dim closer As Button
Dim ext As Label
felulet = New Form
felulet.Width = 240
felulet.Height = 150
felulet.Border = False
ext = New Label(felulet)
ext.X = 20
ext.Y = 20
ext.Width = 220
ext.Height = 40
ext.Text = ("Sele
I need to know how could I test run my command-line application without
having installed it.
Thanks!
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Ke
I've written a new program, which uses GUI. How can I add options to run it
with command-line only mode if needed (with parameters)?
Thanks!
Csaba
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MV
Thanks!
2012/12/19 Benoît Minisini
> Le 19/12/2012 22:20, M. Cs. a écrit :
> > This is a small stand-alone phonebook.
> >
>
> You must fill the "Categories" in the packager wizard. This is what is
> used by some desktop to decide where the launcher shoul
This is a small stand-alone phonebook.
2012/12/19 Benoît Minisini
> Le 19/12/2012 22:03, M. Cs. a écrit :
> > Hello Benoit,
> > I have a long standing problem with Gambas-based program launchers. When
> I
> > create an installation's package, I am questioned where t
Hello,
I simply don't understand the new function:
How can I decide of a certain file whether it is writable or not?
How can I decide of a certain folder whether it is writable or not?
What are the proper return values?
Please do the documentation if you add some news to the project!
Thanks.
Csa
I've discovered that there cannot be mixed usage of bold and non-bold fonts
in the same column of a gridView at the same time. Is this correct? I mean
like:
text1
*text2*
*text3*
text4
Can this be enabled somehow?
Thanks!
Csaba
2012/12/18 M. Cs.
> Public Sub filer_Data(i As Integ
Public Sub filer_Data(i As Integer, j As Integer)
Dim szin As String
Select Case j
Case 0
filer.Data.Text = content[i]
Case 1
filer.Data.Text = preview[i]
If scheck.Value = True Then
szin = SecurityCheck(preview[i], i)
If szin = "green" Then filer.Data.Background = Color.Whi
If clr = "green" Then filer[i, 1].Background = Color.Green
If clr = "yellow" Then filer[i, 1].Background = Color.Yellow
If clr = "red" Then filer[i, 1].Background = Color.Red
This code clears the content of filer[i.1].Text instead of painting the
background into green, yellow or red. The fil
In fact I cannot catch the error, although it occurs randomly. I've tried
several times to create screenshots, but at that moment the error didn't
come up.
Csaba
2012/12/18 Benoît Minisini
> Le 18/12/2012 01:01, Adrien Prokopowicz a écrit :
> >
> > Hi Benoît,
> >
> > I have the same problem sin
Is there a possibility to set all the RadioButton's values to false?
E.G:
RadioButton1.Value = False
RadioButton2.Value = False
RadioButton3.Value = False
RadioButton4.Value = False
RadioButton5.Value = False
RadioButton6.Value = False
Will still leave the last clicked RadioButton's value True.
Why, I could not reproduce the error!
2012/12/16 Benoît Minisini
> Le 16/12/2012 19:36, M. Cs. a écrit :
> > Hello Benoit,
> > I would like to ask you to set a default behavior for the Gambas3 IDE:
> >
> > When I do some changes either in code editor in let say Publ
Hello Benoit,
I would like to ask you to set a default behavior for the Gambas3 IDE:
When I do some changes either in code editor in let say Public Sub MyAct(),
or in form designer on a component Combobox1 after hitting F5 and checking
the difference, the IDE drops me either to a random part of co
I think this may be a bug:
I have the Expander initially disabled by IDE, yet during runtime it
accepts mouse clicks.
Csaba
--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mob
Hello!
I am curious to know whether there are possibilities to make Expander's
expanding conditional.
There are defined event _Show(), which is happening between the mouse's
click and Expander's expand, and similarly the event _Hide().
But none of them offer possibility to intercept the opening/clo
Hi,
I've installed KDE on LinuxMint 14 64-bit Cinnamon, since the Cinnamon
desktop is quite buggy. The Gambas KDE applications are still looking
Gnomish. I don't know which are the missing KDE libraries, so I need your
help. Thanks!
Csaba
---
I have a GridView with constant number of rows.The rows are painted with
different colors than the GUI's background. How it is possible to set the
grid view to loose the white area on the bottom of the gridView? The Form
is resizeable and I would like to have gridView's area filled with the 9
rows
Hello!
I would like to cleanup the project from the unused variables. I see
Warnings in IDE sometimes, but I didn't find the way how to invoke this
function.
Csaba
--
Keep yourself connected to Go Parallel:
TUNE You got i
Exactly that. It is easier to use shorter files for translation. Thank you!
Csaba
2012/11/26 Benoît Minisini
> Le 26/11/2012 11:50, M. Cs. a écrit :
> > Hello Benoit!
> > It's easy: If I export the translation to a .po file, that will contain
> all
> > the strin
e translators. It already
happened that she worked on Windows so I got back translation with wrongly
encoded text, and I had to correct the characters manually. It is sometimes
a pain!
Csaba
2012/11/26 Benoît Minisini
> Le 25/11/2012 11:40, M. Cs. a écrit :
> > Hello Benoit,
> &
Hello Benoit,
this is a repeat of a former request:
Would you be so kind to add an option to the Translations's GUI to export
only the non-translated strings?
I have over 550 strings now in my application and it is quite difficult to
handle the translations, except if we could had a list of missing
know how IDE implements groups, but maybe it is something you could
> look if this wasn't what you wanted.
>
>
> Jussi
>
>
>
>
>
>
> On Sat, Nov 17, 2012 at 1:32 PM, M. Cs. wrote:
>
> > Private Sub AddItem(Ite As String)
> > Dim chB As Check
Private Sub AddItem(Ite As String)
Dim chB As CheckBox
chB = New CheckBox(scV) As "Nyomi"
chB.Text = Ite
chB.Tag = Ite
End
I have an array of checkboxes created with this procedure. I would like to
select / unselect all of them at once. How can I reach them?
Csaba
---
What is your platform (distro)? I am currently using it on both Kubuntu
12.04 and Fedora 17 - without issues.
Csaba
2012/11/13 Rolf-Werner Eilert
> When I type gambas3, the answer is
>
> ERROR: #27: Cannot load component 'gb.qt4':
> /usr/lib64/gambas3/gb.qt4.so: undefined symbol: GB
>
>
> What'
Thank you Fabian!
I've ported the musical part of my project from gb.sdl.sound to gb.media,
and for the first time ever, I can listen to mp3 songs on a RPM distro!
Csaba
2012/11/9 Fabien Bodard
> is it already done ... it's gb.media
>
>
> 2012/11/9 M. Cs.
>
> >
Hello!
Did someone manage to play mp3 with Fedora 17 through Gambas3?
I just don't know why, but there's no sounds at all, even if there are no
errors shown. Thanks!
Other question: is it possible to implement gstreamer instead of sdl and
sdl.sound?
Csaba
-
Funny, but a year ago I've asked the same all question, and I'm facing with
the same problem again:
I've just installed Lubuntu 12.10 and the installed gambas3 application's
icon won't shown up in the menu. I've tried different icon themes, but no
use. Why this issue with LXDE?
Csaba
-
Try to set the components to the gb.gtk rather than using gb.qt. It will
give you the old fashioned look. But beware! I'm not sure that gb.qt and
gb.gtk dependencies are 100% compatible! I found it better to use gb.qt
since it feels more stable.
Csaba
>
>
-
t; Is there a way to change this?
>
> On Wed, 2012-09-05 at 21:21 +0200, M. Cs. wrote:
> > This is the correct look of the frames when using KDE, and probably with
> > the GNOME too. It isn't error.
> >
> > Csaba
> >
> > 2012/8/29 rocko
> >
> > &
You can have a ScrollView component which is a container itself. You can
also have a ScrollBar which is shown unless you set the Visible property to
false. I have no problems maximizing the window: the ScrollBar is shown
properly.
Csaba
2012/9/5 rocko
> If I put a scrollbar on a form, then run
This is the correct look of the frames when using KDE, and probably with
the GNOME too. It isn't error.
Csaba
2012/8/29 rocko
> Using Gambas 3.2.1
>
> The frame container is not displaying correctly.
> The sides of the border are fading about midway and are
> completely absent at the bottom.
>
Hello Fabien!
I use it for printing tasks. I can cope with the settings, although they
aren't as natural for me. I think it would be great thing to have in the
help settings thoroughly explained for some typical tasks like: printing on
a specified paper size (chosen by user), and positioning with f
That will be great!
Csaba
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and
threat landscape has changed and how IT managers can respond. Discussions
will include endpo
I use to add fields like this:
$hConn.Begin
$hConn.Exec("INSERT INTO mytable VALUES(&1,&2,..&N)",var1,var2,...varN)
$hConn.Commit
And I use Begin and Commit only for the large amount of insertions.
Csaba
2012/8/7 rocko
> Having a bit of trouble with trying to get Ganbas to add a value to a
> fi
I have a combobox which changes the content of a gridview which is then
filled using the Data event. My problem is, if I select a row in the
gridview, and afterwards I change the gridview itself, the Select event is
triggered, but normally that means that nothing is selected, yet I am using
the sel
You may be right. In fact the mentioned process is executed after another
extracting process, which may be not finished before this starts.
Inserting a delay fixes the issue, yet it isn't as good.
Csaba
--
Live Security Vir
I have a BIG problem with the Shell command:
Shell "unzip -u " & Chr$(34) & User.Home & "/.GamCat/GamCat.zip" & Chr$(34)
& " -d " & Chr$(34) & User.Home & "/.GamCat/" & Chr$(34) Wait
Tells me the the following:
"unzip: cannot find zipfile directory in one of
/home/minthaka/.GamCat/GamCat.zip or
1. UTF-8 -> charset
2. hu_HU.UTF-8 -> language
2012/6/1, Benoît Minisini :
> Le 01/06/2012 10:03, M. Cs. a écrit :
>> Hi,
>> I'm testing my Gambas3 application on the new Mageia 2 release, and
>> I'm encountering weird things:
>> 1. There's no
Hi,
I'm testing my Gambas3 application on the new Mageia 2 release, and
I'm encountering weird things:
1. There's no mp3 playback with gb.sdl.sound component
2. The Exist() cannot find existing files.
I have no such errors on Kubuntu..
I was a big fan of Mandriva, so I wanted to give a try to its
It is as easy as drag and drop. You can add a container to your
desktop, and then drop the icons of the apps to it, or just use the
interface shipped with the widget.
Csaba
2012/5/23, Bill-Lancaster :
>
> I have a number of Gambas applications that I would like to add the Plasma
> Launcher.
> Doe
Yes I did it. Now it looks like OK, but I will test it for next few days.
Csaba
2012/5/2, Benoît Minisini :
> Le 02/05/2012 17:24, M. Cs. a écrit :
>> Well, after a stop I started to work with Gambas again, and I have
>> problems with all sorts of fonts: FreeMono, DejaVu San
quot;
Csaba
2012/4/28, Benoît Minisini :
> Le 28/04/2012 00:02, Benoît Minisini a écrit :
>> Le 27/04/2012 21:52, M. Cs. a écrit :
>>> Maybe it does. Although I marked this problem as solved after changing
>>> the font, the problem also persist with the new font selecti
Does this all means that sdl and sdl-sound components will be finally
replaced with a better backend?
2012/4/30, Fabien Bodard :
> 2012/4/30 Benoît Minisini
>
>> Le 30/04/2012 14:35, Fabien Bodard a écrit :
>> > is there a way to list media or codecs for source,demuxer, etc ?
>>
>> Apparently 'gs
s size and this solves the problem temporary.
Csaba
2012/4/27, l k :
> I have a feeling that this problem affects only Ubuntu. I changed the
> font in the editor to FreeMono, and helped. In Fedora 16 I did not
> have this problem.
>
> Regards,
> LeszekK
>
> moonsterbike.c
Thanks! Changing the font from Monospace to Ubuntu solved the thing.
Csaba
2012/4/27, Benoît Minisini :
> Le 27/04/2012 12:24, M. Cs. a écrit :
>> I've installed Precise KDE today and also Gambas3 3.1.1 from Kendek's
>> PPA.
>> The problem is, when I start to type
I've installed Precise KDE today and also Gambas3 3.1.1 from Kendek's PPA.
The problem is, when I start to type a code into IDE editor, there's a
dislocation of cursor. The cursor is actually 1 place to the right
instead of the right position. So It is difficult to use it.
Any ideas?
What about Quit instead Me.Close?
2012/4/20, abbat :
>
> It does not CLOSE.
> Just try F5
>
> If True then
> Exec ["ls"]
> Me.Close
> EndIf
>
> DOES NOT CLOSE (you have to push "stop" button), AND:
>
> If True then
> 'Exec ["ls"]
> Me.Close
> EndIf
>
> WORKS
>
>
>
>
> GMail-7
line, I would like it
>>> to
>>> be immediate.
>>>
>>> Jussi
>>>
>>>
>>>
>>> On Tue, Apr 17, 2012 at 20:35, M. Cs. wrote:
>>>
>>>> I agree with you. If would be nice to have a package gambas3-gb-help,
>>>>
Or at least tell me how can I obtain a .po file which will work as
expected. Let say I have a freeze of new features or strings in a
release: how will those #fuzzy -es disappear?
Csaba
2012/4/17, M. Cs. :
> I think the problem isn't with the standard itself, but rather with
> the
I think the problem isn't with the standard itself, but rather with
the GUI, which makes error during file import.
Csaba
2012/4/17, Benoît Minisini :
> Le 17/04/2012 21:00, Willy Raets a écrit :
>> On di, 2012-04-17 at 19:41 +0200, Benoît Minisini wrote:
>>> Le 17/04/201
Oops, it was Willy, not me :-)
2012/4/17, M. Cs. :
> excuse me for doubled post.
>
> 2012/4/17, M. Cs. :
>> It is sometimes hardly viable: I have a Russian translator who doesn't
>> use Linux at all, but likes my project and helps me. The German
>> translation i
excuse me for doubled post.
2012/4/17, M. Cs. :
> It is sometimes hardly viable: I have a Russian translator who doesn't
> use Linux at all, but likes my project and helps me. The German
> translation is also being done with a Windows user person. So when I
> have 30-40 ne
d take a look why does it
make such errors.
Csaba
2012/4/17, Benoît Minisini :
> Le 17/04/2012 17:13, M. Cs. a écrit :
>> Hi!
>> I'm spending quite a lot of time with repairing the translations for
>> my program. It is translated into several languages, and there is a
I agree with you. If would be nice to have a package gambas3-gb-help,
as an option.
Csaba
2012/4/17, sundar j :
> Is it possible to make online documentation to include in standard
> installation and make it available from help/F1. It would be nice if
> examples also included in the offline docum
Hi!
I'm spending quite a lot of time with repairing the translations for
my program. It is translated into several languages, and there is a
constant, annoying error:
- I use to export the translations into myapp-xx-ver.po
- the translating person translates the strings using a text editor
(Kate, G
There you are!
It requires Imagemagick to be installed.
There are possible downsides of the Picture.Load(mypicture):
- If the image mypicture is broken or 0 sized, the program will fail
to load, and crash.
- The 'convert' of Imagemagick sometimes creates broken thumbnails, so
I had to build in a si
OK. I solved it with using Picture.Load(myimage) instead of Picture[myimage].
Like in this example:
fView.Add(x, x, Picture.Load(myimage), 0).EnsureVisible
Is this the correct way?
Csaba
2012/4/15, M. Cs. :
> It happens that I change the pictures of a TreeView items during
> runtime.
It happens that I change the pictures of a TreeView items during
runtime. When I clear the TreeView and repopulate, the pictures
remains the same, although I did changed the source image used to be
display. After the restart of the program, the proper new picture is
shown.
Is there a way for update
I have a Gridview gV and the corresponding Data event handler:
Public Sub gv_Data(x As Integer, y As Integer) ' Fills the GridView
with the query results
Dim i As Integer
Dim szine As String
If ((x Mod 2) = 0) Then
szine = &E5E5E5&
Else
szine = &FF&
Endif
Select Case y
Case 0
gV.Data.Tex
Hi I managed to draw two pie-charts on a form, with two separate DrawingAreas.
My problem is that it I can do it only with single instance of
DIM mychart AS Chart
I can use it for two different drawings on two areas, but when I draw
a third one on a third drawing area I cannot change it's type.
It
As Mathias said: it is bloated.
IMHO, the ribbon menu was the worst thing MS did with Office. But as
an option it would be nice. Technically it is nothing more than a
ScrollView with horizontal scroll, with an array of VBoxes which have
a PictureBox and Label inside. You can already create such str
Im sorry the mail just went away! I would like to know whether it is
possible to move frames inside a VBox so that they change place like
this:
A
B
C
to
C
A
B
I would also like to displace a frame from one container into another
if possible. I know from experience, that this kind of manipulation
--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, mo
To be more accurate, I would like to implement something like you have
in Guayadeque music player for instance. You have different containers
and you can move them inside the IDE.
2012/3/12, M. Cs. :
> Thank you Tobias, but I would like this as a drag and drop thing.
> Let say I have a VBo
drop it to a VBox2 container?
Thanks!
2012/3/11, tobias :
> hi,
>
> On 11.03.2012 20:55, M. Cs. wrote:
>> Is it possible to change the layout during runtime? I mean if I have a
>> panel and I would like to move it to another place.
>>
>> Thanks!
>>
>>
Is it possible to change the layout during runtime? I mean if I have a
panel and I would like to move it to another place.
Thanks!
Csaba
--
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes
Sorry, it was my fault with aliases!
Csaba
2012/3/9, Jussi Lahtinen :
> Can you send project to demonstrate this?
>
> Jussi
>
>
>
> On Fri, Mar 9, 2012 at 15:31, M. Cs. wrote:
>
>> I have a class with two forms W1 and W2. Forms and corresponding
>> buttons
I have a class with two forms W1 and W2. Forms and corresponding
buttons are created in Main procedure of the class. The problem is
when I first do
W1.ShowModal, it does shows modal, and I have control over the buttons
of W1, but if I call W2.ShowModal with a button of W1, it shows up
modal, but I
Creating package for Autotools.
Making build directory.
Creating package...
aclocal
autoconf
automake -a
Useless use of /d modifier in transliteration operator at
/usr/share/automake-1.9/Automake/Wrap.pm line 60.
configure.ac: installing `./install-sh'
configure.ac: installing `./missing'
Makefile
The problem is in the SDL.sound library. I don't know whether this can
be solved in Gambas only. I have same issues, but not with all files.
In order to help Benoit, try to check the MP3 file's tags: bitrate,
etc. It may help discover the real problem.
2012/3/7, Алексей Беспалов :
> Hi!
>
> I try
Thank you Benoit!
gb.net.curl is great solution.
2012/3/3, Benoît Minisini :
> Le 03/03/2012 18:53, M. Cs. a écrit :
>> Hi I have two short questions:
>> 1. Is it a way to handle a curl request as process?
>> I use to call :
>> Shell "curl http://www.mysite.com&quo
Hi I have two short questions:
1. Is it a way to handle a curl request as process?
I use to call :
Shell "curl http://www.mysite.com"; to $myvar
This is a bit unsafe. If the net hangs, the program hangs too. Would I
be able to kill the process, if I created it as:
$hProcess=Exec["curl","http://www.
I red somewhere that GOTO is something that a good programer should
avoid at all costs.
GOTO is a host of countless bug possibilities.
2012/3/2, John Spikowski :
> On Fri, 2012-03-02 at 03:31 +0100, Benoît Minisini wrote:
>> Anyway, there is a syntax problem. In Basic, GOSUB is ended by a RETURN
>
Add this to your sources:
deb http://ppa.launchpad.net/nemh/gambas3/ubuntu oneiric main
It is Kendek's repository and works fully.
Csaba
2012/2/24, Matteo Pasotti :
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Il 24/02/2012 14:44, Peter Scholtz - Isenzo ha scritto:
>> Hi all,
>>
>> I'm
y not used memory to the system. I don't know what's wrong.
2012/2/24, Emil Lenngren :
> How large is your csv-file? If it is large then probably much time is spent
> when transfering the data from your hard drive into memory.
>
> /Emil
>
> 2012/2/23 M. Cs.
>
>> I
I have few simple questions:
what is happening practically with the memory when I open a file and
start to read it in into a local variable called myvar?
It would be logical for myvar to grow until it reads in the entire file.
My question is:
- does Gambas clear the memory allocations after the myv
Hello!
I have this problem with arrays. I have a class Keress given with this:
' Gambas class file
Export
' Gambas module file
Create Static
Private nev As New String[]
Private ut As New String[]
Private nagy As New Float[]
Private mikor As New String[]
Private kotet As New String[]
Public SConn A
I have similar issue:
I have a module and private subs in it. I'm using string arrays
declared inside that SUB. The SUB is invoked when I scan some
folders/files. The memory consumption rises during this scan by around
30 MB, which is quite normal, since I'm feeding memory with huge
amount of data.
About the crash: just take the example shipped with Gambas IDE and
play with different mp3 files, try to change the position of playing
song and there you are.
Csaba
2012/2/19, Benoît Minisini :
> Le 19/02/2012 16:50, M. Cs. a écrit :
>> Specially the supported file formats and the
layback of shifted octaves). And it
is also not possible by now to use a timeline for an mp3 song, if I
used a Slider I simply cannot move the sound position without having
program crashed.
Thanks!
Csaba
2012/2/19, Benoît Minisini :
> Le 19/02/2012 12:08, M. Cs. a écrit :
>> Please Benoi
Please Benoit, if you have some extra time, update the sdl and
sdl-sound libraries as well!
Csaba
2012/2/19, Benoît Minisini :
> Le 18/02/2012 19:40, Dr.Diesel a écrit :
>>
>> Benoît, please tease us with what the future will bring in 3.1, 3.5 or
>> even
>> 4.0?
>>
>> Thanks
>>
>>
>
> There will
Thanks!
2012/2/18, Andreas Fröhlke :
> 1. just set the text property of your form
>
> 2.
> DIM REStest as Result
>
> REStest = MyConn.Exec("SELECT sum(myrow) FROM MyTable;)
> FOR EACH REStest
> PRINT REStest["sum(myrow"]
> NEXT
>
>
&g
Hi, I have some questions:
1. Is it possible to set/change the text of panel button. I mean the
K3b's panel button(of minimized window) shows the process of writing
in %. Is this possible with Gambas?
2. How could I retrieve the result from the following query:
MyConn.Exec("SELECT sum(myrow) FROM M
Schmidt :
> Hi M. Cs.:
>
>> Try to add at the
>> Public Sub Form_Open()
>> Me.Minimized=True
>> .
>> End
>
> Because this didn't work, I asked.
>
> Any other ideas?
> Thanks
> Rolf
>
---
Try to add at the
Public Sub Form_Open()
Me.Minimized=True
.
End
2012/2/7, Rolf Schmidt :
> Hi everybody out there
>
> is it possible to start a form minimized or invisible.
> I use a TrayIcon to terminate the program and program should stay in the
> background and wait for incoming calls. Th
And I agree with Fabien
I just over with the transcription of former wrongly formatted query style ->
query="INSERT INTO."
MyConn.Exec(query)
Don't use that style! You will make only troubles with escaping characters.
The right way is MyConn.Exec("INSERT Into ...
VALUES(&1,&2...);",myvar1,m
Is it possible to create a button with dinamically changeable action?
I would like to have something like:
Public Sub AddGomb2(sz As Integer, m As Integer, x As Integer, y As
Integer, q As Container, szoveg As String, operation as String)
Dim gomb As Button
gomb = New Button(q) As "Gomb2"
gom
1 - 100 of 286 matches
Mail list logo