Results 1 to 3 of 3
  1. #1
    Lyoto Machida's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Far away with girls
    Posts
    3,734
    Reputation
    133
    Thanks
    1,621
    My Mood
    Aggressive

    Using Forms in Dlls projects

    I made a dll with a Form in the header folder..
    But how do i check like if(CheckBox->Checked) { etc.. } in the Source File ..I dont know how to use the form in like main.cpp (Source File Folder) to check textboxes, checkboxed etc..?...Hope u understand , thanks...
    Last edited by Lyoto Machida; 05-22-2011 at 12:01 PM.

  2. #2
    proman98's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    Achel
    Posts
    1,024
    Reputation
    47
    Thanks
    81
    My Mood
    Fine
    if you know how to use forms in dll explain me how plx

    on ccplz ( for maplehackers ) they do it all whit forms in dll ask it there if every1 here dont know

  3. #3
    ♪~ ᕕ(ᐛ)ᕗ's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Uterus
    Posts
    9,119
    Reputation
    1096
    Thanks
    1,970
    My Mood
    Doh
    #include "youHeader.h"

    bool ischekced;

    void Check()
    {
    ischecked = CheckedBox1->Checked;
    }
    Well I'm not 100% sure cuz I neber programmed on CRL of C++, but I saw some sources.