Re: [libreoffice-users] Basic pseudo object code no reachable when defined into a basic library...

2018-07-20 Thread Jean-Francois Nifenecker
Hello Patrick, (response in English that transcripts my private email in French) Le 20/07/2018 à 17:37, Patrick Gelin a écrit : Note : The Erase function call look's to run perfectly ... Why don't you use the usual Set MyObject = Nothing This is just a question. I'm not sure about the

Re: [libreoffice-users] Basic pseudo object code no reachable when defined into a basic library...

2018-07-20 Thread Patrick Gelin
Hi, Thanks-you Jean-Francois for your correction. But it's not enought, the problem is still here ... I finded why : The new operator failed to load pseudo object code into a library from a document's call. It's same problem for GlobalScope library (inter-contener call) or Document library

Re: [libreoffice-users] Basic pseudo object code no reachable when defined into a basic library...

2018-07-20 Thread Tom Davies
Hi :) Oooo there's some value in a nice cuppa T. Regards from a Tom :) On 20 July 2018 at 09:49, wrote: > Hi Patrick, > > typo spotted in the Initialize sub : > > Private Sub Class_Initialize() > _valute = 1 > End Sub > > instead of > > Private Sub Class_Initialize() > _value = 1 >

Re: [libreoffice-users] Basic pseudo object code no reachable when defined into a basic library...

2018-07-20 Thread jean-francois . nifenecker
Hi Patrick, typo spotted in the Initialize sub : Private Sub Class_Initialize() _valute = 1 End Sub instead of Private Sub Class_Initialize() _value = 1 End Sub Best, -- Jean-Francois Nifenecker, Bordeaux -- To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org

[libreoffice-users] Basic pseudo object code no reachable when defined into a basic library...

2018-07-20 Thread Patrick Gelin
Hi, I've got a problem with pseudo object no reachable when defined into library. The error message when I call new is : "This object is not accessible. Invalid object reference." Beloww is the Modul Test into library LibApplication, to define a Test object displaying a "Hello Box" dialog