detect that the reference ^ is created

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • W03L
    New Member
    • Mar 2008
    • 4

    detect that the reference ^ is created

    Hi.
    I have the reference to my second form like:
    myForm ^mForm;
    How detect i that this reference is created?

    this way report an error:
    if (mForm!=NULL) ...
  • misza
    New Member
    • Feb 2008
    • 13

    #2
    in managed c++ the equivalent of NULL is nullptr

    best regards,
    M.

    Comment

    Working...