Re: [Gambas-user] System.User question

2012-07-26 Thread rocko
Ahh I see now, thanks. On Thu, 2012-07-26 at 17:35 -0300, Sebastian Kulesz wrote: > "Print System.User.Name" should do. To access a property of this > virtual class you can do: > Print System.User.[PROPERTY] > > > On Thu, Jul 26, 2012 at 5:30 PM, rocko wrote: > > It returns a virtual object no

Re: [Gambas-user] System.User question

2012-07-26 Thread Sebastian Kulesz
"Print System.User.Name" should do. To access a property of this virtual class you can do: Print System.User.[PROPERTY] On Thu, Jul 26, 2012 at 5:30 PM, rocko wrote: > It returns a virtual object not a string. > > I checked the docs on virtual class/objects but still I'm > a bit clueless on how

Re: [Gambas-user] System.User question

2012-07-26 Thread rocko
It returns a virtual object not a string. I checked the docs on virtual class/objects but still I'm a bit clueless on how to interact/print them. On Thu, 2012-07-26 at 21:51 +0200, Tobias Boege wrote: > On Thu, 26 Jul 2012, rocko wrote: > > I'm trying to print the user by using 'System.User' but

Re: [Gambas-user] System.User question

2012-07-26 Thread Tobias Boege
On Thu, 26 Jul 2012, rocko wrote: > I'm trying to print the user by using 'System.User' but I am > getting a 'mismatch' error. > > CODE: > iusr = System.User > Print iusr > > This also happens if I use a listbox to list the User. > In a gui app. > > The System.User is a class right? so do have

[Gambas-user] System.User question

2012-07-26 Thread rocko
I'm trying to print the user by using 'System.User' but I am getting a 'mismatch' error. CODE: iusr = System.User Print iusr This also happens if I use a listbox to list the User. In a gui app. The System.User is a class right? so do have to convert it to string to print? Others like System.Ho