Hey, i keep getting the same 5 errors no matter what i do, i get up to 05:14 in this video and i am done, as i do not need to hide anything in form1. But, it keeps telling me that: welcomeform and Form2 are undeclared indentifiers and syntax error on Form2. any help?
@monsterhunter445 yeah i fixed it now thanks, great tutorial by the way, could you help me with something else as i can't find help anywhere. i'm wanting to redistribute my application, but i have no idea how to, i have had a look at what DLLs i need through Depends, but it comes up with hundreds of the little bastards. Could you take me through it step by step? just as you obviously know more than me, i'll put you in my subscribers box too. Thankyou. Again, Amazing tutorial
@WhiteWaterMedia First set your compiler to compile in release mode. On the toolbar you should see Debug and x86 just change that to Release and x86. Then once you have compiled look for the program or DLL in the bin folder. Which is somewhere in your project folder. Then if your program is a .Net program then people will have to .Net framework installed. Just tell your users to to download Visual C++ Redistributable. Which it should be available in the Microsoft website.
@monsterhunter445 urmm, i don't have the compile option, i do, but it can't be clicked, so i can't find the .dll's in the bin folder. Any help with that too?
@monsterhunter445 I CAN' GET ANYTHING TO WORK!! ;__; i wrote EXACTLY as you did in EVERY part but when i click on either the Log In button or the "create account" NOTHING happends ;__; ALL i can do is to click on an Exit Button that i added DDD: Please help me as fast as you can ;(
@kaiokkanonen Private message me and I will give you my email and send me the source code I will evaluate it and tell you what you did wrong because you must have made a tiny mistake. You can also get programming help from my website but you must create an account. Either way will help you.
I have a error saying : Error C1075: end of file found before the left brace '{' at 'c:\documents and settings\#######\os meus documentos\visual studio 2010\projects\login form\login form\Form1.h(3)' was matched
@TheMindWare The reason that occurs is because I am using the magnifier glass while recording that is why the mouse is not exactly where it should be. Anyhow, if I did not use the magnifying glass people would complain that they cannot see what is going on.
@xXScissorHandsXx (->) Is a pointer to a member, while the (.) is a pointer to an object. For example here is pointer to object: struct Point { int x, int y}; Point pt; pt.x = 100; pt.y = 100; Here is an example of pointer to member; Point * pt; // (*) is a pointer, in native c++ while in managed c++ it is a (^) pt->x = 100; pt->y = 100;
Hey, i keep getting the same 5 errors no matter what i do, i get up to 05:14 in this video and i am done, as i do not need to hide anything in form1. But, it keeps telling me that: welcomeform and Form2 are undeclared indentifiers and syntax error on Form2. any help?
WhiteWaterMedia 9 months ago
@WhiteWaterMedia Did you use the #include directive to include both the forms that keep giving you those errors.
monsterhunter445 9 months ago
@monsterhunter445 yeah i fixed it now thanks, great tutorial by the way, could you help me with something else as i can't find help anywhere. i'm wanting to redistribute my application, but i have no idea how to, i have had a look at what DLLs i need through Depends, but it comes up with hundreds of the little bastards. Could you take me through it step by step? just as you obviously know more than me, i'll put you in my subscribers box too. Thankyou. Again, Amazing tutorial
WhiteWaterMedia 9 months ago
@WhiteWaterMedia First set your compiler to compile in release mode. On the toolbar you should see Debug and x86 just change that to Release and x86. Then once you have compiled look for the program or DLL in the bin folder. Which is somewhere in your project folder. Then if your program is a .Net program then people will have to .Net framework installed. Just tell your users to to download Visual C++ Redistributable. Which it should be available in the Microsoft website.
monsterhunter445 9 months ago
@monsterhunter445 Thank you SO MUCH :'D DEFINATELY GOING IN MY SUBSCRIBERS BOX :')
WhiteWaterMedia 9 months ago
@monsterhunter445 urmm, i don't have the compile option, i do, but it can't be clicked, so i can't find the .dll's in the bin folder. Any help with that too?
WhiteWaterMedia 9 months ago
@monsterhunter445 I CAN' GET ANYTHING TO WORK!! ;__; i wrote EXACTLY as you did in EVERY part but when i click on either the Log In button or the "create account" NOTHING happends ;__; ALL i can do is to click on an Exit Button that i added DDD: Please help me as fast as you can ;(
kaiokkanonen 2 months ago
@kaiokkanonen Private message me and I will give you my email and send me the source code I will evaluate it and tell you what you did wrong because you must have made a tiny mistake. You can also get programming help from my website but you must create an account. Either way will help you.
monsterhunter445 2 months ago
I have a error saying : Error C1075: end of file found before the left brace '{' at 'c:\documents and settings\#######\os meus documentos\visual studio 2010\projects\login form\login form\Form1.h(3)' was matched
The # is personal. Can anyone Help me, please
TheMindWare 11 months ago
@TheMindWare This error is not that hard to fix, but basically you have curly brace that is unmatched for example.
if (predicate)
{
}
} // <- This curly brace does not match so remove it.
monsterhunter445 11 months ago
@monsterhunter445 Thanks Man, i'm only starting.
TheMindWare 11 months ago
Would be alot easier to follow guide if your mouse was where you clicked :P
NikiProgrammer 1 year ago
@NikiProgrammer Yeh, the mouse isn't in the right place
TheMindWare 11 months ago
@TheMindWare The reason that occurs is because I am using the magnifier glass while recording that is why the mouse is not exactly where it should be. Anyhow, if I did not use the magnifying glass people would complain that they cannot see what is going on.
monsterhunter445 11 months ago
Custom mouse pointer? That's gay...
Mariuspersem 1 year ago
at 0:12 how you got the box wich says the codes like AcceptButton and all the rest???
rennerkyle 1 year ago
i got errors please help me. visual c++\login system\login system\Form1.h(248): error C2440: '=' : cannot convert from 'System::String ^' to 'bool'
and \visual c++\login system\login system\Form1.h(249): warning C4390: ';' : empty controlled statement found; is this the intent?
and \visual c++\login system\login system\Form1.h(254): error C2181: illegal else without matching if
rennerkyle 1 year ago
@rennerkyle Can you please show me the lines of code that produce those compiler errors?
monsterhunter445 1 year ago
@monsterhunter445 i'll message the codes and everything.
rennerkyle 1 year ago
I don't know why I cannot include form2 in my application.
szigeti32eduard 1 year ago
@szigeti32eduard Did you forget to include the header file by using the preprocessor directive #include.
Example:
#include "Form2.h"
monsterhunter445 1 year ago
@szigeti32eduard
Of course that I did like this but even when I click alt+right arrow I don't see the Form2 on the drop-down menu
szigeti32eduard 1 year ago
your tutorials and amazing :D could you try zooming in a little tho .... its hard to see some letters :/
theslayer29179 1 year ago
Is the passwordtxtbox->Text the same as passwordtxtbox.text?
xXScissorHandsXx 1 year ago
@xXScissorHandsXx
I think that -> mean assignig something to a pointer
Androslav 1 year ago
monsterhunter445 1 year ago