Tagged Questions
The vc tag has no wiki summary.
7
votes
3answers
259 views
Is this valid standard c?
I am reviewing some optimisation libraries and came across the function signature
double solvopt(unsigned short n,
double x[],
double fun(),
void grad(),
...
5
votes
3answers
5k views
'uint32_t' identifier not found error
I'm porting code from Linux C to Visual C++ for windows.
Visual C++ doesn't know #include <stdint.h> so I commented it out.
Later, I found a lot of those 'uint32_t': identifier not found ...
5
votes
2answers
260 views
empty base class optimization
Below is a simple test on ebco, I compiled it on both vc9 and g++. The outputs differ on both compilers. What I want to know is that whether the behavior of vc is conformant.
#include ...
5
votes
11answers
882 views
For real-time application, which is better C or C++?
I’m electronic engineer with experience with both language C and C++ (I wrote with C for micro-controller and with C++ I wrote for Windows with Borland C++ Builder)
My company develops motor control ...
4
votes
4answers
179 views
is assignment operator '=' atomic?
I'm implementing Inter-Thread Communication using global variable.
//global var
volatile bool is_true = true;
//thread 1
void thread_1()
{
while(1){
int rint = rand() % 10;
...
4
votes
3answers
297 views
Any way to force local variables to the stack in 64bit VC application
When a 64 bit VC 2005 application is compiled with optimization turned on, it is not possible to see all local variables in a crash dump file. In many cases, the local variables or parameters are ...
4
votes
3answers
702 views
Programmatically tell difference between git-svn and git repos?
I've got some shell stuff set up that dynamically defines aliases depending on what sort of VC repo the CWD contains -- so, for example, 'd' runs 'svn diff' or 'git diff', depending. (Based on this ...
2
votes
2answers
94 views
How does 'Source Stamping' work?
In a presentation by Bungie (A Life on a Bungie Farm) a feature in Visual Studio named 'Source Stamping' is mentioned. I would like to read a bit more information on that subject but finding related ...
2
votes
1answer
204 views
How can I improve emacs' vc-mode annotation?
I find hg annotate very useful in tracking the provenance of code, but I'm seeing that in emacs' vc-mode, vc-annotate is ... not so good. Here's a snippet:
297 Wed Oct 06 15:21:30 2010 -0600 ...
2
votes
1answer
758 views
VC++ win32 API programming :how can i get the image out of the clipboard and display it in a winodws?
i m new here . stackoverflow is a good place to help others and being helped.
so i post my problem here.i'va asked quite a few people and find no answers.
thanks
Use SelectObject() on your memory ...
1
vote
1answer
48 views
error :2678, Compilation error in vs 2010,
>c:\program files\microsoft visual studio 10.0\vc\include\algorithm(4494): error C2678:
binary '=' : no operator found which takes a left-hand operand of type 'const
...
1
vote
3answers
123 views
Postfix increment operator
I have a custom class MyInt, encapsulating a int m_nValue data. The postfix operator
MyInt operator++(int)
{
MyInt temp(*this);
++(*this);
return temp;
}
if the operator returns an ...
1
vote
1answer
74 views
How to convert FormatMessage output to an Java Exception message in JNI under windows?
I am trying to convert Windows error to an java IOException with the fuciont below:
void ThrowIOException(JNIEnv * env, LPCTSTR lpszFunction, DWORD dw)
{
LPVOID lpMsgBuf;
FormatMessage(
...
1
vote
2answers
96 views
How to Stop Internet explorer shortcut keys in CDHTMLDialog Class?
I am new to CDHTMLDialog in mfc.
I know how to disable Refresh keys.
Is there generic solution to disable internet shortcut keys(accelerators)?
Ex: ctrl+n , ctrl+o.
Thanks
1
vote
0answers
40 views
VC command line compilation strange problem
I searched the net and I cannot find an answer for the problem that I am facing. Im not sure if the title of the question itself describes my issue.
the problem is, I have a file which I am for ...
1
vote
2answers
606 views
Why won't “vcredist_x86_2010_sp1.exe,Asia” let me installer SQLite?
Has anyone heard of this strange package named: vcredist_x86_2010_sp1.exe,Asia ?
I've grabbed the SQLite for DotNet installer from sqlite.org, but every time I run it, I get this weird dialog box ...
1
vote
2answers
157 views
how to use IsKindOf() function to check two objects?
I know that ISKINDOF() function is used to compare two class objects that is declared DECLARE_DYNAMIC.
But the problem is how to compare the object pointers that is not declared DECLARE_DYNAMIC.
...
1
vote
4answers
410 views
tricky C problem. dynamic function call
I am writing a program in C/C++(but c++ class should not be involved) which is divided into 2 parts.
The first is basic need for threads and processes.
The second is for users to customizing their ...
1
vote
1answer
292 views
How to sort date and time in mfc?
I know how to get the current date and time in mfc.but I want to sort the array with the help of date and time datatype.
How can I do this?
Regards,
karthik
1
vote
5answers
1k views
What is u_int32_t? [closed]
Possible Duplicate:
Datatypes used in C
Hi
I'm doing porting from Linux to Visual C ++. And I found quite a few errors.
What is u_int32_t ?
I can't find it in Visual C ++? Is it only ...
1
vote
3answers
309 views
pthread.h header problem
hi
I'm doing porting from Linux to Visual C++ . When I built the coding, it shows that VC ++ doesn't know this pthread.h header. I can't comment it since there is a variable " pthread_mutex_t " in the ...
1
vote
2answers
298 views
Unexpected in macro formal parameter list Error
I'm an intern student and my boss told me to do porting from Linux c to Visual C++.
When I built the coding, I found this error "unexpected in macro formal parameter list", here is the code
#define ...
1
vote
5answers
291 views
How to make C++ program work across compilers
I wanted to know how I would make my C++ program work across compilers. I wanted to make the program so if it's being compiled with borland it will use the clrscr() function otherwise it'd use ...
1
vote
3answers
132 views
Does the linker in VC2008 has problem with spaces in paths?
the previous question I asked was about how can I use .lib file with a VC2008 project and the answers were very useful.Now another problem has crept in--for eg. my .h and .lib files are in the folder ...
1
vote
1answer
394 views
How to make checkbox background transparent?
i use the following code to make check box background transparent or in my case off white but i can't find what wrong with this plz help me how to do this?
HBRUSH CfvcolorDlg::OnCtlColor(CDC* pDC, ...
1
vote
2answers
526 views
How to read data from excel file in C++/VC 6.0 without MFC?
Have to read data from MS Excel File, the data contains name DOB as well as some numeric values...
1
vote
2answers
118 views
Does OpenSSL has any event callback function for 'Read' data?
I was looking for event callback function when OpenSSL has incoming 'Read' data. Does OpenSSL has this kind of function? If yes, could you please show me some example code please?
I'm thinking to ...
1
vote
3answers
371 views
Need convert VC code to Delphi
I need call a DLL file in my delphi code, here is the code snippet of the DLL Head file:
#define BookInfoDLL __declspec(dllexport)
struct _BookTime
{
unsigned char day;
unsigned char month;
...
1
vote
2answers
187 views
can _open() return valid negative fd?
Is it possible that win32's _open() return valid FD that is negative ?
In other words, is comparison
if( (fd=_open(...)) < 0) error...;
as safe as form
if( (fd=_open(...)) == -1) ...
1
vote
4answers
656 views
How do I rename an entire project in VC++ 2005
I've got a really large project I made for myself and rece3ntly a client asked for their own version of it with some modifications. The project name was rather silly and my client wants the source so ...
0
votes
1answer
30 views
Removing Icon and System Menu from TitleBar
I need to remove the system menu and the icon from the title bar of my MFC dialog while keeping the maximize, minimize and close buttons.
I have tried using SetIcon(NULL, TRUE), SetIcon(NULL,FALSE) ...
0
votes
2answers
20 views
GUI to windows service
I have implemented a service which transfers the file using socket to another computer. I want to provide GUI for the service. How may i do this?
My service is implemented in the C.
0
votes
1answer
10 views
how to use VC to operate the date in files of MYSQL
how to use c++(in VC) to operate the date in files of MYSQL ( like *.frm *.MYD *.MYI) without MySQL server instance?
In my computer ,i doesn't install a MYSQL database systems;So there no MySQL ...
0
votes
0answers
37 views
EN_CHANGE with SetwindowText [closed]
I have a question related to the EN_CHANGE. i have a dialog which has couple of the edit controls as "Name " and "Description" and have defined the associated handler to them . so when i launching my ...
0
votes
1answer
61 views
Start a 64bit app from a 32bit app?
Under 64bit Windows 7, I want to start a 64bit executable(myapp64.exe) from a 32bit executable(myapp32.exe). Can I use CreateProcess, ShellExecute or ShellExecuteEx functions in myapp32.exe to do ...
0
votes
0answers
33 views
why the COM interface can't contorl some page [closed]
I use the IHTMLWindow2, the interface scroll function can work well on many webpage
but it doesn't work on some page,and the return value is S_OK.but the IE's scroll not move.
i can't figure out the ...
0
votes
2answers
58 views
find bug position in source code during vc debugging
I created a DLL. The source codes can be compiled and linked. During running, it works normally somehow, but in certain situations it crashes. At this point, VC just shows me a window to ask me ...
0
votes
0answers
10 views
Assertion is thrown when reading data and saving it in l_chBuf1
I have to read a data from number of characters specified
here i have to read 1 character but assertion is thrown and when i see l_chBuf1 1 character with junk y code how to solve this.
TCHAR is used ...
0
votes
0answers
21 views
Please help me, register ODBC ,SQL server , failed
static const CString GetConnectionString()
{
return "DSN=repunch;
Description=repunch;
UID=paneldbadmin;
PWD=worldpanel;
Server=10.20.12.208;
Trusted_Connection=YES;
...
0
votes
0answers
39 views
Libpng and Cimg - VC2010 Link errors when trying to use both
So I have been trying to use CImg to load png images. I copied all needed zlib and libpng headers to VC/include , created libpng15.lib and zlib.lib as Release and Debug Libraries.
The link errors I ...
0
votes
0answers
15 views
Evaluating web tools/platform to replace a legacy 3 tiered app [closed]
Being new to this blog, and not having found any concluent information to help me take a decision, I'm posting a e-bottle here...
I have been hired to maintain and enhance a 10+ years old 3 tier ...
0
votes
0answers
7 views
VC how to prevent a recompile of a dependency
Heylo guys,
i have 5 vcxproj files (lets call them A,B,C,D,E) each compiles into a dll. D and E are dependent on A B and C.
I want to be able to compile A, B, C independently every once in a while ...
0
votes
0answers
61 views
Openssl in windows issue
While I try to create lib files for windows.The following error came.
Please help on this issue.
CODE Explanation
This Line I actually typed in visual studio command prompt.This will create the obj ...
0
votes
2answers
61 views
Make parent thread wait till child thread finishes in VC
According to MSDN:
The WaitForSingleObject function can wait for the following objects:
Change notification
Console input
Event
Memory resource notification
Mutex
Process
Semaphore
Thread
Waitable ...
0
votes
1answer
54 views
How to redistribute VC9 libraries with PHP 5.3 windows binaries
I am in a process of including the VC9 runtime libraries with PHP 5.3.6 windows binaries. This would avoid the end user to download vcredist_x86.exe and install it in every machine.
There is a folder ...
0
votes
1answer
45 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
1answer
38 views
What's the difference between char and CHAR in MSVC?
I heard that these 2 types (char and CHAR) are different in MSVC, what's the difference between them? And which one is recommended to use if they are different?
0
votes
0answers
39 views
Is it possible to read text file of type ANSI and unicode using CStdioFile as shown above? Or where I’m doing wrong?
Actually I converted my VC .net project from Use Multi-Byte Character Set to Use Unicode Character Set (i.e. Unicode support). Then lot of build errors fixed.
Before in my project, I’m reading the ...
0
votes
1answer
56 views
libpng error under VC6.0
I'm using libpng in my OpenGL project to load texture of png file with VC6.0 under windows xp.
It's OK to build and error occurs during running.
The error is
the instruction at 0x0040b4a3 referenced ...
0
votes
0answers
37 views
compiler error when trying to save an avi file
compile error when trying to save an avi file?
Hi everybody,
I am trying to open an avi file and save it with different name in different path. I use OpenCV 2.1. The code I have used is as below:
...