Re: [Gambas-user] Yet another simple printing question !

2014-03-21 Thread Vasilis Kanatas
Thanks Tobi!! You are right gb.report is a very flexible way to print reports! I used to work with Gambas 2 and could not imagine it! I had to add gb.report element to my project though! I am not very fond of discovering everything by myself! We all implement our ancestors experience in one way

Re: [Gambas-user] Yet another simple printing question !

2014-03-21 Thread Tobias Boege
On Fri, 21 Mar 2014, Vasilis Kanatas wrote: > Thanks Tobi, > > I tried to find a solution in order to print Labels that I placed into a > ScrollArea. > It is obvious that it only prints the background of the ScrollArea and not > the Labels or Buttons or anything other that I put there in design t

Re: [Gambas-user] Yet another simple printing question !

2014-03-21 Thread Vasilis Kanatas
Thanks Tobi, I tried to find a solution in order to print Labels that I placed into a ScrollArea. It is obvious that it only prints the background of the ScrollArea and not the Labels or Buttons or anything other that I put there in design time. So the problem remains! How can I place data on a

Re: [Gambas-user] Yet another simple printing question !

2014-03-21 Thread Tobias Boege
On Thu, 20 Mar 2014, Vasilis Kanatas wrote: > Thanks Rolf-Werner, > > I tried > Private $hImage As New Image > and had the same result ! Printing white page! > > What I want is to print the labels of a form or ScrollArea!! > > I also tried to change the *Printing Example of Gambas 3* to make it

Re: [Gambas-user] Yet another simple printing question !

2014-03-20 Thread Vasilis Kanatas
Thanks Rolf-Werner, I tried Private $hImage As New Image and had the same result ! Printing white page! What I want is to print the labels of a form or ScrollArea!! I also tried to change the *Printing Example of Gambas 3* to make it work for my issue. Here's what I did (3 steps): 1..I've c

Re: [Gambas-user] Yet another simple printing question !

2014-03-20 Thread Rolf-Werner Eilert
Vasilis, I've got to leave the office now, but at a quick glance: > Private $hImage As Image Shouldn't this be As New Image? > > > Public Sub Form_Open() > Me.Center > Try $hImage = Me.Grab.Image > End > > Public Sub Printer1_Draw() > >Dim hImage As Image And maybe the same here?

[Gambas-user] Yet another simple printing question !

2014-03-20 Thread Vasilis Kanatas
Hello, I just jumped into Gambas 3 and my printing procedures that worked fine in Gambas 2 do not work anymore! Thus, my question is easy. I want to print a form as it is! With its labels etc.. I have looked the examples and managed to make a printing routine that only prints white paper!! Why? Her