Re: [Gambas-user] R: Christmas gift

2016-09-08 Thread Ru Vuott
Thank you, Karl, but those files seem simply souce code, not a "manual". vuott Gio 8/9/16, Karl Reinl ha scritto: Oggetto: Re: [Gambas-user] R: Christmas gift A: "Ru Vuott" , "mailing list for gambas users" Data

[Gambas-user] R: Christmas gift

2016-09-07 Thread Ru Vuott
...I wish a thick manual/tutorial entitled: « Learning Gambas from its source codes. » or « Journey into the Gambas source codes. » Regards vuott Mer 7/9/16, Moviga Technologies ha scritto: Oggetto: [Gambas-user] Christmas gift A: "mailing

Re: [Gambas-user] [Gambas Bug Tracker] Bug #973: Desktop.RunAsRoot(): file or directory doesn't exist

2016-08-05 Thread Ru Vuott
Thanks you. I tried you suggestion, but I get same error message. :-( ..I'ld like to point out, strangely, if I use this other resource: Desktop.OpenTerminal() or Desktop.OpenTerminal("/usr/bin/gnome-terminal") I obtain this error message: " /bin/sh: 1: mate-terminal: not found " It

[Gambas-user] Bug on ImageStat( ).Height ?

2016-07-03 Thread Ru Vuott
Hello, using ImageStat().Height with .JPG type images, it returns "always" the value: 4360. Regards vuott -- Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San Francisco, CA to explore cutting-edge

Re: [Gambas-user] Clean new console by code

2016-06-24 Thread Ru Vuott
I suggest: Public Sub Form_Open() Print "testo qualsiasi" End Public Sub Button1_Click() ' We hide the Form to assign the focus to the console: Me.Hide End Public Sub Form_Hide() Wait 0.1 Desktop.SendKeys("{[Control_L]l}") Me.Raise End -

[Gambas-user] ERROR with rev. 7801

2016-06-19 Thread Ru Vuott
Hello, updating with rev. 7801, I obtain this error: gmenu.cpp: In member function 'void gMenu::update()': gmenu.cpp:290:27: warning: 'GtkWidget* gtk_image_menu_item_new()' is deprecated (declared at /usr/include/gtk-3.0/gtk/deprecated/gtkimagemenuitem.h:72): Use 'gtk_menu_item_new' instead [-

[Gambas-user] Feature that returns text shown in console.

2016-06-06 Thread Ru Vuott
Hello Benoît, in Gambas IDE the "Open contents..." button is able to capture text, shown in console, and to save it in a text file. I'ld like to ask if you can implement a new feature, as method or property (of Application ? or of System ?) that returns - as String - the text shown by console.

[Gambas-user] Colors and other Console amenities.

2016-05-22 Thread Ru Vuott
Hello, I tried to combine the text, to be printed in the console, the commands (terminfo capabilities useful for prompt customization) needed to get some effects in the Terminal. I pointed out some problems. For exemple: 1) I asked other developers to do the testing, but it seems that only th

[Gambas-user] ERROR with rev. 7767

2016-05-06 Thread Ru Vuott
Hello Benoît, during " ~/trunk $ make " I obtain this error: make[5]: uscita dalla directory "/home/vuott/trunk/main/lib/gui.trayicon" Making all in inotify make[5]: ingresso nella directory "/home/vuott/trunk/main/lib/inotify" CC gb_inotify_la-main.lo make[5]: *** Nessuna regola per ge

[Gambas-user] Unable to compile gambas3 with rev. 7752

2016-05-03 Thread Ru Vuott
Hello, at end of "make install" of rev. 7752 I obtain this message: Unable to compile gambas3 regards vuott -- Find and fix application performance issues faster with Applications Manager Applications Manager provides

[Gambas-user] "Cannot find EGLConfig, returning null config"

2016-04-29 Thread Ru Vuott
http://gambas.8142.n7.nabble.com/quot-Cannot-find-EGLConfig-returning-null-config-quot-td56094.html -- Find and fix application performance issues faster with Applications Manager Applications Manager provides deep perform

[Gambas-user] "Cannot find EGLConfig, returning null config"

2016-04-29 Thread Ru Vuott
Hello, a member of italian Gambas forum wrote that whenever he starts a program from the IDE in console appears this message: Cannot find EGLConfig, returning null config Unable to find an X11 visual which matches EGL config 0 Could not initialize OpenGL for RasterGLSurface, reverting to Raster

[Gambas-user] gb.media: segmentation fault 11

2016-04-11 Thread Ru Vuott
Hello, using MediaPlayer application, and more generally MediaPlayer Class of gb.media Component (same with gb.media.form - MediaView), I obtain a segmentation fault 11. Regards [System] Gambas=3.8.90 r7737 OperatingSystem=Linux Kernel=4.4.0-15-generic Architecture=x86_64 Distribution=Linux

[Gambas-user] R: Desktop.RunAsRoot

2016-03-26 Thread Ru Vuott
...and more, now oddly I get always this error: " File or directory does not exist ", whatever command written. Sab 26/3/16, herberth guzman ha scritto: Oggetto: [Gambas-user] Desktop.RunAsRoot A: "gambas-user" Data: Sabato 26 marzo 2016, 19:5

[Gambas-user] R: Label1.Foreground = Color("#FF0000"), How to?

2016-03-24 Thread Ru Vuott
If you want to use HTML tag, you have to use "TextLabel", no Label. Public Sub Form_Open() TextLabel1.Text = "Arma virumque cano" End Regards vuott Gio 24/3/16, abbat

[Gambas-user] R: Label1.Foreground = Color("#FF0000"), How to?

2016-03-24 Thread Ru Vuott
...but if you want to use "hexadecimal" value with Label: * Public Sub Form_Open() Label1.Foreground = &FF Label1.Text = "Arma virumque cano" End * Gio

[Gambas-user] R: Mediaview

2016-03-23 Thread Ru Vuott
> Is it possible with Mediaview to detect if the stop button is pressed I suggest .. * Public Sub Form_Open() Dim ob As Object ob = MediaView1.Children[0] ob = ob.Children[0] ob = ob.Children[2] Object.Attach(ob.Children[2], Me, "STOP")

[Gambas-user] R: Get html tags from RichText

2016-03-20 Thread Ru Vuott
I would use the Scan() function: Public Sub Form_Open() Dim s As String With TableView1 .Rows.Count = 3 .Columns.Count = 3 End With With TableView1[0, 0] .RichText = "abcde" s = Scan(.RichText, "*=*>*")[1] End With Print s End ---

Re: [Gambas-user] Object.SizeOf(array) = 40

2016-03-19 Thread Ru Vuott
; ...in CARRAY->void *data ? p2 = Pointer@(p1 + 32) Print "\nArray contains these values:" For i = 0 To bb.Max Print Byte@(p2 + i), Next End regards vuott -------- Dom 20/3/16, Benoît Minisini ha scritto: Oggetto: Re: [Gambas-use

[Gambas-user] Object.SizeOf(array) = 40

2016-03-19 Thread Ru Vuott
Hello.. * Public Sub Main() Dim bb As Byte[] = [1, 2, 3, 4] Print Object.SizeOf(bb) End * Object.SizeOf() method return 40 byte. Why ? What is the source structure 40 bytes long? Maybe "GB_ARRAY_

Re: [Gambas-user] (no subject)

2016-03-11 Thread Ru Vuott
uot; your code works. Regards Gianluigi 2016-03-11 22:01 GMT+01:00 Benoît Minisini : > Le 09/03/2016 11:46, Ru Vuott a écrit : > > Hello, > > > > "before", by using this simple code (gbdesktop and gb.desktop.x11): > > >

Re: [Gambas-user] MediaView1.URL cannot set status

2016-03-09 Thread Ru Vuott
Hello, I tried that url: it works for me with MediaView. regards vuott Mer 9/3/16, Benoît Minisini ha scritto: Oggetto: Re: [Gambas-user] MediaView1.URL cannot set status A: "mailing list for gambas users" Data: Mercoledì 9 marzo 2016, 22:14

[Gambas-user] (no subject)

2016-03-09 Thread Ru Vuott
Hello, "before", by using this simple code (gbdesktop and gb.desktop.x11): Public Sub Button1_Click() Dim df As DesktopFile Dim path As String percorso = "/path/of/the/file" For Each df In DesktopFile.FromMime(DesktopMime.FromFile(path).Type) Print df.Program

[Gambas-user] R: (+auto) Line breaks in Tableview.Cell

2016-03-06 Thread Ru Vuott
Are you telling about this ? Public Sub Form_Open() With TableView1 .Rows.Count = 3 .Columns.Count = 3 End With TableView1[0, 0].RichText = "Quid est, Catulle? quid moraris emori?" & "sella in curuli struma Nonius sedet," & "per consulatum peierat Vatinius:" & "quid est, Ca

Re: [Gambas-user] Different Foreground Color of a string in TableView.Cell

2016-03-05 Thread Ru Vuott
...I'ld suggest: Public Sub Form_Open() TableView1.Rows.Count = 2 TableView1.Columns.Count = 2 TableView1[0, 0].RichText = "Verbavolant" TableView1.Columns[0].Width = -1 End regards vuott Sab 5/3/16, Charlie ha scritto: Oggetto:

[Gambas-user] R: Textbox transparent

2016-02-25 Thread Ru Vuott
... absolutly transparent: Public Sub Form_Open() With TextBox1 .Border = Border.None .Background = Color.Transparent' id est: -16777216 End With End Gio 25/2/16, abbat81 ha scritto: Oggetto: [Gambas-user] Textbox transparen

[Gambas-user] R: Textbox transparent

2016-02-25 Thread Ru Vuott
i would suggest: Public Sub Form_Open() TextBox1.Background = -16777216 End Gio 25/2/16, abbat81 ha scritto: Oggetto: [Gambas-user] Textbox transparent A: gambas-user@lists.sourceforge.net Data: Giovedì 25 febbraio 2016, 08:52 Is th

Re: [Gambas-user] #ASK Gambas Tutorial

2016-01-12 Thread Ru Vuott
...and do not forget to follow also the Gambas forums: http://www.gambas-club.de/ http://www.gambas-es.org/forum.php http://www.gambasforge.org/ http://www.gambas-it.org/smf/ Mar 12/1/16, Jussi Lahtinen ha scritto: Oggetto: Re: [Gambas-user] #AS

[Gambas-user] R: Happy New Year

2016-01-02 Thread Ru Vuott
Thank you, happy new year. Grazie, buon anno ! vuott Ven 1/1/16, Fabien Bodard ha scritto: Oggetto: [Gambas-user] Happy New Year A: gambas-user@lists.sourceforge.net Data: Venerdì 1 gennaio 2016, 16:12 i wish to all Gambas Users a happy new

Re: [Gambas-user] non printable char "Ⱶ" how to remove from string!!!!!

2015-12-29 Thread Ru Vuott
Tchao Fabien, > Ru ..  Characters > to 127 are printable... uhmmm... excuse me, but I do not understand. If I test the "printability" :-) of "characters > to 127" by using C "isprint()" function (that checks whether the passed character is printable), I obtain only zero results. Where: "ispr

Re: [Gambas-user] non printable char "Ⱶ" how to remove from string!!!!!

2015-12-28 Thread Ru Vuott
> and Ru Vuott  thanks for suggestion i'll try later If the string has 2 or more no-printable characters, you have to modify my code, so: Public Sub Main() Dim s As String = "ab" & Chr(180) & "cd ef" & Chr(185) & "g" & Chr(195)

Re: [Gambas-user] non printable char "Ⱶ" how to remove from string!!!!!

2015-12-23 Thread Ru Vuott
opsss.. only a little adjustment: ** Public Sub Main() Dim s As String = "abcd efg" & Chr(195) & "hil mnop" Dim bb As Byte[] Dim b As Byte Print s bb = Byte[].FromString(s) For b = 0 To bb.Max If No

Re: [Gambas-user] non printable char "Ⱶ" how to remove from string!!!!!

2015-12-23 Thread Ru Vuott
If the problematic character is > 127, you could use IsAscii() function: Public Sub Main() Dim s As String = "abcd efg" & Chr(195) & "hil mnop" Dim bb As Byte[] Dim b As Byte Dim i As Integer Print s With bb = Byte[].FromString(s) i = .Count End With While

[Gambas-user] R: Fitting RichtText into several limited areas

2015-12-04 Thread Ru Vuott
Hello, ...could .Font.RichTextWidth() function help you ? vuott Ven 4/12/15, Rolf-Werner Eilert ha scritto: Oggetto: [Gambas-user] Fitting RichtText into several limited areas A: "mailing list for gambas users" Data: Venerdì 4 dicembre 2015, 1

[Gambas-user] R: GridView and RichText

2015-11-27 Thread Ru Vuott
I suggest..exemplum: Private s As New String[3, 3] Public Sub Form_Open() With GridView1 .Rows.Count = 3 .Columns.Count = 3 End With s[1, 0] = "Blue" s[1, 1] = "bold" s[1, 2] = "italic" End Public Sub GridView1_Data(Row As Integer, Column As Integer) If (Row =

Re: [Gambas-user] Navigation in TableView with keyboard 'Enter'

2015-11-17 Thread Ru Vuott
maybe do you want approximately... Private m As Short Public Sub TableView1_KeyPress() If Key.Enter Then TableView1.MoveTo(m, 0) TableView1.Edit Inc m m = m Mod TableView1.Rows.Count Endif End Lun 16/11/15,

Re: [Gambas-user] gb.desktop Desktop.ActiveWindow

2015-10-22 Thread Ru Vuott
Hello, maybe Gianluigi is right: * Private id As Integer Public Sub Button1_Click() Dim dw As New DesktopWatcher As "Watcher" id = Desktop.Windows[Desktop.Windows.Count - 3].Id ' " -3" if we run a Gambas pr

[Gambas-user] R: GridView1_Menu() works twice.

2015-10-16 Thread Ru Vuott
Excuse me, text of my post is not "twice", but " three times ". vuott -------- Ven 16/10/15, Ru Vuott ha scritto: Oggetto: [Gambas-user] GridView1_Menu() works twice. A: gambas-user@lists.sourceforge.net Data: Venerdì 16 ottobre

[Gambas-user] GridView1_Menu() works twice.

2015-10-16 Thread Ru Vuott
Hello, I do not understand why from this simple routine: Public Sub GridView1_Menu() Print "a" End I obtain 3 "a" letters in console: a a a Regards vuott My system: [System] Gambas=3.8.90 r7413 OperatingSystem=Linux Kernel=3.13.0-24-generic Architecture=x86_64 Distribution=Linux Mint

[Gambas-user] R: How Capture the console exit?

2015-09-30 Thread Ru Vuott
...you could use " xterm -l " command. bye vuott Mer 30/9/15, Jorge Carrión ha scritto: Oggetto: [Gambas-user] How Capture the console exit? A: "mailing list for gambas users" Data: Mercoledì 30 settembre 2015, 22:34 I'm doing a ftp client

Re: [Gambas-user] Giant icons .gambas with rev. #7338 !

2015-09-25 Thread Ru Vuott
A: "mailing list for gambas users" Data: Venerdì 25 settembre 2015, 21:24 Le 25/09/2015 20:57, Ru Vuott a écrit : > No... it isn't fixed... > > I removed the old icons from "/usr/bin/" path  by using: > > ~ $ sudo rm /usr/bin/gb* > ~ $ sudo rm

Re: [Gambas-user] Giant icons .gambas with rev. #7338 !

2015-09-25 Thread Ru Vuott
Ven 25/9/15, Benoît Minisini ha scritto: Oggetto: Re: [Gambas-user] Giant icons .gambas with rev. #7338 ! A: "mailing list for gambas users" Data: Venerdì 25 settembre 2015, 20:42 Le 25/09/2015 18:08, Benoît Minisini a écrit : > Le 25/09/2015 17:30, Ru Vuo

[Gambas-user] Giant icons .gambas with rev. #7338 !

2015-09-25 Thread Ru Vuott
Hello, gambas icons have become giants with rev. #7338 ! I attached an image file. Regards vuott [System] Gambas=3.8.90 r7338 OperatingSystem=Linux Kernel=3.13.0-24-generic Architecture=x86_64 Distribution=Linux Mint 17.1 Rebecca Desktop=GNOME Theme=Cleanlooks Language=it_IT.UTF-8 Memory=39

Re: [Gambas-user] The interview on FLOSS

2015-09-19 Thread Ru Vuott
lish'... of course it comes from Greek, but it's a word appearing in most English dictionaries... so?  Should we exclude anorexia as an English word because it also comes from Greek, or manxome because it was made up by Lewis Carroll... ? :-) On 19/09/15 15:21, Ru Vuott wrot

Re: [Gambas-user] The interview on FLOSS

2015-09-19 Thread Ru Vuott
> "autodidact" *is* an English word, ..that doesn't come from english -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists

Re: [Gambas-user] Problem with revision #7305

2015-09-13 Thread Ru Vuott
> Now I'm re-installing all Gambas sources... hoping. No. The problem persists. So, I have had to use Fabien's "picture.class" file again..at least I can code. regards vuott -------- Dom 13/9/15, Ru Vuott ha scritto: Og

Re: [Gambas-user] Problem with revision #7305

2015-09-13 Thread Ru Vuott
I tried with new rev. #7306, but nothing has changed. Then I tried restoring rev. #7304, strangely the problem remained. () Now I'm re-installing all Gambas sources... hoping. Dom 13/9/15, Benoît Minisini ha scritto: Oggetto: Re: [Gambas-use

Re: [Gambas-user] R: PROBLEM with rev. 7305 !!!

2015-09-13 Thread Ru Vuott
: Domenica 13 settembre 2015, 19:40 Le 13 sept. 2015 16:44, "Ru Vuott" a écrit : > > >  ANd have you recompiled... > > > Ops... I forget it. > > Well, now I recompiled all thing. > > It works, but there are 2 problems: > > - like a doubl

Re: [Gambas-user] R: PROBLEM with rev. 7305 !!!

2015-09-13 Thread Ru Vuott
> ANd have you recompiled... Ops... I forget it. Well, now I recompiled all thing. It works, but there are 2 problems: - like a double menu (look at file image attached here); - the icons are still missing in "New project" window. Dom 13/9/15,

Re: [Gambas-user] R: PROBLEM with rev. 7305 !!!

2015-09-13 Thread Ru Vuott
Hello Fabien, ...I was "courageous"... ;-) and I replaced the file, but it doesn't work. The problem persists. vuott Dom 13/9/15, Fabien Bodard ha scritto: Oggetto: Re: [Gambas-user] R: PROBLEM with rev. 7305 !!! A: "mailing list for gambas use

[Gambas-user] R: PROBLEM with rev. 7305 !!!

2015-09-13 Thread Ru Vuott
...and, if i try to create a new project, I get the same error. Also, take a look at this attached screenshot... Dom 13/9/15, Ru Vuott ha scritto: Oggetto: [Gambas-user] PROBLEM with rev. 7305 !!! A: gambas-user@lists.sourceforge.net

[Gambas-user] PROBLEM with rev. 7305 !!!

2015-09-13 Thread Ru Vuott
Hello, after updating Gambas with revision 7305, when I try to open a project, now I obtain this error attached here. Regards vuott-- ___ Gambas-user mailing list Gambas-user@l

[Gambas-user] R: Fwd: Re: MediaPlayer

2015-09-07 Thread Ru Vuott
Hello Shane, in " Public Sub Button1_Click() " routine you can try: Public Sub Button1_Click() If Not Dialog.OpenFile() hPlayer.URL = Media.URL(Dialog.Path) hPlayer.Play Endif Do Wait 0.01 Loop Until hPlayer.Position >= hPlayer.Duration hPlayer.Stop End regards vuo

Re: [Gambas-user] OpenAL (gb.openal) example code and problem loading .wav files

2015-08-22 Thread Ru Vuott
I wrote this page: http://www.gambas-it.org/wiki/index.php?title=La_gestione_mediante_il_componente_gb.openal Ven 21/8/15, Benoît Minisini ha scritto: Oggetto: Re: [Gambas-user] OpenAL (gb.openal) example code and problem loading .wav files A:

