943,910 Members | Top Members by Rank

Ad:
  • C++ Discussion Thread
  • Unsolved
  • Views: 1528
  • C++ RSS
May 23rd, 2009
0

Re: Help Need Urgently - C++ Gui

Expand Post »
how i can convert string to int in c++ gui mode
Similar Threads
Reputation Points: 10
Solved Threads: 0
Newbie Poster
karjan is offline Offline
1 posts
since May 2009
May 23rd, 2009
1

Re: Help Need Urgently - C++ Gui

Click to Expand / Collapse  Quote originally posted by karjan ...
how i can convert string to int in c++ gui mode
Please, refrain from hijacking threads. It would just confuse anyone having the same difficulty as the OP, and would make our jobs of attempting to answer to the original question difficult. If you have a question, like the one you asked, search the forum and see if the problem has been addressed before, and iff it hasn't, start a new thread stating your problem.
Reputation Points: 130
Solved Threads: 22
Junior Poster
amrith92 is offline Offline
187 posts
since Jul 2008
May 23rd, 2009
1

Re: Convert string to int (GUI)

Split to a new thread.

>how i can convert string to int in c++ gui mode
"GUI mode" is irrelevant. The process is the same. Have you tried a stringstream?
C++ Syntax (Toggle Plain Text)
  1. #include <iostream>
  2. #include <sstream>
  3. #include <string>
  4.  
  5. int main()
  6. {
  7. std::istringstream in ( "10" );
  8. int i;
  9.  
  10. in>> i;
  11. std::cout<< i * i <<'\n';
  12. }
Administrator
Reputation Points: 6442
Solved Threads: 1393
Bad Cop
Narue is offline Offline
11,807 posts
since Sep 2004

This thread is more than three months old

No one has posted to this discussion for at least three months. Please let old threads die and do not reply to them unless you feel you have something new and valuable to contribute that absolutely must be added to make the discussion complete. Otherwise, please start a new thread in this forum instead.
Message:
Previous Thread in C++ Forum Timeline: error-`void*' is not a pointer-to-object type
Next Thread in C++ Forum Timeline: Help with inputing string cum numbers data from a text file





About Us | Contact Us | Advertise | Acceptable Use Policy
Forum Index | Build Custom RSS Feed


Follow us on Twitter


© 2011 DaniWeb® LLC