Wiki only
2018-03-19 15:29 GMT+02:00 Gianluigi :
> 2018-03-19 13:49 GMT+01:00 Benoît Minisini :
>
> > Le 19/03/2018 à 13:45, Петро Abbat a écrit :
> >
> >> Hi Gianluigi,
> >> What about blocked wiki for Ukraine? Why?
> >> Thanks in advance.
>
Hi Gianluigi,
What about blocked wiki for Ukraine? Why?
Thanks in advance.
Petro
2018-03-19 14:23 GMT+02:00 Gianluigi :
> 2018-03-19 13:20 GMT+01:00 Tobias Boege :
>
> > On Mon, 19 Mar 2018, fargodwe via Gambas-user wrote:
> > > I decided to try to see if I can learn gambas. I am running Linux M
omp/gb/task?v3&en
>
> But you can also use following method:
>
> hProcess = Exec ["gbr3", "KindOfYourOtherThread.gambas", CStr(vInput)] For
> Input As "Process"
>
> Then catch output of thread with:
>
> Public Sub Process_Read()
>
Hello,
As I got we have not multi-threading.
So, I 've found next:
> You can write two separated gambas applications that communicate to each
> other.
> That way you can have two threads.
And I'd like to know how to send some data between "threads"(gambas apps)
Thanks,
Peter
--
View this mess
Hi,
is there any way to get Month as Text in DateChooser according to
localization.
To get September instead of "11"
Thanks
--
View this message in context:
http://old.nabble.com/DateChooser.Month-as-Text-tp34641992p34641992.html
Sent from the gambas-user mailing list archive at Nabble.com.
-
t;
> instead, this works:
>
> With GridView1[0, 2]
> .Alignment = Align.Center
> .Text = "abcdefg"
> End With
>
>
>
> --- Dom 4/11/12, abbat ha scritto:
>
> Da: abbat
> Oggetto: [Gambas-user] How to Set Column.Title Alignme
How to:
With
.Columns[2].Title.Alignment = Align.center
End With
How to Set Column.Title Alignment?
Thank you
--
View this message in context:
http://old.nabble.com/How-to-Set-Column.Title-Alignment--tp34638977p34638977.html
Sent from the gambas-user mailing list archive at Nabble.com.
Hi,
How to create request SUM
$Query = "SELECT Phones"
$Phone = $Result!Phone - works
$Query = "SELECT Sum(Column)"
$Sum =$Result!" Sum(Column)" - not works
$Sum =$Result!Sum(Column) - not works
Thanks
--
View this message in context:
http://old.nabble.com/MySQL%2C-%24Query-%3D-%22SE
Hello,
Is it possible to make some Cell or Column in GridView text editable?
Thanks.
--
View this message in context:
http://old.nabble.com/How-to-edit-cell.text-in-GridView--tp34609425p34609425.html
Sent from the gambas-user mailing list archive at Nabble.com.
--
Solved.
PUBLIC SUB Form_MouseWheel()
SELECT CASE Mouse.delta
CASE 1
PRINT "mouse wheel up"
CASE -1
PRINT "mouse wheel down"
END SELECT
END
abbat wrote:
>
> Hi,
> I need to get event mouse ScrollUP and ScrollDOWN.
> Th
Hi,
I need to get event mouse ScrollUP and ScrollDOWN.
Thanks
--
View this message in context:
http://old.nabble.com/Mouse-Event-Scroll-Up-Down-tp34585508p34585508.html
Sent from the gambas-user mailing list archive at Nabble.com.
---
HI,
Is it possible to scroll spinbox but mouse cursor is not over control?
Thanks
--
View this message in context:
http://old.nabble.com/Spinbox-scroll-when-mouse-is-not-over-control-tp34583336p34583336.html
Sent from the gambas-user mailing list archive at Nabble.com.
---
Ok, I'm trying to do such way.
And I have a next question.
Is there any way to know possition of GriView.Cell or row...
I need it, because my form is not static.
Thank you
Tobias Boege-2 wrote:
>
> On Fri, 19 Oct 2012, abbat wrote:
>>
>> Hi all,
>>
>&g
Hi all,
Is it possible to have a spinbox into a gridview cell?
Thanks
--
View this message in context:
http://old.nabble.com/SpinBox-into-a-GridView-Cell-tp34576830p34576830.html
Sent from the gambas-user mailing list archive at Nabble.com.
--
HI,
In Thunar I do it so: Cnrl+L "smb://192.168.0.101/"
FileView.Dir = "smb://192.168.0.101/" - does not help me.
I tried many ways but I could not make it work.
Is it possible to use FileView control for network browsing?
Thanks
--
View this message in context:
http://old.nabble.com/FileVi
Hi,
Can we make a Cells of column in a GridView to be like scrollbar or
spinbox?
Thanks
--
View this message in context:
http://old.nabble.com/GridView.--ScrollBar-into-an-Cell-tp34572766p34572766.html
Sent from the gambas-user mailing list archive at Nabble.com.
---
Hi all,
I cant understand how to get a property of a row, is it selected or it's
not.
How can I know is a GridView1[2, 4] - selected or it is not?
Thanks
--
View this message in context:
http://old.nabble.com/GridView.-Is-a-row-selected-or-not--tp34571965p34571965.html
Sent from the gambas-
Hi all,
My programm uses a MySQL requests and very often I have a problem with a
network.
In terminal for "ping" I get "Network is unreachable" for my problem.
How can I check the network status in Gambas?
Thanks to all.
--
View this message in context:
http://old.nabble.com/How-to-check--
Then
>
> s2 = File.Load("/proc/" & pid & "/cmdline")
>
> If s2 Like "*" & s1 & ".gambas*" Then
> Shell "kill " & pid
> Exit
> Endif
>
> Endif
&g
Hi,
Current process name of my program is "gbr3".
So, if I have two and more running program of gambas I cant kill one
process.
"killall gbr3" kills all running gambas programs.
Is it possible to change a process name of gambas program?
Thank you.
--
View this message in context:
http://old
abbat wrote:
>
> Hi,
>
> I cant get how to get current time.
>
> In tutorial is clear example to get var from Query using name of Query:
>
> $Phone = $Result!Phone
>
> But how to get Result if my Query is
> $Query = "SELECT CURTIME()"
>
>
Hi,
I cant get how to get current time.
In tutorial is clear example to get var from Query using name of Query:
$Phone = $Result!Phone
But how to get Result if my Query is
$Query = "SELECT CURTIME()"
And, how to trasform that result to date format
Thanks .
--
View this message in context:
Hello,
I have:
Form
Textbox1
Button1
I need accept event.
After edition of textbox1 to push button1 by Enter button on keyboard.
Can I make such an event?
Thanks
--
View this message in context:
http://old.nabble.com/Accept-Button-on-form-tp34465687p34465687.html
Sent from
Thanks a lot,
that's what I was looking for
Tobias Boege wrote:
>
> On Sun, 05 Aug 2012, abbat wrote:
>>
>> Thanks
>> Oh, this is way to create a controls by code, but there any way to do it
>> in
>> Designer?
>>
>>
>
> I always did
Thanks
Oh, this is way to create a controls by code, but there any way to do it in
Designer?
Tobias Boege wrote:
>
> On Sun, 05 Aug 2012, abbat wrote:
>>
>> A have an existing Panel1 which contains a few controls.
>> How to add a new control to existing panel?
>>
A have an existing Panel1 which contains a few controls.
How to add a new control to existing panel?
I could not find anything in properies of panel(list of controls or
something else)
Thanks
--
View this message in context:
http://old.nabble.com/Adding-a-new-control-to-existing-container%28Pane
Dim TimeS as String = Hour(Now) & ":" & Minute(Now) & ":" & Second(Now)
We get a string like "9:8:4"
But it would be better this way: "09:08:04"
Thanks
--
View this message in context:
http://old.nabble.com/Time-Format-in-00%3A00%3A00-%28Two-digits%29-tp34257082p34257082.html
Sent from the g
Does label has some feature like multi-line?
--
View this message in context:
http://old.nabble.com/label-multiline-property-tp34248091p34248091.html
Sent from the gambas-user mailing list archive at Nabble.com.
--
L
Utility = True :-/
abbat wrote:
>
> When my form is fullscreen I need disable a F11 (no/fullscreen)
> Is there any way of interception of F11 (Catch F11 and ignore it)
> Thanks
>
--
View this message in context:
http://old.nabble.com/Interception-of-keys-tp34204226p342
When my form is fullscreen I need disable a F11 (no/fullscreen)
Is there any way of interception of F11 (Catch F11 and ignore it)
Thanks
--
View this message in context:
http://old.nabble.com/Interception-of-keys-tp34204226p34204226.html
Sent from the gambas-user mailing list archive at Nabble.c
c.org/help/comp/gb.qt4.webkit/webview?v3
>
> You should find everything you need there.
>
>
>
> On Wed, Jul 18, 2012 at 6:07 PM, abbat wrote:
>>
>> Please, what the control should I use for playing flash?
>>
>>
>> Sebi-6 wrote:
>>>
>
ope this helps you!
>
> -Original Message-
> From: abbat
> Date: Wed, 18 Jul 2012 13:39:46
> To:
> Reply-To: mailing list for gambas users
>
> Subject: [Gambas-user] Flash (.swf) on form
>
>
> Is it possible to play flash (.swf) on form.
> I coul
Is it possible to play flash (.swf) on form.
I could not find any example.
Thanks
--
View this message in context:
http://old.nabble.com/Flash-%28.swf%29-on-form-tp34181536p34181536.html
Sent from the gambas-user mailing list archive at Nabble.com.
--
Thank you very very very much ))
Now it works as i need.
minthaka wrote:
>
> What about Quit instead Me.Close?
>
> 2012/4/20, abbat :
>>
>> It does not CLOSE.
>> Just try F5
>>
>> If True then
>> Exec ["ls"]
>>
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-79 wrote:
>
> On Fri, 2012
Hi,
Public Sub Form_Open()
Dim a As String = 4
Dim b As String = 4
If a > b Then
Else
'Shell "ls"
Exec ["ls"]
Me.Close
Endif
End
How to "Me.Close"
Thanks
--
View this message in context:
http://old.nabble.com/How-to-%22Me.Close%22-with-%22Shell%22-or-%22Exec%22--tp3371924
gt; hGetFileClient.Stop()
>
> END
>
> PUBLIC SUB hGetFileClient_Finished()
>
> hGetFileClient.Stop()
>
> END
>
>
>
> On ma, 2012-03-26 at 14:25 -0700, abbat wrote:
>> I have a file on:
>> www.mydomain.com/test
>>
>> I tried :
And how to save the sBuffer to file?
What if file is *.png *.rar *.gambas etc?
Emil Lenngren wrote:
>
> See here: http://gambasdoc.org/help/comp/gb.net.curl/httpclient?v3
>
> 2012/3/26 abbat
>
>>
>> I have a file on:
>> www.mydomain.com/test
>>
&g
--
View this message in context:
http://old.nabble.com/How-to-change-position-of-form--tp33544800p33544800.html
Sent from the gambas-user mailing list archive at Nabble.com.
--
This SF email is sponsosred by:
Try Wind
I have a file on:
www.mydomain.com/test
I tried :
sSourcePath = "http://mydomain";
sCopyPath = User.Home & "/Test/"
Copy sSourcePath & "test" To sCopyPath & "test"
but "File or Directory does not exist"
How to download a file?
Thanks
--
View this message in context:
http://old.nabble.com
I tried :
Me.toponly = True
but it does not work.
Skype notify forms works, so it must be some way to do it.
Had anone such a problem?
--
View this message in context:
http://old.nabble.com/Form-toponly-in-games-tp33513857p33513857.html
Sent from the gambas-user mailing list archive at Nabble.
= plura.Count
>>
>> For a = 0 To c - 1
>>
>>
>> If Right(plura[a], 20) Like "*.gambas*" Then
>>
>>For b = a To 100
>>
>>
>>Try Shell "kill " & plura[b]
>>Next
>> Endif
>>
>>
>> Next
Strange
Now it works so:
Public Sub Form_LostFocus()
Me.Close
End
BUT !
If my form has NO controls.
If I add one button to my form then Form_LostFocus() stops to work.
:confused:
abbat wrote:
>
> Public Sub Fmain_LostFocus()
> Me.Close
> End
>
> D
Public Sub Fmain_LostFocus()
Me.Close
End
Does not work.
Or examle is wrong?
--
View this message in context:
http://old.nabble.com/FMain_Focus%28%29---DOES-NOT-WORK-tp33492703p33492703.html
Sent from the gambas-user mailing list archive at Nabble.com.
-
c = plura.Count
>
> For a = 0 To c - 1
>
>
> If Right(plura[a], 20) Like "*.gambas*" Then
>
> For b = a To 100
>
>
> Try Shell "kill " & plura[b]
> Next
> Endif
>
>
> Next
>
> End
>
How to allow to run only one copy of prog.gambas?
I tried to:
Shell ["killall", "prog.gambas"]
on form open...
But there is no such a process when prog.gambas is running/
--
View this message in context:
http://old.nabble.com/Prog.gambas-only-one-process-tp33491262p33491262.html
Sent from the
I have such a string to SHELL:
cd /home/onix/Games/FlatOut2 && wine "Flat Out 2".exe -opengl
But I cannot write it correct
Shell "cd /home/onix/Games/FlatOut2 && wine "Flat Out 2".exe -opengl" - is
wrong
Usually i use:
Shell "prog_name" but my promlem is with ("")
Help me pls.
Thanks
I need example of filebrowser.
Thanks
--
View this message in context:
http://old.nabble.com/FileBrowser-tp33454488p33454488.html
Sent from the gambas-user mailing list archive at Nabble.com.
--
Keep Your Developer Sk
I have now on Button1 next:
Public Sub button1_Click()
Exec ["killall", "tvtime"]
Exec ["killall", "leafpad"]
Exec ["killall", "abiword"]
End
Help me please do that if I have in file ~/prkill next:
Exec ["killall", "tvtime"]
Exec ["killall", "leafpad"]
Exec ["killall", "abiwor
It works only if I use Button1 (If we execute an app ourselves).
But how to kill process if we know only Name?
Thanks
Vuott wrote:
>
> ' Gambas class file
>
> Private hpro As Process
>
>
> Public Sub Button1_Click()
>
> ' An application start, i.e. “ Gedit “
> hpro = Exec ["gedit"] As
Help me please.
1) How to situate processes in TableView or GridView by Name and PID
columns?
2) How to kill Process?
I cannot find any example of it and about Process.Kill.
I tried:
Dim p As Process = "tvtime"
p.Kill
Process.Kill(9207)
_
Process.Kill(tvtime)
Its does not work.
Sorry, if it's abasic question (but GAMBAS is Almost mean BASIC :-))
How to copy a file if it is already exist?
And do not get any error.
Overwrite
Tnx.
--
View this message in context:
http://old.nabble.com/COPY-file-if-%22file-allready-exist%22-tp33289311p33289311.html
Sent from the gambas-u
How to get a Date without any sewparators, splash and dots?
In VB.NET I can get it by:
Dim T = Now.ToString("MMddHHmmss")
I get "02062012192533"
In "HOW TO" I could not find such exemple.
Thanks
--
View this message in context:
http://old.nabble.com/Date-to-string-MMddHHmmss-tp33277
Then
> rSet.MoveFirst
> Print rSet["CLEF"], rSet["Langue"]
> Endif
> Endif
>
> As expected, it prints:
>
> Caveat EN
>
> Regards,
> Caveat
>
> On Mon, 2012-02-06 at 09:21 +0100, Caveat wrote:
>
"TimeCode, SessionStart, SessionEnd, Kluch, Comp) VALUES ('" &
T & "', now(), now(),'" & kluch & "','" & Nc & "')")
I tried next:
MODMain.$Con.Exec("INSERT INTO statistic (" &
I cant make to work the command for MySQL which works perfect on VB.NET
Dim COMMAND = New MySqlCommand("INSERT INTO statistic (" &
"TimeCode, SessionStart, SessionEnd, Kluch, Comp) VALUES ('" &
T & "', now(), now(),'" & kluch & "','" & Nc & "')")
How to make it work?
Thanks
--
V
How can I send a string "test_string" from
Main.module
to
Label1 which situated on
MFmain.class
Thanks
--
View this message in context:
http://old.nabble.com/Send-from-.module-to-.class-tp33264477p33264477.html
Sent from the gambas-user mailing list archive at Nabble.com.
--
I've read the docs, but my "300" seconds is not the same like "NOW" so it
does not work
Emil Lenngren wrote:
>
> You should read the documentation.
> http://gambasdoc.org/help/lang/time?v3
> http://gambasdoc.org/help/cat/time?v3
>
> /Emil
>
> 2
How to convert a seconds to time format
Dim Sec = 300
How to display it as:
00:05:00
Thanks
--
View this message in context:
http://old.nabble.com/Seconds-%3D%3E-Time.Format%28hh%3Amm%3Ass%29-tp33239641p33239641.html
Sent from the gambas-user mailing list archive at Nabble.com.
-
Public Sub Button1_Click()
How to insert a text into existing file (/tmp/file)?
--
View this message in context:
http://old.nabble.com/HOW-TO-insert-a-text-into-the-file--tp33239012p33239012.html
Sent from the gambas-user mailing list archive at Nabble.com.
-
ls.
>
> Jussi
>
>
>
> On Sat, Jan 28, 2012 at 15:07, abbat wrote:
>
>>
>> It's not a clone topic.
>> I'm trying to ask clearly so next.
>>
>> http://old.nabble.com/file/p33219801/123.jpg
>>
>> Form location #1
>>
It's not a clone topic.
I'm trying to ask clearly so next.
http://old.nabble.com/file/p33219801/123.jpg
Form location #1
Fmain.X = 80
Fmain.Y = 80
Form location #2
Fmain.X = 300
Fmain.Y = 570
Form location #3
Fmain.X = 350
Fmain.Y = 750 (limit is 570)
Form location #4
How to locate my fo
nanks.
Matti-4 wrote:
>
>Me.TopOnly = True
>Me.X = 880
>Me.Y = Desktop.Height - Me.Height - 26
> works fine here.
>
>
> Am 27.01.2012 20:18, schrieb abbat:
>>
>> limit of situated of form
>>
>> How to free situating of a form on s
limit of situated of form
How to free situating of a form on screen
My Desktop.Height = 900 (shows 876, panal takes 26 px.H)
In property of situating of form I have next:
Fmain.TopOnly = True
Fmain.X = 880
Fmain.Y = 880
http://old.nabble.com/file/p33213549/image_1.png
I want form to be above
This works, but it is WORKAREA.
If my resolutions is 1280 x 1024 and panel has 26 px and situated below,
Then Desktop.Height = (1024-26)
Benoît Minisini wrote:
>
> Le 23/01/2012 12:32, abbat a écrit :
>>
>>
>> in VB.NET I get it by this way:
Is it possible to activate or deactivate Alt-Tab function in Gambas?
Thanks
--
View this message in context:
http://old.nabble.com/activate-deactivate-Alt-Tab-function-tp33211091p33211091.html
Sent from the gambas-user mailing list archive at Nabble.com.
---
Benoit is interested in make native Gambas functions for this...
>
> Jussi
>
>
>
>
> On Mon, Jan 23, 2012 at 20:52, abbat wrote:
>
>>
>>
>> I mean a time-text near that icon.
>> I need send my text near that icon, like time shows on panel, not
I mean a time-text near that icon.
I need send my text near that icon, like time shows on panel, not pop-up
Jussi Lahtinen wrote:
>
> Do you mean trayicon?
> http://gambasdoc.org/help/comp/gb.qt4/trayicon?v3
>
> Jussi
>
>
>
> On Mon, Jan 23, 2012 at 19:59, abbat
>
> Where do you need this text? In form title? To a label?
> What is the problem exactly?
>
> Jussi
>
>
>
> On Mon, Jan 23, 2012 at 02:10, abbat wrote:
>
>>
>> How to create simple applet with text?
>>
>> Thanks
>> --
>> V
in VB.NET I get it by this way:
Dim yy As Integer = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height
Dim xx As Integer = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width
How to do it in Gambas 3?
Thanks
--
View this message in context:
http://old.nabble.com/How-to-know-Height-an
How to create simple applet with text?
Thanks
--
View this message in context:
http://old.nabble.com/How-to-create-simple-applet--tp33185455p33185455.html
Sent from the gambas-user mailing list archive at Nabble.com.
Need an example of applet (own text in it) for GNOME Panel on Gambas 3
Can someone be kind and show how to do it?
Thanks
--
View this message in context:
http://old.nabble.com/example-of-applet-%28own-text-in-it%29-for-GNOME-Panel-on-Gambas-3-tp33184757p33184757.html
Sent from the gambas-user
Is it imposible?
abbat wrote:
>
> Hi!
>
> Is it possible to find a simple example of such a applet like date for
> LXPanel?
>
> Thanks.
>
>
>
--
View this message in context:
http://old.nabble.com/An-example-of-applet-%28own-text-in-it%29-for-LXPanel-on-Gam
Hi!
Is it possible to find a simple example of such a applet like date for
LXPanel?
Thanks.
--
View this message in context:
http://old.nabble.com/An-example-of-applet-%28own-text-in-it%29-for-LXPanel-on-Gambas-3-tp33173919p33173919.html
Sent from the gambas-user mailing list archive at Nabb
74 matches
Mail list logo