[Gambas-user] R: OpenAL (gb.openal) example code and problem loading .wav files

2015-08-21 Thread Ru Vuott
> the function to load a .wav file into an audio buffer in order to play it. > The latter doesn't work, however. The "alure" class seems to be similar > to "glu" in that it's a high-level "helper" class to make common functions > easy, > such as loading sound files directly. > > This line shoul

Re: [Gambas-user] OpenAL (gb.openal) example code and problem loading .wav files

2015-08-21 Thread Ru Vuott
> one allocation is not freed... I don't know what it is. ...because we have to destroy also the audio context: Alc.DestroyContext(AudioContext) Regards vuott Ven 21/8/15, Jussi Lahtinen ha scritto: Oggetto: Re: [Gambas-user] OpenAL (gb.o

[Gambas-user] R: OpenAL (gb.openal) example code and problem loading .wav files

2015-08-21 Thread Ru Vuott
Hello Kevin, you did a good work. Well, in your code I replaced 'setting up listener' code with this: ' Set up listener. Al.Listenerfv(Al.POSITION, [0, 0, 0]) Al.Listenerfv(Al.VELOCITY, [0, 0, 0]) Al.Listenerfv(Al.ORIENTATION, [0, 0, -1]) and the wav file plays (but NOT sine wave and wav f

