Re: [Gambas-user] clipboard

2009-06-08 Thread Beren Scott
I think I have solved the issue, basically instead of using clipboard, I'm just going to have a form with an embedded web browser. This way I can cut out the extra stuff. Originally I percieved this as being too hard, but because I wasn't making much in roads on the clipboard, it forced me to inves

Re: [Gambas-user] clipboard

2009-06-08 Thread Doriano Blengino
Beren Scott ha scritto: > The goal of my program is to keep an offline database and use it to plan > out a series of actions which are html based and online. So, the > database is accessed by my program, my program formulates with moderate > user interaction the best course of action. The program c

Re: [Gambas-user] clipboard

2009-06-08 Thread Beren Scott
The goal of my program is to keep an offline database and use it to plan out a series of actions which are html based and online. So, the database is accessed by my program, my program formulates with moderate user interaction the best course of action. The program copies a link to the clipboard, t

Re: [Gambas-user] Confusion in Data Types

2009-06-08 Thread Doriano Blengino
nando ha scritto: > Float and Double is not as simple an explaination as the Int and others. > ... > > Floating point numbers have two parts. > Simplistically: One part is an integer which represents the actual digits in > binary. > The other is the value of the exponent (binary point and not deci

Re: [Gambas-user] clipboard

2009-06-08 Thread Dimitris Anogiatis
Hey Beren, If I may add my 2 cents worth of wisdom, the flow of information in your program is still unknown and it's kinda difficult to understand what you're trying to do... however if I read this correctly (correct me if I'm wrong) > > > > > Take for example, I want to use the > > > > > copied

Re: [Gambas-user] clipboard

2009-06-08 Thread Beren Scott
I'll show you the line of code I'm using, it's currently not functioning correctly, but I'm getting closer I can feel it. dim pasteurl as string dim villurl[] as string dim farmid[] as integer dim z as integer dim c as integer pasteurl = "echo " & villurl[z - 1] & farmid[c - 1] & " | xclip" SHELL

Re: [Gambas-user] clipboard

2009-06-08 Thread Stefano Palmeri
Il martedì 9 giugno 2009 04:45:53 Stefano Palmeri ha scritto: Or if you have a KDE 3 DE you could use: SHELL "dcop klipper klipper setClipboardContents 'hello gambas'" WAIT > Il martedì 9 giugno 2009 04:03:48 Beren Scott ha scritto: > > Is it because technically linux doesn't have a clipboard, a

Re: [Gambas-user] clipboard

2009-06-08 Thread Stefano Palmeri
Il martedì 9 giugno 2009 04:03:48 Beren Scott ha scritto: > Is it because technically linux doesn't have a clipboard, and that > simply put the copy command simply applies a reference to the location > of the item you have copied, and then when you paste, it looks up the > item you wish to paste? >

Re: [Gambas-user] clipboard

2009-06-08 Thread Beren Scott
Is it because technically linux doesn't have a clipboard, and that simply put the copy command simply applies a reference to the location of the item you have copied, and then when you paste, it looks up the item you wish to paste? I guess I am trying to find some type of work around, because the

Re: [Gambas-user] Confusion in Data Types

2009-06-08 Thread nando
Float and Double is not as simple an explaination as the Int and others. You should read a Wiki on floating point storage and issues involving it. What you're attempting to do is a difficult thing because you're getting to the limits of float numbers and straddling the edge of NAN and other wierd t

Re: [Gambas-user] Gambas on Mac

2009-06-08 Thread Joshua Higgins
I'm also interested in this... I'm struggling to find any ports or packages of the required development files. I noticed the message about endianness, is this still an issue even with Intel Macs, or just a PowerPC issue? 2009/6/7 Olivier Cruilles > In fact, all system is managed in backward wit

Re: [Gambas-user] TableViews and Colors

2009-06-08 Thread Stefano Palmeri
Il lunedì 8 giugno 2009 16:25:45 Stefan Miefert ha scritto: > Hello, > > i try to color a tableview row > > when I try this > > TBLname[10,5].bgcolor = color.red > TBLname[10,5].forecolor = color.white > > The colors set but the data in the row disapear > Why? > > How can I change this? > I don't

Re: [Gambas-user] clipboard

2009-06-08 Thread Stefano Palmeri
Il lunedì 8 giugno 2009 17:27:11 Beren Scott ha scritto: > On Mon, 2009-06-08 at 16:47 +0200, Stefano Palmeri wrote: > > Il lunedì 8 giugno 2009 16:03:23 Beren Scott ha scritto: > > > On Mon, 2009-06-08 at 02:44 -0700, charlesg wrote: > > > > Hi, > > > > > > > > Clipboard.Copy(txtItem.text) > > > >

Re: [Gambas-user] clipboard

2009-06-08 Thread Beren Scott
On Mon, 2009-06-08 at 16:47 +0200, Stefano Palmeri wrote: > Il lunedì 8 giugno 2009 16:03:23 Beren Scott ha scritto: > > On Mon, 2009-06-08 at 02:44 -0700, charlesg wrote: > > > Hi, > > > > > > Clipboard.Copy(txtItem.text) > > > > > > rgds > > > > The problem is however that I am currently console

[Gambas-user] TableViews and Colors

2009-06-08 Thread Stefan Miefert
Hello, i try to color a tableview row when I try this TBLname[10,5].bgcolor = color.red TBLname[10,5].forecolor = color.white The colors set but the data in the row disapear Why? How can I change this? -- OpenSolari

Re: [Gambas-user] clipboard

2009-06-08 Thread Stefano Palmeri
Il lunedì 8 giugno 2009 16:03:23 Beren Scott ha scritto: > On Mon, 2009-06-08 at 02:44 -0700, charlesg wrote: > > Hi, > > > > Clipboard.Copy(txtItem.text) > > > > rgds > > The problem is however that I am currently console only, no gui, and I > am getting a non-existent item error on "clipboard". D

Re: [Gambas-user] clipboard

2009-06-08 Thread Beren Scott
On Mon, 2009-06-08 at 02:44 -0700, charlesg wrote: > Hi, > > Clipboard.Copy(txtItem.text) > > rgds The problem is however that I am currently console only, no gui, and I am getting a non-existent item error on "clipboard". Do I have to add any lines of code to fix this? ---

[Gambas-user] Clear moviebox

2009-06-08 Thread Ron
How to clear the contents of a moviebox without destroying, deleting or hiding? Like the status if you placed one on your form without path property filled. Setting .Path to "" or Null doesn't work, it will generate error "file or directory doesn't exists" Thanks. Ron_2nd. --

[Gambas-user] Confusion in Data Types

2009-06-08 Thread KhurramM
I am on ubuntu 9.04, x86, 32bit, gambas 2.12. I have some confusion regarding the following: PUBLIC SUB Main() DIM myBoolean AS Boolean DIM myByte AS Byte DIM myShort AS Short DIM N, myInteger AS Integer DIM myLong AS Long DIM mySingle AS Single

Re: [Gambas-user] clipboard

2009-06-08 Thread charlesg
Hi, Clipboard.Copy(txtItem.text) rgds -- View this message in context: http://www.nabble.com/clipboard-tp23920689p23921133.html Sent from the gambas-user mailing list archive at Nabble.com. -- OpenSolaris 2009.06 is

Re: [Gambas-user] clipboard

2009-06-08 Thread Ron
Laurent Carlier wrote: > Le lundi 08 juin 2009 11:09:26 Beren Scott, vous avez écrit : > >> Sorry to ask this question, but is there any way to copy a string >> directly to the operating systems clipboard? Is there a command to >> handle this? >> >> Beren Scott >> >> >> -

Re: [Gambas-user] clipboard

2009-06-08 Thread Laurent Carlier
Le lundi 08 juin 2009 11:09:26 Beren Scott, vous avez écrit : > Sorry to ask this question, but is there any way to copy a string > directly to the operating systems clipboard? Is there a command to > handle this? > > Beren Scott > > > ---

[Gambas-user] clipboard

2009-06-08 Thread Beren Scott
Sorry to ask this question, but is there any way to copy a string directly to the operating systems clipboard? Is there a command to handle this? Beren Scott -- OpenSolaris 2009.06 is a cutting edge operating system for

Re: [Gambas-user] New name not shown in IDE at first (Gambas2)

2009-06-08 Thread Charlie Reinl
Am Montag, den 08.06.2009, 08:41 +0200 schrieb Rolf-Werner Eilert: > Benoît Minisini schrieb: > >> Just had this again: > >> > >> - an existing form with some gadgets on it > >> > >> - one of the drop-down lists wasn't used yet in code > >> > >> - the first time I type the name of this drop-down li

Re: [Gambas-user] integer / string file IO issue

2009-06-08 Thread Beren Scott
On Mon, 2009-06-08 at 07:19 +0200, Benoît Minisini wrote: > > On Sun, 2009-06-07 at 12:19 +0200, Benoît Minisini wrote: > > > > > So, it's a 64bit issue, is there a fix for this yet? > > > > > > > > I'm not sure, but I guess so. I was working on the networking > > > > component, so I was busy. Now

Re: [Gambas-user] New name not shown in IDE at first (Gambas2)

2009-06-08 Thread Rolf-Werner Eilert
Sorry, just sent an empty answer... Here's the real one: > If you add label etc. and use it first time, like this way; > lblTest.Caption = "Test", you must > write whole "lblTest", autocompletion doesn't provide it. > But next time autocompletion works (screenshot2.png), notice that it > is at low

Re: [Gambas-user] New name not shown in IDE at first (Gambas2)

2009-06-08 Thread Rolf-Werner Eilert
Jussi Lahtinen schrieb: > I have noticed same thing, but only randomly. I tried to demonstrate > it quickly with Gambas 2.10, and I couldn't. > But with Gambas3 (revision 1995 @Ubuntu 9.04 64bit), I can. > > Screenshot from my trash/bug testing project. > Autocompletion provides only Button27_Clic