0
votes
5answers
100 views
C++ Array vs vector
when using C++ vector, time spent is 718 milliseconds,
while when I use Array, time is almost 0 milliseconds.
Why so much performance difference?
int _tmain(int argc, _TCHAR* argv[])
{
const int …
1
vote
3answers
114 views
Conversion of ref to TBuf
Hi,
I am using CRSAKeypair class which returns the public key and private key which is in long format , i want it to convert to TBuf format how should i proceed .
I have tried creation of …
1
vote
10answers
89 views
C++ - What should go into an .h file?
When dividing your code up into multiple files just what exactly should go into an .h file and what should go into a .cpp file?
1
vote
3answers
23 views
GetOpenFileName() kills my background open streams :(
Its a little strange. Ok so I am working with OGRE game engine which has a "SceneManager" class which keeps some files streams open in background. If i use those streams just BEFORE using …
-2
votes
0answers
35 views
how can i convert this exponential no. 4.34665576869374564e208 in decimal no.
please answer this question
8
votes
12answers
396 views
Coming from C to C++
HI all.
I have started a new job recently where I am supposed to work with C++/ I have been doing programming in C language for past 5 years. I am looking for ways to get me up to an acceptable level …
1
vote
6answers
133 views
+100
Iterate Over Struct; Easily Display Struct Fields And Values In a RichEdit Box
Is there an easier way to display the struct fields and their corresponding values in RichEdit control?
This is what I am doing now:
AnsiString s;
s = IntToStr(wfc.fontColor);
…
0
votes
2answers
52 views
Wide to narrow characters
What is the cleanest way of converting a std::wstring into a std::string? I have used W2A et al macros in the past, but I have never liked them.
0
votes
1answer
16 views
Get the name of application in focus (on Mac)
Hello All,
I have a requirement where, I need to have the name of the running application in focus.
I am using C++/Qt/Carbon.
Any help is highly appreciated.
Thanks,
Rahul
2
votes
3answers
2k views
Why is RegOpenKeyEx() returning error code 2 on Vista 64bit?
I was making the following call:
result = RegOpenKeyEx(key, s, 0, KEY_READ, &key);
(C++, Visual Studio 5, Vista 64bit).
It is failing with error code 2 ("File not found") even though "regedit" …
0
votes
2answers
49 views
How do you save data in MFC ?
I still remember in Delphi, developer can just make the UI(textbox, listbox...) directly connect to database, and then when user click a button, just call the post action, then the data will be saved …
0
votes
5answers
59 views
linux distro for Embedded development??
Hi all,
I have an embedded board . Can someone suggest an Ideal Linux distro for such a configuration, keeping in mind that it also needs to capture images in realtime. I plan to use Qt_Embedded for …
0
votes
1answer
16 views
how to get TIMESTAMP column from Oracle DB into C++ (MFC or WIN32)?
Hi,
I need to get value of column (TIMESTAMP) from oracle DB into C++. Then which dataype i should map to access database field (In MFC or WinAPI any) or what should in do to do this in proper …
1
vote
3answers
124 views
Dynamically inserting strings to a std::map
Hi
I am trying to create a map of file pairs... First I am searching a specified directory for files using the FindFirstFile and FindNextFile and when a file is found I search the map to see if the …
1
vote
1answer
12 views
How to set toolbar button height?
When adding buttons to a toolbar (using the old Windows API) I can't seem to find a way to change the height of a button. I need to be able to increase the button's height because I'm using large …