[Gambas-user] R: How to pass a structure to a C routine

2015-08-19 Thread Ru Vuott
Hello Martin, here an example, so you can see in /tmp the C source-code: Public Struct punto3d x As Float Y As Float z As Float End Struct ' double rotate3D(punto3D * pp) Public Extern rotate3D(point3D As Punto3d) As Fl

Re: [Gambas-user] mkinteger..and the reverse function

2015-08-01 Thread Ru Vuott
...or... if you want (to write more code) ** Public Sub Main() Dim s As String Dim i As Integer s = MkInteger(123456) i = Asc(s, 1) i += Asc(s, 2) * 256' &0100 i += Asc(s, 3) * 65536' &01 i += Asc(s, 4) * 16777216 ' &0100 Print i

Re: [Gambas-user] SVN defunxit ?

2015-07-27 Thread Ru Vuott
Well, SVN resurrexit ! Now it works. regards vuott Dom 26/7/15, Benoît Minisini ha scritto: Oggetto: Re: [Gambas-user] SVN defunxit ? A: gambas-user@lists.sourceforge.net Data: Domenica 26 luglio 2015, 14:27 Le 26/07/2015 14:21, Benoît Mi

Re: [Gambas-user] SVN defunxit ?

2015-07-25 Thread Ru Vuott
-user] SVN defunxit ? A: "mailing list for gambas users" Data: Domenica 26 luglio 2015, 01:27 Normally svn will reworking Sunday Le 25 juil. 2015 19:20, "Ru Vuott" a écrit : > Hello, > > well SVN "kaputt" What alter

