0
votes
1answer
85 views

Winapi radio button bevahivour

I have created a custom image drawing checkbox in WTL and I am now trying to create a custom image drawn radio button, how does the radio button work, when a user cliks one button to select it how ...
2
votes
1answer
139 views

How to add Classes that use MFC to an ATL project?

I'm writing a .NET profiler (a DLL) and I'm using ATL. I'd like to add some classes that use MFC to my project but I got many errors however those classes work fine with an MFC project. I tried to ...
0
votes
1answer
84 views

Legacy MFC cross-thread exception in CSimpleString

I have an old legecy ATL/MFC application with two threads, the main Window-Thread and a Render-Thread. My problem is I have random, access-violation errors related to a CSimpleString; i.e. access ...
1
vote
1answer
89 views

How do you load data into an attributed database class generated by the MFC application wizard?

Using the MFCApplication wizard in Visual C++ 2012, if "Generate attributed database class" is checked, a header with some special syntax (attributed C++ classes) are generated, which look like this: ...
0
votes
1answer
104 views

How to handle Pointer Truncation in ATLMFC Include files?

In the process to port my current 32 bit application to 64 bit, I have added the compiler option /we4302 (Refer the SO Question Clarification: Porting 32 to 64 bit and the suggested answer by Hans ...
4
votes
3answers
170 views

ATL::CImage appears to misrepresent per-pixel alpha images on certain devices

I am having a problem making alpha images print to a printer device context (real or XPS document writer). They work great on the screen context and in print preview but when I print to file or to the ...
3
votes
3answers
244 views

How to convert ANSI byte to Unicode string?

I have an vector<BYTE> that represents characters in a string. I want to interpret those characters as ASCII characters and store them in a Unicode (UTF-16) string. The current code assumes ...
0
votes
0answers
57 views

Modern ATL OutOfProcess Servers with MFC Support

I have been trying to follow an MS Knowledgebase article that should allow me to have an ATL COM Object but use MFC support. The article hints that post VC6 there is a change in steps, however it ...
0
votes
0answers
72 views

assertion failed when CDHtmlDialog::DoModal() is invoked

I have a class derived from CDHtmlDialog and overwrite its OnDocumentComplete method() (it's empty now) a "Debug assertion failed" popup appeared when using following code to create a new derived ...
0
votes
2answers
121 views

How to get detail error info from E_FAIL?

When I use ATL in MFC Application(Don't ask me why, just because I like), sometimes I got the error code: E_FAIL. However, it's almost useless for me to locate the specific reason. I have googled so ...
1
vote
1answer
161 views

Static link to ATL always fails

I use some ATL functions to create a Media control, but it seems that I can only use Dynamic link to ATL option. When I switch to Static link to ATL, I just can't create the control successfully. I'm ...
0
votes
0answers
117 views

how to call CDHtmlDialog::GetDHtmlDocument after dom is loaded?

I call CDhtmlDialog::GetDHtmlDocument() in CDhtmlDialog.OnInitDialog(), but I found the return values is NULL. However if I put GetDHtmlDocument() in a button clicking handler, the returned ...
1
vote
1answer
94 views

How to detect if W2A conversion is fully successful

Here you can see that when you convert from Wide to Narrow some symbols may be replaced by ?. How to detect those cases when W2A conversion is applied on a string. Round trip conversion is a way, but ...
0
votes
1answer
232 views

MFC .dll debug assertion

I am trying to create a shell extension but I'm getting a debug assertion at this line of code: _AFXWIN_INLINE HINSTANCE AFXAPI AfxGetResourceHandle() { ASSERT(afxCurrentResourceHandle ...
0
votes
1answer
226 views

convert COleDateTime to ticks or integer representation

how to convert COleDateTime to some sort of integer representation which can be easily converted back.
0
votes
1answer
222 views

Custom draw CProgressBarCtrl win32

I want to have a custom progress bar control, for example showing some moving oblique lines or like this or drawing an image inside the progress bar control. I 've searched the web and some examples ...
0
votes
0answers
71 views

ATL : marshalling COleControl event source interface(MFC) to ATL client in a different process

I need help on marshalling an COleControl event source interface(MFC) to ATL client in a different process. Please give me a small code example how I do implenent the needed code and where. I'm ...
0
votes
0answers
120 views

Work with ATL OLE DB Consumer, insert and get data

I have consumer(class) generated by ATL OLE DB Consumer. CProduct m_products; <---- that's a object(Represents table in DB); Like this I try to show all data in DB CoInitialize(NULL); hr = ...
1
vote
1answer
153 views

Intercept WM_COMMAND (sent from an accelerator) on Internet Explorer_Server (IWebBrowser2)

I need to intercept the Paste message that is being sent to my CHtmlView object. According to Spy++, it's being sent as a WM_COMMAND message - but also according to Spy++, the message isn't being ...
1
vote
1answer
217 views

WinApi, ATL creating context menu function handler

The code below creates a window, implements a CListViewCtrl and tries to make a context menu with 3 options: new, edit & delete. class CGuiView : public CWindowImpl<CGuiView, CListViewCtrl> ...
-7
votes
1answer
149 views

How to Read and write into/from a text file?

Please correct the below code:only. file already contains entries : 1st row username; 2nd row password. checkbox status required to write to the third line and need to read or alter only the ...
-1
votes
1answer
145 views

Alternative for MFC functions in c++?

Alternative for MFC AfxIsValidAddress in c++ ?
-1
votes
1answer
312 views

ATL COM DLL registration on Window 7 failed to update CLSID section but TypeLib works

We are working on a ATL COM DLL migration project migrating code from VC++6 to VC++10 and the object_map failed to load up. It is basically same as problem encountered by swapnil_shinde here The ...
2
votes
1answer
102 views

Get modifiable TCHAR* from element of CStringArray

Here is my attempt and error: code: TCHAR* pszDisplayName_I; //$I .. file TCHAR *pDollar = NULL; pszDisplayName_I = ((CString)saSursa.GetAt(i)).GetBuffer(); pDollar = ...
0
votes
1answer
156 views

CComBSTR memory management

I am using CComBSTR in below scenario, void MyDlg::OnTimer() { ...... CComBSTR statusString1 = ::SysAllocString(_T("Test")); .... } The timer will get executed with in each 5 ...
0
votes
1answer
112 views

compiler errors in atlconv.h,atliface.h in VC MFC program

I have a VC++ MFC COM component developed in VC++6.0 earlier. Now my pc has installed with VS 2005 and VS 2010. Now I have a new changes to my old code which i built in VC++6.0, I have opened ...
8
votes
2answers
705 views

Adding MFC support to a Qt project

I have a Qt project and would like to use an external library that includes "afxstr.h". Problem is that whenever I compile after linking to the lib and including their header, I get an error: #error ...
-3
votes
1answer
211 views

Transfer c# code into c++ (Microsoft c++) version [closed]

I need to translate this code into c++ (microsoft c++ ATL/MFC)project. var ticks = System.DateTime.Now.Ticks; byte[] c = BitConverter.GetBytes(ticks); byte[] ...
2
votes
1answer
284 views

How retrieve ticks with same format like DateTime.Ticks in C++ ATL/MFC

Is It possible get ticks number with same format like DateTime.Ticks .NET object, that is in 100ns units, in C++ ATL or MFC?
1
vote
1answer
551 views

Active-X control fails to load in web page

I followed the instructions given in this link http://support.microsoft.com/kb/167158 for packing my ActiveX control. It works fine in my development machine. When it is accessed in some other machine ...
1
vote
1answer
610 views

IDispatch::Invoke _NewEnum on JScript Array not working in IE9

I have an ActiveX component which receives byte array from javascript and process it. I wrote the following code and it worked for IE7 & 8 but in IE 9 it is failing while i call IDispatch::Invoke ...
0
votes
1answer
150 views

Error in Passing a JavaScript string to an ActiveX Control

I'm writing an ActiveX control to embed inside an Internet Explorer page, and I'm having trouble passing a string to an ActiveX method from inside JavaScript. I am using MFC activex control and my ...
0
votes
1answer
75 views

Creating installer for ATL Dll

I have created a ATL Dll to be invoked by the javascript code based on this advice Now i need to create a setup project and signing it with digital certificate. I used the utility makecab.exe with ...
-1
votes
1answer
307 views

Implementing ActiveX Control for web browser

My requirement is to develop a ActiveX control which can send the byte stream to serial port. The ActiveX control should expose only one function like SendData(char* data, int nLen, int nPort) This ...
0
votes
1answer
88 views

Fatal error while i build my activex control

I have created an activex control using mfc and added the control to a dialog application. It compiled fine but when i modify the activex control code and build it, i am getting an error message ...
0
votes
1answer
257 views

Extract CString between tags

How can I extract a CString between two tags ? <tag1>My Text</tag1> I don't want to calculate the start and end position then use Mid, maybe there is another easier method using STL ?
1
vote
1answer
243 views

What is CTime (Is there any) 32bit analog?

I found there is ctime and _ctime_32 in the <time.h> but also ctime is not CTime. Is there CTime 32 bit analog? Or maybe something alike 32bit CTime with __time32_t. I've got compatibility ...
2
votes
5answers
1k views

Shell Namespace Extension. C#. C++, MFC, ATL ¿what to use?

We need to create a Shell Namespace Extension. I left windows programming in 2005, that time I had to create simple shell extensions, but built very complex COM servers (in-process and out-of-process) ...
0
votes
1answer
253 views

Adding ATL support to existing mfc application

I want to implement MFC Docking Framework in my existing mfc application I have taken same trial, but it gives me assertion like before execution of my project. In output window a text appears like: ...
0
votes
0answers
108 views

How to save Outlook selected messages

I have created an Outlook 2010 addin and I'm trying to save the selected messages to files, but I get an compiler error, and I do not know how to convert LPDISPATCH to _MailItem. Any hints, ...
1
vote
1answer
636 views

Can't get the handle of a Cwnd Class in MFC Windowless Activex?

I have asked two questions earlier about this and for each post there was some solutions i tried them, but the problem still exist. My first question was : why a windowless Activex does not return ...
19
votes
3answers
3k views

What's the fundamental difference between MFC and ATL?

tl;dr: Assuming I am only using them for "normal" GUI programs (no COM, no ActiveX, nothing fancy), what is the fundamental difference I will see between ATL and MFC, to help me figure out which one ...
3
votes
2answers
512 views

Should I use CString, basic_string<TCHAR>, or something else with ATL/WTL?

I've only learned a little bit of ATL in the last couple of days (after realizing how much pain pure Win32 is) and also learned about WTL and MFC, and from what I see, there are quite a few different ...
1
vote
3answers
2k views

Conversion from CString to char*/TCHAR*

I am well aware of techniques to convert CString to a C-style character. One of them is to use strcpy/_tcscpy, and others include using CStrBuf. The problem: char Destination[100]; CStringA Source; ...
1
vote
3answers
2k views

Create CImage from Byte array

I need to create a CImage from a byte array (actually, its an array of unsigned char, but I can cast to whatever form is necessary). The byte array is in the form "RGBRGBRGB...". The new image needs ...
0
votes
2answers
833 views

Using MFC and ATL libraries without Visual Studio

My question is if I can use MFC and ATL libraries that come with PSDK Windows Server 2003 R2, without Visual Studio. I mean only at the command prompt with BCC32.exe or CL.exe? I have found MFC and ...
5
votes
1answer
1k views

How do I convert an ATL/MFC CString to a QString?

Given the encoding of the project is probably Unicode (but not for sure) what is the best way of converting ATL::CString to QString? What I have thought of is this: CString c(_T("SOME_TEXT")); ...
0
votes
2answers
125 views

How do I get a complete list of the classes in MFC and ATL?

I need for documentation purposes the list of all classes public available in MFC and in ATL. How can I build this list without copy and paste from all header files?
0
votes
2answers
316 views

Language for non-unicode programs change ini reading

I've a non-unicode application which is using unicode versions of the ini reading functions like GetPrivateProfileSectionW and GetPrivateProfileStringW. The program is working well when "Language for ...
1
vote
1answer
133 views

reading jpeg file based on Mirror Effect,Brightness and zoom Level

I am working on the gateway Simulator where Simulator will stream image/video to Data center I have JPEG file for 30 min(lot of individual JPEG images). Data Center Center can request video/Image ...

1 2