Re: [Gambas-user] Running program

2012-11-09 Thread Cogier
ain.TempString kept throwing up errors Problem solved Johny Provoost wrote: > > > Op 07-11-12 12:12, Cogier schreef: >> Can you tell me the best way to spot that there is another instance of >> the >> same Gambas program running at the same time. >> >> I have

[Gambas-user] Running program

2012-11-07 Thread Cogier
Can you tell me the best way to spot that there is another instance of the same Gambas program running at the same time. I have users who sometimes start the same program written in Gambas twice and I would like the 2nd instance to pop up a message saying that there is already a copy of the progr

Re: [Gambas-user] Inputbox

2012-08-10 Thread Cogier
eliably recreate the problem I will open a new thread. Thanks again for your help. Matti-4 wrote: > > Better open a new thread about gb3 and Mint and Ubuntu, because I don't > know > anything about that! > > Am 09.08.2012 20:20, schrieb Cogier: >> >> T

Re: [Gambas-user] Inputbox

2012-08-09 Thread Cogier
FInput.ShowModal >If Me.Tag = "" Then >Print "User has cancelled." > Else >Print "The name is " & Me.Tag & "." >Endif > End > > The FInput code is: > > Public Sub btnCancel_Clic

Re: [Gambas-user] Inputbox

2012-08-07 Thread Cogier
putBox is correctly centered. > > But as a workaround, you can easily create a tiny form for the input and > open it > with 'xyz.ShowModal'. That is surely centered, and it takes about the same > amount of code. > > > Am 06.08.2012 10:15, schrieb Cogier: >>

[Gambas-user] Inputbox

2012-08-06 Thread Cogier
Is there a way to centre the InputBox on the screen as I always see it in the top left hand corner and it is missed by the user? -- View this message in context: http://old.nabble.com/Inputbox-tp34259974p34259974.html Sent from the gambas-user mailing list archive at Nabble.com. --

Re: [Gambas-user] Keyboard input help requested

2012-03-22 Thread Cogier
Press() PRINT "Key";; Key.Code;; "'"; Key.Text; "' has been pressed." PRINT "Was here" END Benoît Minisini wrote: > > Le 17/03/2012 13:18, Cogier a écrit : >> >> Benoît, >> >> Thanks for the reply. I do

Re: [Gambas-user] Keyboard input help requested

2012-03-17 Thread Cogier
Benoît, Thanks for the reply. I don't seem to understand how to use your advice. Can you please provide a working example. Thanks for any assistance. Charlie Ogier Les îles Anglo-Normandes Benoît Minisini wrote: > > Le 15/03/2012 14:21, Cogier a écrit : >> >> Rol

Re: [Gambas-user] Keyboard input help requested

2012-03-15 Thread Cogier
-Werner Eilert wrote: > > Am 15.03.2012 10:12, schrieb Cogier: >> >> I have a barcode reader that will sent the result of a scan to any text >> editor, or word processor as it emulates a keyboard. >> >> What I can't seem to do is get Gambas to read the string pr

[Gambas-user] Keyboard input help requested

2012-03-15 Thread Cogier
I have a barcode reader that will sent the result of a scan to any text editor, or word processor as it emulates a keyboard. What I can't seem to do is get Gambas to read the string produced, it must be similar to reading a file but all my efforts so far have failed. Any help would be appreciat