[Gambas-user] SVN defunxit ?

2015-07-25 Thread Ru Vuott
Hello, well SVN "kaputt" What alternative to upgrade Gambas? Regards vuott -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.n

Re: [Gambas-user] This is a test

2015-07-23 Thread Ru Vuott
I 'ld like can update Gambas via SVN ! :-(( Gio 23/7/15, adamn...@gmail.com ha scritto: Oggetto: Re: [Gambas-user] This is a test A: karl.re...@fen-net.de, "mailing list for gambas users" Cc: "Charlie Reinl" Data: Giovedì 23 luglio 2015

[Gambas-user] R: This is a test

2015-07-22 Thread Ru Vuott
Hello Benoît, well, I received this your e-mail, but I have to say when I try to update my Gambas via SVN, I receive this message again: svn: E000111: Unable to connect to a repository at URL 'svn://svn.code.sf.net/p/gambas/code/gambas/trunk' svn: E000111: Can't connect to host 'svn.code.sf.net

[Gambas-user] R: 回复: 回复: how to cite mplayer

2015-07-11 Thread Ru Vuott
INCORRECT: MediaView1.URL = "music1" Correct: MediaView1.URL = music1 Sab 11/7/15, tsukuba GIMP user ha scritto: Oggetto: [Gambas-user] 回复: 回复: how to cite mplayer A: "mailing list for gambas users" Data: Sabato 11 luglio 2015, 13:55 P

