[Gambas-user] where's can download gambas ver 3.8.90.svn.7215

2015-08-04 Thread tsukuba GIMP user
because my project is dev in opensuse but i choose 3.8.90.svn.7215 ver in software.opensuse.org(because 3.7.1 not working) so now i move to archlinux-like(manjaro) but when i Compiled the installation package and *note:i using chinese language [nishikino-maki@lmos debian]$ su -c "dpkg -i

[Gambas-user] about gambas3 3.8.0 in archlinux-like(manjaro) problem

2015-08-03 Thread tsukuba GIMP user
because manjaro pacman only have 3.7.1 version gambas so i try goto gambas website download the tar.bz2 package to install gambas 3.8.0 but when i in console run ./reconf-all then console will be always loop in Unescaped left brace in regex is deprecated, passed through in regex; marked by <

Re: [Gambas-user] ?? : why this code not working

2015-07-15 Thread tsukuba GIMP user
rint "hello" when i click 8 time console is printed HELLO but the textbox1.text it's still No expectations of the content(text) and i deleted else goto just_keep_moveing it's doesn't work... On 07/14/2015 03:14 PM, tsukuba GIMP user wrote: > No i make a mistay M

Re: [Gambas-user] ?? : why this code not working

2015-07-14 Thread tsukuba GIMP user
i try if $dbclick = 8 then print "hello" when i click 8 time console is printed HELLO but the textbox1.text it's still No expectations of the content(text) and i deleted else goto just_keep_moveing it's doesn't work... On 07/14/2015 03:14 PM, tsukuba GIMP user wr

[Gambas-user] ?????? : why this code not working

2015-07-14 Thread tsukuba GIMP user
No i make a mistay Mistakes not $dbclick += 1 still not working is >Now, you declare $dbclick, but you don't set a value to it. >So, every time PictureBox1_MouseDown() starts, $dbclick gets the value 1. >Try: Private $dbclick as Integer = 0 > >Am 14.07.2015 um 21:01 schri

Re: [Gambas-user] : why this code not working

2015-07-14 Thread tsukuba GIMP user
TextBox1.text = ("xx?xx?") ' Form3.Show ' Else If dicer = 3 Then ' Form3.Text = ("") ' Form3.TextBox1.text = ("xxxx~xxxx~") ' Form3.Show ' Else If dicer = 4 Then ' Form3.Text = ("") '

Re: [Gambas-user] : why this code not working

2015-07-14 Thread tsukuba GIMP user
TextBox1.text = ("xx?xx?") ' Form3.Show ' Else If dicer = 3 Then ' Form3.Text = ("") ' Form3.TextBox1.text = ("xxxx~xxxx~") ' Form3.Show ' Else If dicer = 4 Then ' Form3.Text = ("") '

[Gambas-user] ?????? why this code not working

2015-07-14 Thread tsukuba GIMP user
ure > Le 14 juil. 2015 19:31, "tsukuba GIMP user" > a ??crit : > > As you said I changed into ??dbclick + = 1??or ??inc dbclick?? > but this time i add "print dbclick"(test only) then... print alwasy's 1 > when i click picturebox > > > Public Su

Re: [Gambas-user] why this code not working

2015-07-14 Thread tsukuba GIMP user
As you said I changed into ??dbclick + = 1??or ??inc dbclick?? but this time i add "print dbclick"(test only) then... print alwasy's 1 when i click picturebox > Public Sub PictureBox1_MouseDown() > >Dim dicer As Integer >Dim dbclick As Integer >dicer = Int(Rnd(1, 5)) >dbclick = +1

[Gambas-user] why this code not working

2015-07-14 Thread tsukuba GIMP user
Public Sub PictureBox1_MouseDown() Dim dicer As Integer Dim dbclick As Integer dicer = Int(Rnd(1, 5)) dbclick = +1 <---Problem code If dbclick = 8 Then <--- i click 8 time but it's don't run this code just like my program forget this code Form3.Text

Re: [Gambas-user] i Build a RPM package but...

2015-07-12 Thread tsukuba GIMP user
ck() Dim music As String MediaView1.Stop music = application.Path &/ "music1.mp3" MediaView1.URL = music MediaView1.play End On Sun, 12 Jul 2015, tsukuba GIMP user wrote: > but if use "music = application.Path & "/music1.mp3"" when i

Re: [Gambas-user] i Build a RPM package but...

2015-07-12 Thread tsukuba GIMP user
Subject: Re: [Gambas-user] i Build a RPM package but... On Sun, 12 Jul 2015, tsukuba GIMP user

[Gambas-user] i Build a RPM package but...

2015-07-12 Thread tsukuba GIMP user
music = application.Path & "/.hidden/music1.mp3" this application.path is /usr/bin/.hidden or /usr/share/.hidden?(and i want to change /.hidden to /.musicfiles) ??my program in debug it's working but if build the RPM and I install it's not working because file not found...?? -

[Gambas-user] ?????? R: ?????? ?????? how to cite mplayer

2015-07-11 Thread tsukuba GIMP user
NCORRECT: 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 lu

[Gambas-user] ?????? ?????? how to cite mplayer

2015-07-11 Thread tsukuba GIMP user
??: "Marco Ancillotti";; : 2015??7??11??(??) 6:56 ??: "gambas-user"; : Re: [Gambas-user] ?? how to cite mplayer So the path is not right , U have to use full path or use: application.path & "/music1.mp3" Il 11/07/2015 12:

[Gambas-user] ?????? how to cite mplayer

2015-07-11 Thread tsukuba GIMP user
I just want when i click button1 mediaview1 will be play in Program directory mp3 file Il 11/07/2015 11:48, tsukuba GIMP user ha scritto: > I would like to quote an external file??music1.mp3?? > > #==|code|== > # > #Public Sub Button1_Click() > # > # Dim music1

Re: [Gambas-user] how to cite mplayer

2015-07-11 Thread tsukuba GIMP user
b.media component that rely on gstreamer and provide an api for play music. bye, marco. Il 11/07/2015 11:16, tsukuba GIMP user ha scritto: > i wanna build a like "Music box" program > but how to cite mplayer (if click "music" button music will be play(outsid

[Gambas-user] how to cite mplayer

2015-07-11 Thread tsukuba GIMP user
i wanna build a like "Music box" program but how to cite mplayer (if click "music" button music will be play(outside mp3 file) if click "stop" button music will be stop) -- Don't Limit Your Business. Reach for the Cloud. G

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

2015-05-30 Thread tsukuba GIMP user
Endif Next Print s End Sab 30/5/15, tsukuba GIMP user ha scritto: Oggetto: [Gambas-user] how to generation 12 random letters (A-Z and 0-9) A: "gambas-user" Data: Sabato 30 maggio 2015, 11:16 i want when i click button (button_1)

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

2015-05-30 Thread tsukuba GIMP user
i want when i click button (button_1) LCDpanl(LCDLabel1) will be Generation 12 random letters how to do?? -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https: