[Gambas-user] Ever crashing Gambas 3.7.1

2015-06-21 Thread M. Cs.
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 -

[Gambas-user] Window's close button and exiting

2015-06-20 Thread M. Cs.
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? -- ___

[Gambas-user] GridLayout like component needed

2015-01-17 Thread M. Cs.
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

Re: [Gambas-user] Gambas Future or what kind of Gambas we want.

2013-11-01 Thread M. Cs.
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

Re: [Gambas-user] A simple server question

2013-09-27 Thread M. Cs.
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

[Gambas-user] A simple server question

2013-09-27 Thread M. Cs.
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

Re: [Gambas-user] Language

2013-05-05 Thread M. Cs.
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??? > > > > -- > -

Re: [Gambas-user] MySQL language problems

2013-02-26 Thread M. Cs.
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

Re: [Gambas-user] Dir() function is not reliable

2013-02-11 Thread M. Cs.
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

Re: [Gambas-user] Dir() function is not reliable

2013-02-10 Thread M. Cs.
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

Re: [Gambas-user] Need Gambas3 Made Apps.

2013-02-05 Thread M. Cs.
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

Re: [Gambas-user] Shell command including string containing a quote

2013-01-24 Thread M. Cs.
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

Re: [Gambas-user] Len function not correct?

2012-12-31 Thread M. Cs.
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

[Gambas-user] Possible error with ComboBoxes

2012-12-29 Thread M. Cs.
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

[Gambas-user] Testing a command-line application

2012-12-27 Thread M. Cs.
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

[Gambas-user] Writing applications with both GUI and command-line

2012-12-27 Thread M. Cs.
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

Re: [Gambas-user] Lost launchers

2012-12-19 Thread M. Cs.
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

Re: [Gambas-user] Lost launchers

2012-12-19 Thread M. Cs.
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

[Gambas-user] How to use Stat().Perm

2012-12-19 Thread M. Cs.
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

Re: [Gambas-user] Another possible bug with GridView

2012-12-18 Thread M. Cs.
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

Re: [Gambas-user] Another possible bug with GridView

2012-12-18 Thread M. Cs.
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

[Gambas-user] Another possible bug with GridView

2012-12-18 Thread M. Cs.
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

Re: [Gambas-user] Feature request: Component hunt disabler

2012-12-18 Thread M. Cs.
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

[Gambas-user] Setting all RadioButton's values to false

2012-12-17 Thread M. Cs.
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.

Re: [Gambas-user] Feature request: Component hunt disabler

2012-12-17 Thread M. Cs.
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

[Gambas-user] Feature request: Component hunt disabler

2012-12-16 Thread M. Cs.
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

[Gambas-user] Expander cannot be disabled.

2012-12-16 Thread M. Cs.
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

[Gambas-user] Expander conditional Show

2012-12-16 Thread M. Cs.
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

[Gambas-user] Installing KDE on Cinnamon

2012-12-01 Thread M. Cs.
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 ---

[Gambas-user] Stretchable GridView

2012-11-30 Thread M. Cs.
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

[Gambas-user] How to invoke warnings in Gambas3 IDE?

2012-11-30 Thread M. Cs.
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

Re: [Gambas-user] Feature request

2012-11-26 Thread M. Cs.
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

Re: [Gambas-user] Feature request

2012-11-26 Thread M. Cs.
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, > &

[Gambas-user] Feature request

2012-11-25 Thread M. Cs.
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

Re: [Gambas-user] Fastest way to select/unselect all

2012-11-17 Thread M. Cs.
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

[Gambas-user] Fastest way to select/unselect all

2012-11-17 Thread M. Cs.
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 ---

Re: [Gambas-user] Gambas 3 IDE doesn't come up

2012-11-14 Thread M. Cs.
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'

Re: [Gambas-user] Fedora and mp3

2012-11-09 Thread M. Cs.
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. > > >

[Gambas-user] Fedora and mp3

2012-11-09 Thread 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 -

[Gambas-user] LXDE

2012-10-20 Thread M. Cs.
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 -

Re: [Gambas-user] Frame Borders not displaying correctly

2012-09-05 Thread M. Cs.
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 > > -

Re: [Gambas-user] Frame Borders not displaying correctly

2012-09-05 Thread M. Cs.
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 > > > > &

Re: [Gambas-user] Scrollbars

2012-09-05 Thread M. Cs.
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

Re: [Gambas-user] Frame Borders not displaying correctly

2012-09-05 Thread M. Cs.
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. >

Re: [Gambas-user] Who use gb.report ? (to all gambas users)

2012-08-31 Thread M. Cs.
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

Re: [Gambas-user] New feature in the IDE code editor

2012-08-14 Thread M. Cs.
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

Re: [Gambas-user] Adding values to fields in SQLite table??

2012-08-07 Thread M. Cs.
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

[Gambas-user] Why does gridView_Data() trigger gridView_Select() ?

2012-07-29 Thread M. Cs.
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

Re: [Gambas-user] Shell not working properly in G 3.2

2012-07-13 Thread M. Cs.
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

[Gambas-user] Shell not working properly in G 3.2

2012-07-13 Thread M. Cs.
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

Re: [Gambas-user] Silly behavior on Mageia 2

2012-06-01 Thread M. Cs.
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

[Gambas-user] Silly behavior on Mageia 2

2012-06-01 Thread M. Cs.
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

Re: [Gambas-user] KDE Plasma Launcher

2012-05-23 Thread M. Cs.
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

Re: [Gambas-user] Weird bug in Gambas 3.1.1 IDE

2012-05-02 Thread M. Cs.
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

Re: [Gambas-user] Weird bug in Gambas 3.1.1 IDE

2012-05-02 Thread M. Cs.
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

Re: [Gambas-user] Gambas & GStreamer

2012-04-30 Thread M. Cs.
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

Re: [Gambas-user] Weird bug in Gambas 3.1.1 IDE

2012-04-27 Thread M. Cs.
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

Re: [Gambas-user] Weird bug in Gambas 3.1.1 IDE

2012-04-27 Thread M. Cs.
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

[Gambas-user] Weird bug in Gambas 3.1.1 IDE

2012-04-27 Thread M. Cs.
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?

Re: [Gambas-user] How to "Me.Close" with "Shell" or "Exec"?

2012-04-20 Thread M. Cs.
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

Re: [Gambas-user] [Feature Request] Offline Documentation

2012-04-17 Thread M. Cs.
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, >>>>

Re: [Gambas-user] Translation interface errors

2012-04-17 Thread M. Cs.
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

Re: [Gambas-user] Translation interface errors

2012-04-17 Thread M. Cs.
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

Re: [Gambas-user] Translation interface errors

2012-04-17 Thread M. Cs.
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

Re: [Gambas-user] Translation interface errors

2012-04-17 Thread 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 is also being done with a Windows user person. So when I > have 30-40 ne

Re: [Gambas-user] Translation interface errors

2012-04-17 Thread M. Cs.
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

Re: [Gambas-user] [Feature Request] Offline Documentation

2012-04-17 Thread M. Cs.
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

[Gambas-user] Translation interface errors

2012-04-17 Thread M. Cs.
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

Re: [Gambas-user] How can I flush the image cache?

2012-04-16 Thread M. Cs.
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

Re: [Gambas-user] How can I flush the image cache?

2012-04-15 Thread M. Cs.
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.

[Gambas-user] How can I flush the image cache?

2012-04-15 Thread M. Cs.
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

[Gambas-user] Gambas 3.1 boogey

2012-04-10 Thread M. Cs.
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

[Gambas-user] Form with multiple charts

2012-04-08 Thread M. Cs.
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

Re: [Gambas-user] About Visual Studio Express

2012-03-30 Thread M. Cs.
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

[Gambas-user] Dockable frames

2012-03-13 Thread M. Cs.
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

[Gambas-user] Dockable frames

2012-03-13 Thread M. Cs.
-- 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

Re: [Gambas-user] Transformable GUI

2012-03-12 Thread M. Cs.
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

Re: [Gambas-user] Transformable GUI

2012-03-12 Thread M. Cs.
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! >> >>

[Gambas-user] Transformable GUI

2012-03-11 Thread M. Cs.
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

Re: [Gambas-user] Two modal forms at same time

2012-03-09 Thread M. Cs.
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

[Gambas-user] Two modal forms at same time

2012-03-09 Thread M. Cs.
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

[Gambas-user] Autotools not working - Gambas 3.0

2012-03-07 Thread M. Cs.
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

Re: [Gambas-user] mp3 do not play

2012-03-07 Thread M. Cs.
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

Re: [Gambas-user] Two short questions

2012-03-03 Thread M. Cs.
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

[Gambas-user] Two short questions

2012-03-03 Thread M. Cs.
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.

Re: [Gambas-user] Possible suggestion/question

2012-03-02 Thread M. Cs.
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 >

Re: [Gambas-user] How to compile the Gambas3 runtime

2012-02-24 Thread M. Cs.
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

Re: [Gambas-user] I need your help, please!

2012-02-24 Thread M. Cs.
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

[Gambas-user] I need your help, please!

2012-02-23 Thread M. Cs.
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

[Gambas-user] How to regain the used memory after clearing the array?

2012-02-21 Thread M. Cs.
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

Re: [Gambas-user] Memory problems with Gambas3

2012-02-19 Thread M. Cs.
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.

Re: [Gambas-user] Gambas future?

2012-02-19 Thread M. Cs.
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

Re: [Gambas-user] Gambas future?

2012-02-19 Thread M. Cs.
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

Re: [Gambas-user] Gambas future?

2012-02-19 Thread M. Cs.
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

Re: [Gambas-user] Questions

2012-02-18 Thread M. Cs.
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

[Gambas-user] Questions

2012-02-18 Thread M. Cs.
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

Re: [Gambas-user] Start a form minized

2012-02-08 Thread M. Cs.
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 > ---

Re: [Gambas-user] Start a form minized

2012-02-07 Thread M. Cs.
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

Re: [Gambas-user] How To INSERT INTO in MySQL?

2012-02-06 Thread M. Cs.
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

[Gambas-user] Creating button as class element with variable function

2012-02-04 Thread M. Cs.
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   2   3   >