Re: [Gambas-user] ERROR with rev. 7145

2015-06-26 Thread Ru Vuott
Yes, it's OK. bye Ven 26/6/15, Benoît Minisini ha scritto: Oggetto: Re: [Gambas-user] ERROR with rev. 7145 A: "mailing list for gambas users" Data: Venerdì 26 giugno 2015, 13:22 Le 26/06/2015 09:22, Ru Vuott a écrit : &

[Gambas-user] ERROR with rev. 7145

2015-06-26 Thread Ru Vuott
Hello, I obtain ERROR in Make with rev. 7145: gtrayicon.cpp: In static member function 'static bool gTrayIcon::hasSystemTray()': gtrayicon.cpp:386:29: error: 'X11_get_system_tray' was not declared in this scope return X11_get_system_tray() != 0; ^ gtrayicon.cpp:3

[Gambas-user] R: Compiler segfaults on gb.eval.highlight?

2015-06-19 Thread Ru Vuott
Hello, also I have got this error with revision 7143: ... ... Installing the components... Compiling gb.eval.highlight... /bin/bash: line 1: 8855 Segmentation fault /usr/bin/gbc3 -ag -r /usr || || Unable to compile gb.eval.highlight || Unable to compile gb.form.editor || Unable

Re: [Gambas-user] ERROR in TextEditor.LinePos.998

2015-06-14 Thread Ru Vuott
Well, now it's OK. regards Dom 14/6/15, Benoît Minisini ha scritto: Oggetto: Re: [Gambas-user] ERROR in TextEditor.LinePos.998 A: "mailing list for gambas users" Data: Domenica 14 giugno 2015, 17:42 Le 13/06/2015 13:42, Ru

[Gambas-user] R: know if program is compiled

2015-06-14 Thread Ru Vuott
...and this ? Public Sub Main() If File.Load("/proc" &/ CStr(Application.Id) &/ "cmdline") Like "*.gambas*" Then Print "Running compiled into a .gambas file" Else Print "Running under the IDE" Endif End regards vuott Dom 14/6/15, Marco Anci

[Gambas-user] ERROR in TextEditor.LinePos.998

2015-06-13 Thread Ru Vuott
Hello, I get an error, if I launch twice this very simple code: Public Sub Main() Print String(100, "ab ") End In particular, I notice that - if the text written in the console exceeds the current width of the console - first time it runs, but second this error happens: " This applicati

[Gambas-user] R: Interview about Gambas

2015-06-10 Thread Ru Vuott
Hello Benoît, I broke this your message in the gambas-it.org forum. Regards vuott Mer 10/6/15, Benoît Minisini ha scritto: Oggetto: [Gambas-user] Interview about Gambas A: gambas-user@lists.sourceforge.net Data: Mercoledì 10 giugno 2015, 23:24

Re: [Gambas-user] R: how to generation 12 random letters (A-Z and 0-9)

2015-06-05 Thread Ru Vuott
On 15-06-02 08:49 AM, nando wrote: > >> Alternate: > >> > >> Dim j as Byte > >> Dim s as String > >> > >> For j = 1 To 12 > >>    s &= Mid("ABCDEFGJIJKLMOPQRSTUVWXYZ0123456789", Int(1, 13), 1) > >> Next

[Gambas-user] R: how to generation 12 random letters (A-Z and 0-9)

2015-05-30 Thread Ru Vuott
Hello, I propose: Public Sub Button1_Click() Dim j As Byte Dim s As String For j = 1 To 12 If Fix(Rnd(0, 2)) Then s &= Chr(Rnd(48, 58)) Else s &= Chr(Rnd(65, 91)) Endif Next Print s End Sab 30/5/15, tsukuba GI

Re: [Gambas-user] No "OK" Button in "Project Type" window

2015-05-29 Thread Ru Vuott
Yes, it is. Bye Ven 29/5/15, Benoît Minisini ha scritto: Oggetto: Re: [Gambas-user] No "OK" Button in "Project Type" window A: "mailing list for gambas users" Data: Venerdì 29 maggio 2015, 13:46 Le 29/05

[Gambas-user] No "OK" Button in "Project Type" window

2015-05-29 Thread Ru Vuott
Hello, with rev. 7102 at last Gambas now is compiled. Well. Now, with rev. 7103 I have a new problem: "Project Type" IDE window (when I want to create new project) has only 1 (one) button !!! The "OK" button is missing. I see only "Cancel" (for closing the window). Regards vuott

Re: [Gambas-user] R: ERROR "Unable to compile gambas3" in rev. #7092 !

