|
Last time I tried to use Eclipse (for C++ development) it was painly slow and (IMHO) deadly counter-intuitive. I know it is just a personal feeling (and I didn't deelve into), but, anyway...Good luck!
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
Thanks.
I had some strange experience while I was coding Java on it.
However I hope with the newest version of Eclipse, they where more or less corrected.
You have the thought that modern physics just relay on assumptions, that somehow depends on a smile of a cat, which isn’t there.( Albert Einstein)
|
|
|
|
|
Hi ,
can we create thread in Single Threaded component . Suppose my component is derived from
CComSingleThreadModel now can I create multiple thread in this component .
|
|
|
|
|
Yes, you may spawn as many threads as you like.
However, if you plan to use interfaces to COM servers created in the main thread you need to initialize COM in your other threads by calling ::CoInitialize() , or one of its equivalents, in order to setup COM for that thread and you will also need to marshal interfaces properly into the new thread.
Lim Bio Liong has written a nice article series on the subject starting here[^].
"It's supposed to be hard, otherwise anybody could do it!" - selfquote "High speed never compensates for wrong direction!" - unknown
|
|
|
|
|
Roger Stoltz wrote: Lim Bio Liong has written a nice article series on the subject starting here[^].
I wasn't aware of those articles - they're splendid - thanks for posting the link.
The event handling one's good as well - I'd have loved to have known about that one in the past, if only so that I could point people at it, rather than try and explain stuff myself!
Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p
|
|
|
|
|
Stuart Dootson wrote: those articles - they're splendid - thanks for posting the link.
Yep, they are really well written.
You're most welcome Stuart.
Stuart Dootson wrote: if only so that I could point people at it, rather than try and explain stuff myself!
Amen to that!
Otherwise the replies we write may become quite large and tedious....
"It's supposed to be hard, otherwise anybody could do it!" - selfquote "High speed never compensates for wrong direction!" - unknown
|
|
|
|
|
hi
i'm a beginner. i want to write a calculator but i don't know how can i convert CString to int. i search in MSDN but it was useless!
please help me.
thanks.
|
|
|
|
|
Use _ttoi .
«_Superman_»
I love work. It gives me something to do between weekends.
|
|
|
|
|
|
simple.
atoi(string) sould help you.
--------------------------------------------
Suggestion to the members:
Please prefix your main thread subject with [SOLVED] if it is solved.
thanks.
chandu.
|
|
|
|
|
chandu004 wrote: atoi(string) sould help you.
Only in the case when UNICODE is not defined. The suggestion from Superman is better, it is independant of whether UNICODE is defined or not.
|
|
|
|
|
many more thanks for correcting me.
--------------------------------------------
Suggestion to the members:
Please prefix your main thread subject with [SOLVED] if it is solved.
thanks.
chandu.
|
|
|
|
|
thanks 4 ur attention. 4 sure, i test it and say the result.
|
|
|
|
|
If you're entering values in a edit box, for instance, then you don't need such conversion at all: you may directly map a integer variable to the edit box content.
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
i use this but i can't set a int variable because of adding number with button like windows calculator. see it.
thanks for ur attention.
|
|
|
|
|
If you're using buttons to enter numbers, then why do you need a CString variable?
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
|
Yes! To deceive the enemy! You're right!
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
Why don't you post the piece of code you have a problem with?
|
|
|
|
|
Coz we all know u r a (in)famous corporate espionage guy, sir.
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
OK, I admit it. We have been looking for the calculator code for years. Busted...
|
|
|
|
|
Michael Schubert wrote: We have been looking for the calculator code for years
Well, you should know: there is NO code inside, there's a little man...[^].
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke
[My articles]
|
|
|
|
|
mazizi wrote: i search in MSDN but it was useless!
I suspect it was your search criteria that was. Did you consider atoi() ? See here.
"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
|
|
|
|
|
Could someone pls explain the below question?
Q1 : In line1 the second parameter is referece to integer constant.
If so how is the value in 'x' changed to 4
Question:
#include<iostream>
#include<conio.h>
using namespace std;
int mani(int (&arr)[10], const int& x)
{
for (int i = 0; i < 1; ++i)
arr[i] = arr[i] + x;
return x;
}
int main(){
int arr[10] = {2, 3, 4, 5, 6, 7, 8, 9, 10, 11};
cout<<mani(arr, arr[0]);
}
|
|
|
|
|
Member 3974347 wrote: If so how is the value in 'x' changed to 4
Since the variable x is a reference to the a[0] , when ever you use x, keep in mind that you are actually using a[0] itself. And in the for loop, when the value of i = 0 , you chnages the value of a[0] and so the x will also points to new value.
Defining the x as constant only prevents directly chaging the value of x, using the x variable itself. something like x = a[2]; will be shown as error.
|
|
|
|