[Gambas-user] Issue 227 in gambas: Problem with Drawingarea....

2012-03-31 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 227 by hardware...@gmail.com: Problem with Drawingarea http://code.google.com/p/gambas/issues/detail?id=227 1. Example program Gambas3 ImageViewer shows no Picture.

[Gambas-user] Load hidden file to variable?

2012-03-31 Thread sundar j
I need to load file to a variable which is residing in side a hidden folder. So i tried to load it like If Exist(~/.applicationtempfile/.hiddendir/file) = True Then search = File.Load(~/.applicationtempfile/.hiddendir/file) ... rest of coding ... However obove code does not work. Any help???

Re: [Gambas-user] Load hidden file to variable?

2012-03-31 Thread Sebi
Hi! Try to use User.Home instead of ~. I.e. File.Load(User.Home / /.applicationtempfile/.hiddendir/file) -Original Message- From: sundar j sundar_...@rediffmail.com Date: 31 Mar 2012 15:36:56 To: gambas-usergambas-user@lists.sourceforge.net Reply-To: sundar_...@rediffmail.com,

Re: [Gambas-user] Load hidden file to variable?

2012-03-31 Thread tobi
hi, On Sat, 31 Mar 2012, sundar j wrote: I need to load file to a variable which is residing in side a hidden folder. So i tried to load it like If Exist(~/.applicationtempfile/.hiddendir/file) = True Then search = File.Load(~/.applicationtempfile/.hiddendir/file) ... rest of coding

Re: [Gambas-user] Load hidden file to variable?

2012-03-31 Thread Jussi Lahtinen
Why it doesn't work? It cannot find the file? Or does it give you error message? Jussi On Sat, Mar 31, 2012 at 18:36, sundar j sundar_...@rediffmail.com wrote: I need to load file to a variable which is residing in side a hidden folder. So i tried to load it like If