Re: [Gambas-user] webbrowser

2009-04-28 Thread jbskaggs
What I do is to save the html to a tmp file and use rich text to manipulate then reload. Not elegant but works. JB glenn-65 wrote: > > can someone please tell me how to get the html from the webbrowser > control.it is s easy in VB6 but immposible with gambas > webbrowser control.i do n

[Gambas-user] Printing from a PDF

2009-04-28 Thread richard terry
There seems no property to print from a pdf, no example of printing code in the pdf example. I wondered if this was possible. Thanks. richard -- Register Now & Save for Velocity, the Web Performance & Operations Confe

Re: [Gambas-user] Fwd: Need help on treeview

2009-04-28 Thread Fabien Bodard
hi olivier Thank you for you help and this is the correct code now : Public Sub WalkOnTree() TreeView1.MoveFirst() While TreeView1.Available ' ***Do what you want here* Print TreeView1.Item.Key ' If TreeView1.MoveChild() Then

Re: [Gambas-user] webbrowser

2009-04-28 Thread Rob
On Tuesday 28 April 2009 15:25, glenn wrote: > can someone please tell me how to get the html from the webbrowser > control.it is s easy in VB6 but immposible with gambas > webbrowser control.i do not wish to have to highlight then paste as > this sucks. I just looked in the WebBrowser co

Re: [Gambas-user] Fwd: Need help on treeview

2009-04-28 Thread linus
Hi, This my code. I hope that you search for your project: Public sub Compte_Item() DIM KEYSAV as Integer ColumnView1.MoveFirst() WHILE ColumnView1.Available KEYSAV = ColumnView1.Item.Key ' Do what you want here IF ColumnView1.MoveChild() THEN 'PRINT "No child"

Re: [Gambas-user] webbrowser

2009-04-28 Thread Mr. Robert
I don't know much about this unfortunately, but I must admit, i LOVE VB6. I mean, i'm a c/c++, & php programmer mostly, but vb4 is the first ide i used since starting with basic at age 11, and vb6 is my favorite of all of the M$h!!T vs editions. .net is an absolute joke just write a custom cont

[Gambas-user] Need help on treeview

2009-04-28 Thread Fabien Bodard
Private Sub Filter() Dim s As String With $hTreeView .MoveFirst While .Available $hFltCV.Add(.item.Key, .item.Text, .Item.Picture) Print .Key If Not .MoveChild Then Print .Item.Count Filter() .MoveParent Endif .MoveNext

Re: [Gambas-user] Problems compiling under Ubuntu 9.04

2009-04-28 Thread Fabien Bodard
there is no kde3 devel package in Ubuntu 9.04 and this is the problem ! 2009/4/28 Jussi Lahtinen : > Thank you for information! > But I'm just wondering if it's possible to install kde3 libs to 9.04..? > With other words, can you have kde3 and kde4 together, and use Gambas > only with kde3? > > Is

[Gambas-user] webbrowser

2009-04-28 Thread glenn
can someone please tell me how to get the html from the webbrowser control.it is s easy in VB6 but immposible with gambas webbrowser control.i do not wish to have to highlight then paste as this sucks. thanks glenn very close to using VB6 as i have been trying for weeks to do this -

Re: [Gambas-user] Problems compiling under Ubuntu 9.04

2009-04-28 Thread Jussi Lahtinen
Thank you for information! But I'm just wondering if it's possible to install kde3 libs to 9.04..? With other words, can you have kde3 and kde4 together, and use Gambas only with kde3? Is there intention to merge gb.qt and gb.qt4 in future? Jussi On Tue, Apr 28, 2009 at 09:21, Fabien Bodard