Hi, I found a lot of articles about editing list view subitems, but i need something about editing these subitems when i'm using virtual lists... Does anyone has anyideas about it? Thank u very much, Dirso
Edilson Vasconcelos de Melo Junior
Posts
-
Editing list view subitems -
Outlook 2000 AutomationHi, Does anybody have any sample about Automation with Outlook 2000? I need something like: 1) get what messages are stored inside each folder, 2) delete a message 3) read a stored message and so on... Thank u very much, Dirso
-
SMTP serverA commercial code could be used, but i don't need everything of ur library. If u have a cheaper solution or a trialware, please tell me. Thank u very much, Dirso.
-
SMTP serverHi, I do need to build a SMTP server. If u have any ideas, please let me know. Thank u very much, Dirso.
-
SMTP serverHi, I need to implement a SMTP server in my appl. Does anyone here have done this? Please, any source codes or ideas would be very useful. Thank u very much, Dirso.
-
Time trial?Thank u very much!!!!! Ur work is really GREAT!!!! It's not a 5 it's a BIG 1000!!! Dirso
-
Time trial?Hi, Is there any classes or ActiveX control that can make my appl time trial? And what about adware? Thank u very much, Dirso.
-
How to know if anybody received, red or deleted my emailHi, Thank u very much for your attention. This helped me very much!! But i still need your help. Is there anyway (some trick) to know when the user deletes my email and/or if he forward it to anyone else (and who was this)? Thank u very much, Dirso
-
How to know if anybody received, red or deleted my emailHi, I need to send emails for registered clients and i wanna know what happened with these e-mail. I mean: i need to attach a script or something else to the send emails and when the client receive the email an note (event datetime) is sent back to me, the same thing must happen when the client read and when he delete the email. Is there anyway ro do that? Thank u very much, Dirso.
-
Start PageThank u very much!!!!!!
-
CTime ASSERTHi, i have this piece of code >>>>>>>>>>>>>>>>>>>>>> struct CAddInfo { CAddInfo(){} CAddInfo(const CString& szName, DWORD iSize, bool bDir = false) :m_szName(szName), m_iSize(iSize), m_bDir(bDir){} CString m_szName; bool m_bDir; DWORD m_iSize; }; typedef CList CAddInfoList; CAddInfoList list; void CJRZipArchive::AddFolder(CString szFolder) { try { szFolder.TrimRight(_T("\\")); CFileFind ff; BOOL b = ff.FindFile(szFolder + _T("\\*")); CStringArray folders; while (b) { b = ff.FindNextFile(); if (ff.IsDots()) continue; if (ff.IsDirectory()) { folders.Add(ff.GetFilePath()); } else { CAddInfo ai; ai.m_szName = ff.GetFilePath(); CFileStatus fs; if (CFile::GetStatus(ai.m_szName, fs)) { ai.m_bDir = false; ai.m_iSize = fs.m_size; list.AddTail(ai); m_iTotal += fs.m_size; } } } for (int i = 0; i < folders.GetSize(); i++) { list.AddTail(CAddInfo(folders[i], 0, true)); // add the folder before adding its files // it is not needed to add the root folder AddFolder(folders[i]); } } catch (CException* e) { e->ReportError(); e->Delete(); } catch(...) // thrown in the STL version { AfxMessageBox("Error"); } } <<<<<<<<<<<<<<<<<<<<<<< Sometimes, this causes an ASSERT in the line 40 of timecore.cpp (the last ASSERT of a CTime constructor)... Does anyone know if there is any situation of a file the should cause it? Thank u very much, Dirso.
-
Start PageHi, I wanna put a link at the front page of web site that the user should click to set my website as his IE Start Page. I know how to do it using .reg files, but i do wanna use it. Can anybody help me? Thank u very much, Dirso