View Single Post
  #3 (permalink)  
Old 08-08-2007, 12:05 AM
igorgf igorgf is offline
Member
 
Join Date: Aug 2007
Posts: 2
igorgf is on a distinguished road
All the problem is in your access modifier for 'i';

It is so called Default - visible only from within file where class is defined and not accessible for others. If you came from VB - this could be the case that you would assume that default access modifier should be Public if you don't give one... But it is not.... Change to Public or Protected and it will work just fine.
Reply With Quote