Started experimenting with classes in TwinBASIC. Found two minor issues so far:-

  • Intellisense doesn't work with Handles clause.
  • Application crashes if you try to assign an object to an object variable without using Set:-
    Code:
    m_tc = New TestClass(900) 'Crashes
    Code:
    Set m_tc = New TestClass(900) 'Works