C / C++ / MFC
|
|
 |

|
I am wondering if someone has used an API or Toolkit to incorporate Anonymous Usage or User Experience into their product.
For exmaple, when you install Visual Studio, it asks if you want to participate in the Installation User Experience to provide feedback to Microsoft regarding your installation experience.
Other product have similar types of options, which basically come down to the application reporting back some information about how the inlstallation was operated, problems encountered, etc.
So if you have used or heard of such an API or toolkit to incorporate such features into an application, please respond.
Thanks.
I need a 32 bit unsigned value just to hold the number of coding WTF I see in a day …
|
|
|
|

|
hi all,
i want to load a png image from resource in picture control.
how can i do this.
thanks.
|
|
|
|
|

|
#include "atlimage.h"
Image* m_pImage;
char *pStr = strTempIMGPath.GetBuffer(0);
int size = MultiByteToWideChar(GetACP(), 0, pStr, -1, NULL, 0);
MultiByteToWideChar(GetACP(), 0, pStr, -1, szFile, size);
strTempIMGPath.ReleaseBuffer();
if (m_pImage != NULL)
{
delete m_pImage;
m_pImage = NULL;
}
m_pImage = new Image(szFile, FALSE);
void CPNGButton::OnPaint()
{
CPaintDC dc(this);
Graphics graphics(dc.m_hDC);
if(m_pImage != NULL && (m_pImage->GetLastStatus() == Gdiplus::Status::Ok))
{
graphics.DrawImage(m_pImage, 0, 0, m_pImage->GetWidth(), m_pImage->GetHeight());
}
}
|
|
|
|

|
i want to load png file from Resources not with using file path of any selected file location.
|
|
|
|

|
I event tried to load the PNG file from the resource. But I failed.
If you find the way, please tell me.
|
|
|
|

|
LPCTSTR szResourceName =MAKEINTRESOURCE(IDB_PNG1);
LPCTSTR szResourceType=_T("PNG");
HMODULE hresModule=AfxGetResourceHandle();
HRSRC hPicture = FindResource(hresModule,szResourceName,szResourceType);
HGLOBAL hResData;
if (!hPicture || !(hResData = LoadResource(hresModule,hPicture)))
{
TRACE(_T("Load (resource): Error loading resource %s\n"),szResourceName);
return ;
};
DWORD dwSize = SizeofResource(hresModule,hPicture);
HGLOBAL hGlobal = GlobalAlloc(GMEM_MOVEABLE | GMEM_NODISCARD,dwSize);
if (!hGlobal)
{
TRACE(_T("Load (resource): Error allocating memory\n"));
FreeResource(hResData);
return ;
};
char *pDest = reinterpret_cast<char *> (GlobalLock(hGlobal));
char *pSrc = reinterpret_cast<char *> (LockResource(hResData));
if (!pSrc || !pDest)
{
TRACE(_T("Load (resource): Error locking memory\n"));
GlobalFree(hGlobal);
FreeResource(hResData);
return ;
};
ULONG ulWritten=0;
ulWritten = 0;
CopyMemory(pDest,pSrc,dwSize);
HRESULT hr = ::CreateStreamOnHGlobal(hGlobal,FALSE,&pStream);
pStream->Write(pDest, dwSize, &ulWritten);
FreeResource(hResData);
GlobalUnlock(hGlobal);
Bitmap oBmp(pStream,0);
m_Image_ics.Load(pStream);
HDC memdc;
CRect rect;
this->GetClientRect(&rect);
HBITMAP hBmp;
oBmp.GetHBITMAP(0, &hBmp);
::SendMessage(png_bnr->GetSafeHwnd(),STM_SETIMAGE,IMAGE_BITMAP,(LPARAM)hBmp);
|
|
|
|

|
Hi,I want to write registry with Non - administrator account In MFC(vs2010),but failed.Can you have any idea to write registry.
|
|
|
|

|
There is a reason that parts of the registry can be only changed by administrators. To store user dependant information use the HKCU (current user) tree where you can write with user privileges.
|
|
|
|

|
In win7 ,When open UAC,it also cannot write registry,how
to avoid
|
|
|
|
 |
|
|
General
News
Suggestion
Question
Bug
Answer
Joke
Rant
Admin