Tagged Questions
1
vote
1answer
47 views
Porting multithreaded window ce app to win32
I am trying to do the opposite of the usual. We have a legacy WinCE app which now needs to be ported to the Win32 platform, so that it can work as a simulator of the actual app.
I have managed to ...
-1
votes
1answer
114 views
C WinAPI and C++ MFC resource
I would like to ask you guys if you know what are the best(comprehensive) books for the following topics:
C Win32/WinAPI programming;
Book or Catalog of windows functions in windows.h and all the ...
5
votes
4answers
177 views
why the type castings (UINT)(void*)(DWORD) are needed? [closed]
This is a default HashKey function in MFC's CMap class.
AFX_INLINE UINT AFXAPI HashKey(ARG_KEY key)
{
// default identity hash - works for most primitive values
return ((UINT)(void*)(DWORD)key) ...
1
vote
2answers
179 views
I can't use FindWindowEx() to find control
I want to open Microsoft Security Essential program and click Scan now button with VC . I can find window but Can't find control. This is my code when I run this code it show Control not found . I try ...
0
votes
0answers
51 views
Rats rule 'fixed size global buffer' cannot be handled
I am trying to verify this rule through the code but with the two following implementations rats still finds the code vulnerable, below are the two implementations:
if (strCode.GetLength() < ...
0
votes
0answers
90 views
How to read String from console with VC?
I want to read string from command line. I open some program which run in command line and I have to wait for that program process. So , I don't know when process success .I can't type next command if ...
0
votes
1answer
70 views
How to use WriteConsoleInput() in MFC?
I can use WriteConsoleInput() in console application. But when I try to use writeConsoleInput() in MFC it not type any thing in command window. This's my code.
DWORD WINAPI test(LPVOID lp)
{
...
2
votes
1answer
102 views
How to add a virtual folder in Windows with C++
I'm not sure if I'm using the correct terminology. Say, the SkyDrive app from Microsoft creates a virtual "Skydrive" folder on a local computer. What I'm curious to know is how to add such virtual ...
0
votes
1answer
87 views
How is this folder redirection to a drive letter done?
I was wondering how does a utility like this one redirects a folder to a driver letter?
PS. I need this done with C/C++/MFC.
1
vote
3answers
230 views
C++ Windows MFC Concurrency: Get thread to wait until particular state achieved
On Windows MFC concurrency, how do I tell my current thread to wait until a particular state is achieved? The only way I can think of at the moment is to perform periodical Sleep and check the state ...
0
votes
1answer
64 views
mfc buttons will display incompletely if adding two buttons at runtime
CButton *btn = new CButton();
btn->Create("btn", WS_CHILD|WS_VISIBLE|BS_PUSHBUTTON, CRect(0,0,50,50), this, 1234);
btn = new CButton();
btn->Create("btn", WS_CHILD|WS_VISIBLE|BS_PUSHBUTTON, ...
2
votes
1answer
286 views
Cannot convert char[33] to LPCTSTR or if I typecast to LPCTSTR desired results not getting
I am trying to use listbox.Addstring(); in MFC application which will take LPCTSTR.
I am passing a variable of char array that's 33 chars long.
...
1
vote
0answers
115 views
Real world applications that developed C++ MFC or Qt [closed]
I am a fan of C++ MFC and curious what real world commercial applications were developed in Visual C++ MFC. Also, what is the situation of C++ MFC Framework now? Do you think is it abandoned by ...
0
votes
1answer
43 views
warning LNK4092: shared writable section contains relocations
I use Visual Studio 2008 and have a question regarding this warning.
In one of our libraries, we set the "Fixed Base address" flag (/FIXED) and have a fixed base address defined.
We declare a shared ...
-4
votes
1answer
99 views
Can I create process without use standard api function?
Is there any way to create process without using CreateProcess or ShellExecute , WinExec Api Function?
0
votes
0answers
60 views
CDC capture fails on citrix server
I am working on VC6 platform and have written a code for capturing CDC in to png. While running this code snippet from desktop and on the network drive this code is working fine and generating the ...
0
votes
3answers
63 views
A windows API program on random ractangles…I don't know how the variable get its value
<pre>
#include<Windows.h>
#include<process.h>
LRESULT CALLBACK WndProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam);
HWND hwnd;
int clientx,clienty;
int WINAPI ...
1
vote
1answer
246 views
How to load and display an animated png
I have an animated png that I want to load in my MFC project to show it animated. I need this because it's a loading animation, and I would love to know how to do it. Would love if you can tell me how ...
0
votes
1answer
83 views
windows application with web search [duplicate]
Possible Duplicate:
Programmatically get screenshot of page
I am working on a small desktop program in winapi
What I want is that the application will have textbox with some buttons.
User ...
0
votes
2answers
61 views
Why AutoSuggestion List does not close on Enter in MFC?
I have a MFC Dialog Application. I add a Edit Control in the Dialog and turn the autoSuggestion on by using following code
SHAutoComplete(txtPath.m_hWnd, SHACF_FILESYS_DIRS);
things work fine. But ...
0
votes
3answers
126 views
How can I print % symbol? [duplicate]
Possible Duplicate:
How to escape the % sign in C's printf?
I want to print the % symbol like this: "8%2F16"
How can I print this string?
0
votes
2answers
111 views
Advanced CFontDialog
As you know that MFC's CFontDialog does only support int in Font size.
And if you checked MS Office you'll find that the Font Dialog supports Float font size normally.
So what is the appropriate way ...
0
votes
1answer
134 views
Debugging MFC program calling C DLL using fprintf
I have an MFC program which calls a C dll that crashes in release, but not in debug. I have tried using fprintf to write messages to a file, and this works for the first pass through the program. ...
0
votes
3answers
156 views
Is it safe to use _msize with new[]?
Is it safe to use Microsoft specific _msize() function with new []?
Example:
int* i = new int[100];
size_t s = _msize(i);
cout << "Size of the array in bytes: " << s ...
0
votes
1answer
309 views
GetCursorPos and Privileges
I have a method retrieving the cursor position and get the coordinate on a specific window using GetCursorPos() and ScreenToClient().
All It work perfectly except a strange thing.
If the target ...
1
vote
2answers
2k views
Adding accelerators(shortcuts) in MFC - HOW?
I found this link: http://support.microsoft.com/kb/222829
But I can't understand that much.
Ok, I understood I need to add this to my header file:
HACCEL m_hAccelTable;
and then this:
...
2
votes
5answers
370 views
Is MFC still alive?
I am new to programming. I'd like to learn a new application programming language. I Googled and found the old MFC framework. I would like to ask: Is MFC still valuable?
I want to develop desktop ...
0
votes
2answers
384 views
Windows CE 6 remote debugging. No call stack when pause program
I am using Visual Studio 2008 for a remote debugging session with WindowsCE 6.0.
When I click 'Pause' I cannot see the program call stack.
Instead of a call stack with any functions of my program I ...
5
votes
1answer
393 views
How to set Administrative right Icon on MFC Dialog Button?
I am creating an application in MFC using Visual Studio 2008 in windows 7. My application starts and stops a service which requires administrative access. When application starts it don't have ...
3
votes
3answers
4k views
How to Use Timer in MFC Dialog based Application?
I am developing MFC Dialog based application in Visual Studio 2008. I want to use timer that start on start of the application and continue to run and calls a function that performs my task? How can I ...
0
votes
0answers
160 views
I need a JSON parser library wich supports both byte character and wide character so that I can switch between char and wchar_t
I need a JSON parser library that supports both byte character and wide character so that I can switch between char and wchar_t. I've googled it, and I just found jsoncpp. jsoncpp is good, but it only ...
2
votes
1answer
261 views
CRichEditCtrl loads Unicode text incorrectly
I use CRichEditCtrl in my dialog, but when I pasted in it copied Vietnamese text, the text doesn't display correct text; odd characters are displayed where the 2 byte encoded characters are shown.
...
0
votes
1answer
241 views
Redrawwindow of a cstatic control within a running thread
I have a CStatic control that I would like to set its text at runtime (computing a Fibonacci number)
Class TXT:public CStatic
{
private:
CString m_str;
public:
SetText(const CString& ...
2
votes
1answer
90 views
RichEditCtrl and its text content
I copy all formatted rich edit text into clipboard as
m_edit.setsel(0,-1);
m_edit.copy();
But when I call GetClipboardData,
I obtain text without format.
Someone could explain to me something ...
0
votes
0answers
126 views
Use MFC library without MFC
I'm using pure C with Windows SDK in my projects, but now I need to deal with DVR's camera, which the driver was made in MFC 6.0.
I can switch to C++ at any time (I'm already using it in some ...
3
votes
2answers
1k views
What does _stscanf_s do?
I saw this function in some code and I can't find documentation on google about it. Can someone explain what it does and are there any alternatives to this ?
Thanks.
0
votes
3answers
337 views
How to put a close button in main window menu?
I'm looking to add a 'close' button to my main window's menu. An example can be found in the picture here: http://ifyoucodeittheywill.com/img/crimson-editor.png
(So, there's the normal close button ...
0
votes
1answer
460 views
CPP + Regular Expression to Validate URL
I want to build a regular expression in c++{MFC} which validates the URL.
The regular expression must satisfy following conditions.
Valid URL:-
...
0
votes
1answer
2k views
'CObject::CObject' : cannot access private member declared in class 'CObject'd:\program files\microsoft visual studio 9.0\vc\atlmfc\include\afxcoll.h
This error happens while trying to send the instance of CTypedPointerList in the function parameter from one class to another class.
How to solve this issue?
Here is my code
ObjectList.h
#pragma ...
0
votes
3answers
125 views
How to optimize my query in c++?
In My Application , I saved thousands of records in list of objects(i.e.,object array).I like to retrieve the data on the basis of particular scenario like date , name ., etc in record.
My idea is ...
0
votes
6answers
961 views
How to limit the log size in c++?
In my application i am creating log file of size 5kb .If i exceeds 5 kb of file size , I have to overwrite the old contents with the help of new contents.
If you have any ideas just share with me.
I ...
0
votes
1answer
237 views
How to open the file in class in mfc?
While trying to open the file in Class in function oninitdialog(),It throws exception.If I open the file globally , it works.
How to overcome this?
why the fopen command is behaving like these?
...
0
votes
1answer
327 views
How to create Common log file for multi threaded application in mfc?
Is there any library file to log the details in the file and check for size limit of the file and compress the file?
1
vote
1answer
470 views
How can I assign RGB color codes to a WORD?
I am assigning the color values to the display frame buffer, and that buffer pointer return type is BYTE. But i am not able to assign the RGB color value into it. This i am doing to set the pixel ...
0
votes
2answers
337 views
how to determine if a POINT is inside the area of a button
how to determine if a POINT is inside the area of a button?
the POINT is in screen coordinates , and I have the handle of the window in which the button is and the handle of the button.
I tried ...
1
vote
2answers
605 views
How to solve this TabStop style Issue
I know that using isDialogMessage() function we can able to switch the focus from one control to another.
My doubt is
is it possible to override that the control should focus from first button to ...
3
votes
1answer
2k views
How to execute child console programs without showing the console window from the Win32 GUI program?
(I've searched SO answers and found no clear solution to this problem.)
I'm working on a MFC GUI program. This program runs various child programs including console program and shell command ...
2
votes
4answers
383 views
Can I hook return value of “Ctrl+Alt+Del”?
On windows, windows security screen(including log off, sutdown, taskmgr and so on) is appeared when we push ctrl+alt+del.
But I want to make show up my application(MFC) when we hit ctrl+alt+del.
So ...
0
votes
2answers
503 views
Tab control like in FireFox in native windows app
I would like to enable tabbing for my application. And so far it seems I could use a tab control. The problem with it is, though, that it creates a border around the client area. What I want, is more ...
2
votes
1answer
112 views
Can any one please tell me what is wrong with this?
I'm a beginner with Bass (working right now on an MFC project) and I'm trying to figure this out.
I saw that I should start with the BASS_Init function, but I found two example, one with 4 parameters ...

