This sample works fine in 32 bit (MSC32 and BCC32) but crashes in 64 bit (MSC64 and BCC64). Can you understand why?
#include "Fivewin.ch"
FUNCTION MAIN()
  LOCAL oWnd, oActX
  DEFINE WINDOW oWnd
  oActX = TActiveX():New( oWnd, "Shell.Explorer" )
  oWnd:oClient = oActX
  oActX:Do( "Navigate", "http://www.emagsoftware.it" )
  ACTIVATE WINDOW oWnd
  RETURN NIL