Benoit,

   As I expected, the mailing list dropped the project. I made a project
that demonstrates the problem using only two small source files (and NO
libraries, data files, etc.).  Here are the two files.

------------------------------------- Begin MMain.module
----------------------------
' Gambas module file

Public Sub Main()
  Dim Ex As Example

  Ex = New Example
  Print Ex.Data 'This succeeds
  If Ex.Data = "Test" Then Print "OK" 'This fails
End

---------------------------------------End MMain.module
-------------------------------

-------------------------------------Begin
EXAMPLE.class----------------------------
' Gambas class file

Class Example

Public Sub _unknown(...) As Variant

  Return "Test"

End
---------------------------------------End EXAMPLE.class
----------------------------

Hope this is sufficient.

gwalborn





Gary D. Walborn
gwalb...@gmail.com
------------------------------------------------------------------------------
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security 
threats, fraudulent activity, and more. Splunk takes this data and makes 
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2d-c2
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to