Hello, so basically i was using a console application with a HWID lock in it, but then i decided to move into Application form (c++, CLR)
i made my design and everything and then i started coding the textbox, but i ran into a problem..
so basically this code on my console application was working fine :
string license;
cin license;
if (Authenticate(license.c_str(), hwid.c_str()))
{
}
then i tried this on the form application :
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e)
{
std::string hwid = GetHardwareID();
if (Authenticate(textBox1->.c_str(), hwid.c_str()))
{
}
}
But here i am getting an error on the dot.
The error says : E0133 | expected a member name.
Well i hope i was clear, if you need any other info just let me know, but yeah i am just stuck at this error for a long time and i haven't found a solution yet..
Hope someone can help me..
Thanks !