GetModuleFileName API
it's my pleasure to make friend with you.
GetModuleFileName API
it's my pleasure to make friend with you.
no way. open the file with windows api into the memory instead of opening it with office interface
it's my pleasure to make friend with you.
DLL injection
it's my pleasure to make friend with you.
check your localhost port in the class CInternetSession.
it's my pleasure to make friend with you.
I had written a case which rendered a wmv file and grab picture in the grabber filter years ago. It work well. If you need the source codes, please contact to me. I will send you. my MSN: zhu_lin4103@126.com
it's my pleasure to make friend with you.
type:IMAGE
it's my pleasure to make friend with you.
you can contact me , i am from china too. haha msn: zhu_lin4103@126.com
it's my pleasure to make friend with you.
tell me your msn or your email, i will send to you
it's my pleasure to make friend with you.
is the database server on your cp ? mybe the database. and what did your programme do when the memory increased.
it's my pleasure to make friend with you.
what's the format of your video file. does the programme quite whatever source files connect?
it's my pleasure to make friend with you.
i will send you the source codes. MSN: zhu_lin4103@126.com
it's my pleasure to make friend with you.
void CTestDlg::OnBnClickedButtonDlltest()
{
HWND myhWnd = this->m_hWnd;
typedef CDialog * (_stdcall *Connect)(HWND hWnd);
HINSTANCE hinstDLL=NULL;
hinstDLL = ::LoadLibrary("AntiSubmarine.dll");
if (hinstDLL) {
Connect Proc;
Proc = (Connect)GetProcAddress(hinstDLL,"ShowDllDlg");
if (Proc!=(Connect)NULL) {
m_pdlg = (CDialog *)Proc(myhWnd);//in *.h file defines CDialog * m_pdlg;
//if only "Proc(myhWnd)", also the same error;
}
//FreeLibrary(hinstDLL);
}
else {
AfxMessageBox("Not found dll !");
}
return;
}
if you create a modless dialog, don't free the library which include the dialog resource until you destroy the dialog, because that modless dialog is not block like mod dialog. :)
it's my pleasure to make friend with you.
what's the meaning of 'visualization'?
it's my pleasure to make friend with you.
because you free the library after creating a modless dialog, so the error happened.
it's my pleasure to make friend with you.
mark
it's my pleasure to make friend with you.
check whether your SMTP server is open. and what's your smtp function return value?
it's my pleasure to make friend with you.
Suddenly,I aware that i am in the day time and you are in the night,haha... you can see here to find the answer:CDirectoryChangeWatcher - ReadDirectoryChangesW all wrapped up[^]
it's my pleasure to make friend with you.
ok,tell me your email, i will send you soon.
it's my pleasure to make friend with you.
from the msdn about WSAConnect: The lpCallerData parameter contains a pointer to any user data that is to be sent along with the connection request (called connect data). This is additional data, not in the normal network data stream, that is sent with network requests to establish a connection. This option is used by legacy protocols such as DECNet, OSI TP4, and others. Note Connect data is not supported by the TCP/IP protocol in Windows. Connect data is supported only on ATM (RAWWAN) over a raw socket.
it's my pleasure to make friend with you.
Note Connect data is supported only on ATM (RAWWAN) over a raw socket. TCP/IP in Windows does not support connect data.
it's my pleasure to make friend with you.