[Gambas-user] Sdl.sound and Qt dependencies not satisfiable

2009-03-24 Thread jbskaggs
I am running ubuntu 8.10 64 bit, Gambas 2.7 (highest packaged for 64bit 8.1). I add the gb.sdl.sound and now cannot install packages because I get Dependencies not satisfiable for gb.sdl.sound. So I figured maybe I need to add gb.sdl but I can't because my program is qt based and it says qt and

Re: [Gambas-user] My first rodeo in using the network component

2009-03-24 Thread Werner
M0E.lnx wrote: > So i've decided to try out the network component in gambas. > > I'm trying to get a listing of the contents of an FTP URL > so I'm using a FTPclient object. > I've set it's .URL > and since it's anon access, I figured I'd leave the user and pass properties > empty. > > >From what

Re: [Gambas-user] Printing direct to printer

2009-03-24 Thread Steven Drinnan
Home use the draw cmd. Each object has it's own x,y position. see the example below IF Printer.Setup() THEN RETURN 'You need to set up your printer first. Draw.Begin(Printer) ' Initializes the draw Draw.Text(TextArea1.Text, 200, 200) ' Prints the contents of a TextArea in the upper left hand co

Re: [Gambas-user] My first rodeo in using the network component

2009-03-24 Thread M0E Lnx
How exactly do you do this? What I need is to get the listing of a FTP directory and analyze it.. I can do that in gambas code, but I thought I could use the net component to get the listing. Would you mind explaining how your method works? ---

Re: [Gambas-user] My first rodeo in using the network component

2009-03-24 Thread Olivier Cruilles
Hi, I don't use the FTP component but I do FTP transfert by building an FTP command file and I use it by the unix command line FTP command. It's not really interactive and It's necessary to analyse the ftp command log result but It work in any case. Olivier Cruilles Mail: linu...@club-inter

[Gambas-user] My first rodeo in using the network component

2009-03-24 Thread M0E.lnx
So i've decided to try out the network component in gambas. I'm trying to get a listing of the contents of an FTP URL so I'm using a FTPclient object. I've set it's .URL and since it's anon access, I figured I'd leave the user and pass properties empty. >From what I read in the documentation, I

[Gambas-user] Printing direct to printer

2009-03-24 Thread richard terry
I wondered if anyone could show me how to print direct to a printer at co-ordinates x-y I have to a sheet divided into four sections (not quarters), the top two are 2/3 of the page height, and I need to print to exactly specifica locations on an A4 page. Any help appreciated. Richard ---

[Gambas-user] Ugly gtk warnings with tabstrip object

2009-03-24 Thread M0E.lnx
I Just noticed when I added a tabstrip to my form, when the form loads I see this output on the terminal (speedy:14712): Gtk-WARNING **: gtk_widget_size_allocate(): attempt to allocate widget with width -5 and height 0 This appears to be related to the tabstrip only. If I remove the tabstrip fr

Re: [Gambas-user] Dynamic objects

2009-03-24 Thread M0E Lnx
I have no experience with mysql at all, but you can easily create this textbox PUBLIC SUB Read_DBASE() DIM sList as string DIM sResults as String[] DIM tb as TextBox DIM sItem as String DIM i as integer dim y as integer ' This is where you get your values from mysql and let's assume you put them

[Gambas-user] Dynamic objects

2009-03-24 Thread Rodney Rundstrom
I wish to create objects in code. For example I wish to create a textbox and populate it from a mysql table. Repositioning it in code each time. The number of instances would depend on the Number of records in the table. I then need to index through the items to reset the names from time to time.