Search:

Type: Posts; User: Need_O2

Search: Search took 0.00 seconds.

  1. Replies
    16
    Views
    2,175

    I simply wanted make me able to right click a...

    I simply wanted make me able to right click a file and say open with <My app name>
    since I know some about editing class options from registry. making app open the file opened it with was last thing...
  2. Replies
    16
    Views
    2,175

    you mean "Run a program from within a program"...

    you mean "Run a program from within a program"
    hmm didnt see FAQs before
    They seem much usefull

    Thanks !!!
  3. Replies
    16
    Views
    2,175

    Start -> Run -> $My application path$ $File to...

    Start -> Run -> $My application path$ $File to open with Path$
    so I opened the "File to open with" with my application
    So I want to store $File to open with Path$ in a string to know what I opened...
  4. Replies
    16
    Views
    2,175

    I open it with a file for example you know Like...

    I open it with a file for example you know
    Like opening paint files with mspaint
    I want to detect what I opened it with

    Did I miss the no beginners allowed sign ?
  5. Replies
    16
    Views
    2,175

    I command you with all Might I have

    Well I was looking for a way to detect command lines
    and files opened with my application

    Just a simple way if possible
    or a header that does it easly

    something like: string s =...
  6. Replies
    28
    Views
    2,418

    ... so ??? string s = c_str()...

    ... so ???

    string s = c_str(<LPSTR variable>) ?

    how to convert it back to LPSTR then ?
  7. Replies
    28
    Views
    2,418

    #include #include using...

    #include <iostream>
    #include <string>
    using namespace std;

    int main()
    {
    string S = "lalala";
    string B = S.substr(0,2);
    cout << B << endl;
    system("Pause");
  8. Replies
    28
    Views
    2,418

    first index is 0 okay thanks for the tip (so its...

    first index is 0 okay thanks for the tip (so its substr(0,2))
    well I have a iostream.h that includes iostream in it
    but okay I'll use iostream

    Anyway will it work or not
    As I said I cant test...
  9. Replies
    28
    Views
    2,418

    #include #include using...

    #include <iostream.h>
    #include <string>
    using namespace std

    int main()
    {
    string S = "lalala";
    string B = S.substr(1,2);
    cout << B;
    return 0;
  10. Replies
    28
    Views
    2,418

    Super newbie questions

    1-

    #include <iostream.h>
    #include <string>

    string S = "lalala";
    string B = S.substr(1,2);
    cout << B;

    This syntax error... I want to make it display "la" for example
  11. Replies
    1
    Views
    1,410

    Red or Blue Pill ?

    1-
    cout << "Hello EDM/2" << endl;

    I didnt get what does this do

    2- functions initialized like

    int functionname(parameter1,parameter2)
    {
    Some actions using parameter1 and parameter2
  12. Replies
    3
    Views
    1,236

    nice !!! Thanks

    nice !!!

    Thanks
  13. Replies
    3
    Views
    1,236

    Hey all Im beginner

    I dont know anything about C++ at the moment hope to learn some
    Do you have good example applications that I can explore ? (games suggested)
    I have Dev-C++, Visual C++ 2008 Express, DarkBasic...
Results 1 to 13 of 13