Hi Frends.. Again me.. :

I have some question

please help me this.
I watched video that is from Microsoft How I Learn Videos name is How Do I Develop MFC Applications with Visual Studio..
He create a dialog class and there is a textbox and a label and an ok button in dialog class..Then He create variable for textbox and dialog class's reference is added in DotsView.cpp file.
then he use a code like below codes:
CDotSizeDlg dialog;
dialog.m_nDotSize = m_nDotSize;
dlg.m_nDotSize(int) is textbox's variable bu other is CDotsView's variable(int)..
I dont understand that when I say dlg.m_nDotSize(int)how do compiler understand it is textbox's text property
I cannot explain

for example I write above code in c#
int dotsize=9;
Form1.txtbox.text=dotsize.ToString();
I write this namely especially I explain clearly I give value to Textbox'ın text property this is not denote text property in c++