Hi, You can use Install Shield. or You can Create one new Setup Project in Visual Studio.
The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V
Hi, You can use Install Shield. or You can Create one new Setup Project in Visual Studio.
The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V
Hi, You better use Tab key. Set the Tab order using Ctrl+D in the Dialog resource.
The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V
Hi, There is no way to make the maximize box invisible if you have minimize box. If you dont want the minimize box also. Then use
cs.style &= ~WS_MAXIMIZEBOX;
cs.style &= ~WS_MINIMIZEBOX;
Now only you will get window without Maximize box and Minimize box.
The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V
Hi, Roget scoltz has given a nice solution. Did you tried that. CString FullPath = _T("C:\\abc\\cd\\as.txt"); CString DirPath; int nPos = FullPath.ReverseFind( _T('\\') ); if( nPos >= 0 ) { DirPath = FullPath.Mid( 0, nPos); } AfxMessageBox(DirPath);
Hi, There you have just specified two folders name. What happened to the file name. Because its SHFileOperation file operation..
Hi, Dont use user defined array in this case. You better use CStringArray. Then you no need to calculate the size of the array. This class is having a member function int GetSize() to get the size of the array.
The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V
Hi, You may be mistaken about CString. You can store a variable in CString object. CString string = "Test String"; If you want to copy CString A to B; Do CString A = "Test String"; CString B; B = A; Thats it..
The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V
Hi, First check did you declared the variable 'str'. Could you please show the function.
The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V
Hi friends, I am doing an application, I have created Tray icon for that application. This application will run in Start up. Now i want to show icon in Microsoft Windows Login window. Please help me..
The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V
Hi, You can change the alignment using SetTextAlign(); pDCMem->SetTextAlign (TA_BASELINE);
The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V
Hi, Use this link.. http://www.codeguru.com/cpp/controls/controls/groupbox/article.php/c5269[^]
The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V
LOGFONT newlf; CFontDialog fd; if(fd.DoModal() == IDOK) { fd.GetCurrentFont(&newlf); setfont(newlf); UpdateData(FALSE); }
The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V
Hi, Use this link.This will be usefull.. http://www.codeproject.com/KB/datetime/dateclass.aspx[^]
The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V
Hi, create a new CFont.
m_Font = new CFont();
m_Font->CreateFont(15,0,0,0,900,0,0,0,0,0,0,ANTIALIASED_QUALITY,0,FName);
use SetFont() like this..
m_Static.SetFont(m_Font);
The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V
Hi, You better use this code..
if (!m\_wndToolBar.CreateEx(this, TBSTYLE\_FLAT, WS\_CHILD | WS\_VISIBLE | CBRS\_TOP | CBRS\_GRIPPER | CBRS\_TOOLTIPS | CBRS\_FLYBY | CBRS\_SIZE\_DYNAMIC) || !m\_wndToolBar.LoadToolBar(IDR\_MAINFRAME))
The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V
Hi, If you give NULL in LPSECURITY_ATTRIBUTES. What is the permission there.. Did you tried like that?
The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V
Hi, In the CreateEx(...) use CBRS_LEFT or CBRS_RIGHT instead of CBRS_TOP. Your Toolbar will be vertical...
The price of anything is the amount of life you exchange for it. Thanks and Regards. SANTHOSH V