var ctrlman = m_Map.GetCtrlMan(); var path = ctrlman.ExpandPathFromRoot("Theme", "TalMap.PMB"); alert("¹ýÁ¤µ¿ Full Path :"+ path);
#include "CXCtrlMan.h" CXCtrlMan ctrlman = m_Map.GetCtrlMan(); CString path = ctrlman.ExpandPathFromRoot(_T("Theme"), _T("TalMap.PMB")); CString msg; msg.Format(_T("¹ýÁ¤µ¿ Full Path : %s"), path); AfxMessageBox(msg);
string path = m_Map.GetCtrlMan().ExpandPathFromRoot("Theme", "TalMap.PMB"); MessageBox.Show("¹ýÁ¤µ¿ Full Path : " + path);
Dim paht As String Path = m_Map.GetCtrlMan.ExpandPathFromRoot("Theme", "TalMap.PMB") MsgBox ("¹ýÁ¤µ¿ Full Path :" & Path)