2015-05-26 Thread Ru Vuott
Le 26/05/2015 17:22, Ru Vuott a écrit : > > Thank you very much, Charlie, finally a more information ! > So, therefore, do I have "to wait for" :-(   Ubuntu provides Qt5Core >= 5.3 version ? > > Amicalement - con amicizia > > vuott > See my answe

Re: [Gambas-user] R: ERROR "Unable to compile gambas3" in rev. #7092 !

2015-05-26 Thread Ru Vuott
: Re: [Gambas-user] R: ERROR "Unable to compile gambas3" in rev. #7092 ! A: gambas-user@lists.sourceforge.net Data: Martedì 26 maggio 2015, 13:01 Am Montag, den 25.05.2015, 11:07 +0100 schrieb Ru Vuott: > Hello, > > I come back about this problem that I had on my home PC

Re: [Gambas-user] R: ERROR "Unable to compile gambas3" in rev. #7092 !

2015-05-25 Thread Ru Vuott
.0.1000.8 GTK+=libgtk-x11-2.0.so.0.2400.23 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.44.0.0 Qt4=libQtCore.so.4.8.6 Qt5=libQt5Core.so.5.2.1 SDL=libSDL-1.2.so.0.11.4 Ven 22/5/15, Ru Vuott ha scritto: Oggetto: Re: [Gambas-user] R: ERROR "Unab

Re: [Gambas-user] R: ERROR "Unable to compile gambas3" in rev. #7092 !

2015-05-22 Thread Ru Vuott
" in rev. #7092 ! A: "mailing list for gambas users" Data: Venerdì 22 maggio 2015, 18:29 Le 22/05/2015 18:15, Ru Vuott a écrit : > Hello Fabien, > > thank you for your suggestion. > > So, I tried like reported below: > > ~/trunk $ sudo make uni

Re: [Gambas-user] R: ERROR "Unable to compile gambas3" in rev. #7092 !

2015-05-22 Thread Ru Vuott
maggio 2015, 17:18 Try a sudo make uninstall make clean svn up ./reconf ./configure -C make -j4 sudo make install Le 22 mai 2015 16:25, "Ru Vuott" a écrit : > Hello, > > new rev. #7093 didn't solve the Error !  :-( > > Regards > vuott >

[Gambas-user] R: ERROR "Unable to compile gambas3" in rev. #7092 !

2015-05-22 Thread Ru Vuott
Hello, new rev. #7093 didn't solve the Error ! :-( Regards vuott Gio 21/5/15, Ru Vuott ha scritto: Oggetto: [Gambas-user] ERROR "Unable to compile gambas3" in rev. #7092 ! A: gambas-user@lists.sourceforge.net Data: Giovedì

[Gambas-user] ERROR "Unable to compile gambas3" in rev. #7092 !

2015-05-21 Thread Ru Vuott
Hello, at end of "make install" rev. 7092 I obtaoned this Error: Installing gb.form.editor... make[2]: Nessuna operazione da eseguire per "install-data-am". make[2]: uscita dalla directory "/home/vuott/trunk/comp" make[1]: uscita dalla directory "/home/vuott/trunk/comp" Making install in app mak

Re: [Gambas-user] Problem with rev. #7090: impossible to paste a text in the project

2015-05-20 Thread Ru Vuott
iling list for gambas users" Data: Giovedì 21 maggio 2015, 00:32 Le 21/05/2015 00:20, Ru Vuott a écrit : > Ok, but it is really a trouble and an inconvenience, because if I want to insert in the IDE some text Gambas code: > - if it was copied from a web page, I obtain strange sy

Re: [Gambas-user] Problem with rev. #7090: impossible to paste a text in the project

2015-05-20 Thread Ru Vuott
I cannot copy a text code and insert it as code of some my project. Regards vuott vuott Mer 20/5/15, Benoît Minisini ha scritto: Oggetto: Re: [Gambas-user] Problem with rev. #7090: impossible to paste a text in the project A: "mailing list for gambas users" Data: Mercoledì 20 maggi

[Gambas-user] Problem with rev. #7090: impossible to paste a text in the project

2015-05-20 Thread Ru Vuott
Hello, with rev. #7090 I have a strange problem: I cannot paste in a project the text that I highlighted with the mouse. regards vuott P.S. : I wanted to paste here the characteristics of my system, but - although I have clicked on the "Copy" on "System information" window - I could not paste

[Gambas-user] ERROR in IDE with vers. #7089 !!!

2015-05-19 Thread Ru Vuott
Hello Benoît, I update vers. #7089, but now when I want to open a "New" project from IDE, I obtain an Error notice. You can see it in attached file immage. Regards vuott-- One dashboard for servers and applications acro

Re: [Gambas-user] Kde 5 and trayicon

2015-05-17 Thread Ru Vuott
Well, thank you. I'll tell it to him. vuott Dom 17/5/15, Benoît Minisini ha scritto: Oggetto: Re: [Gambas-user] Kde 5 and trayicon A: "mailing list for gambas users" Data: Domenica 17 maggio 2015, 19:36 Le 17/05/2015 19:

[Gambas-user] Kde 5 and trayicon

2015-05-17 Thread Ru Vuott
Hello, a member of gambas.it forum says he installed the latest version of Kubuntu, the 15.04, with kde 5. He tells that unfortunately trayicon seems not to be compatible with the new system tray, and the program icon is not displayed. He questions if there is a solution or if with later versi

[Gambas-user] I: Re: I: DrawigArea second mailing

2015-05-16 Thread Ru Vuott
scritto: > > Le > 16/05/2015 16:27, Ru Vuott a écrit : > >> ...from Gianluigi (its email end in > SPAM) > >> > > > > "Pending path" means that you > cannot draw text (with DrawText() method > > for example) if you have started a drawing &g

[Gambas-user] I: DrawigArea second mailing

2015-05-16 Thread Ru Vuott
...from Gianluigi (its email end in SPAM) --- Sab 16/5/15, Gian ha scritto: > Da: Gian > Oggetto: [Gambas-user] DrawigArea second mailing > A: Gambas-user@lists.sourceforge.net > Data: Sabato 16 maggio 2015, 16:18 > I was informed that the previous > email with the subject DravingArea > error

[Gambas-user] Rev. 7062 - gb.qt5 component: disabled

2015-05-08 Thread Ru Vuott
Hello, with rev. 7062 I obtain this notice: || || THESE COMPONENTS ARE DISABLED: || - gb.qt5 || What library "qt5" I have to install ? Regards vuott -- One dashboard for servers and applications across Physical-Virtua

Re: [Gambas-user] R: How to know is my Form activated or not?

2015-05-05 Thread Ru Vuott
...very strange ! Mar 5/5/15, abbat81 ha scritto: Oggetto: Re: [Gambas-user] R: How to know is my Form activated or not? A: gambas-user@lists.sourceforge.net Data: Martedì 5 maggio 2015, 08:59

Re: [Gambas-user] R: How to know is my Form activated or not?

2015-05-04 Thread Ru Vuott
Activating gb.desktop: Public Sub Form_Open() Me.Caption = "Novum Nomen" End Public Sub Button1_Click() Dim dw As DesktopWindow For Each dw In Desktop.Windows Print "_" & dw.VisibleName Next End ***

Re: [Gambas-user] R: How to know is my Form activated or not?

2015-05-03 Thread Ru Vuott
Me.Caption = "my visible name" Dom 3/5/15, abbat81 ha scritto: Oggetto: Re: [Gambas-user] R: How to know is my Form activated or not? A: gambas-user@lists.sourceforge.net Data: Domenica 3 maggio 2015, 13:28 Does not work in my pr

[Gambas-user] R: How to know is my Form activated or not?

2015-05-02 Thread Ru Vuott
If you know visible-name of Form, you could use (gb.Desktop): Public Sub Button1_Click() Dim dw As DesktopWindow For Each dw In Desktop.Windows ' If the visible-name is the same as the name of the form that we seek, then it detects that: If dw.VisibleName = "visible-name

[Gambas-user] R: Control.Move like animation

2015-05-01 Thread Ru Vuott
It works. Pay attention, Wait 10 -> 10 seconds !!! Regards vuott Ven 1/5/15, abbat81 ha scritto: Oggetto: [Gambas-user] Control.Move like animation A: gambas-user@lists.sourceforge.net Data: Venerdì 1 maggio 2015, 13:11 How to move a control

Re: [Gambas-user] TextArea show first line of text

2015-05-01 Thread Ru Vuott
TextArea.Pos = 0 or, if you prefer TextArea1.Line = 0 TextArea1.Column = 0 Ven 1/5/15, Johny Provoost ha scritto: Oggetto: Re: [Gambas-user] TextArea show first line of text A: gambas-user@lists.sourceforge.net Data: Venerdì 1 maggio 2015,

[Gambas-user] R: ERROR with revision 7017

2015-03-30 Thread Ru Vuott
I solved by removing " gb.db.sqlite3/src/.deps " folder. regards vuott Lun 30/3/15, Ru Vuott ha scritto: Oggetto: [Gambas-user] ERROR with revision 7017 A: gambas-user@lists.sourceforge.net Data: Lunedì 30 marzo 2015, 11:10 Hello

Re: [Gambas-user] [Gambas-devel] Gambas trunk Rev. 7017 error

2015-03-30 Thread Ru Vuott
...me too. I solved by removing gb.db.sqlite3/src/.deps' folder. Thanks vuott Lun 30/3/15, Charlie Reinl ha scritto: Oggetto: Re: [Gambas-user] [Gambas-devel] Gambas trunk Rev. 7017 error A: gambas-user@lists.sourceforge.net Data: Lunedì 30 marz

  1   2   3   4   5   6   7   >