Re: [Gambas-user] Printing, don't see my mistake

2012-10-25 Thread Fabien Bodard
2012/10/25 Gregor Burck : > Hi, > > I don't understand how to print in gambas3. Even when I look at the example I > don't find my mistake, I got always a blank page: > > Public Sub AnsichtDrucken() > > If prt.Configure() Then Return > > Me.Enabled = False > Inc Application.Busy > prt.Print >

[Gambas-user] Printing, don't see my mistake

2012-10-25 Thread Gregor Burck
Hi, I don't understand how to print in gambas3. Even when I look at the example I don't find my mistake, I got always a blank page: Public Sub AnsichtDrucken() If prt.Configure() Then Return Me.Enabled = False Inc Application.Busy prt.Print Dec Application.Busy Me.Enabled = True End