Hello
I have a simple question.
Visual C++ 6.0
m_lpCmdLine are this variable a String variable?
now my problem
I have in m_lpCmdLine this string/text: user pass server
I want to save this in several variables
so that I have
CString v_user = "user";
CString v_pass = "pass";
CString v_server = "server";
mfc 6.0 has not Tokenize method!?
are there another mothod to make the string "user pass server" in parts?
thanks for help
I have a simple question.
Visual C++ 6.0
m_lpCmdLine are this variable a String variable?
now my problem
I have in m_lpCmdLine this string/text: user pass server
I want to save this in several variables
so that I have
CString v_user = "user";
CString v_pass = "pass";
CString v_server = "server";
mfc 6.0 has not Tokenize method!?
are there another mothod to make the string "user pass server" in parts?
thanks for help