Search:

Type: Posts; User: cweb255

Search: Search took 0.01 seconds.

  1. Replies
    15
    Views
    3,945

    I know several people who all work for different...

    I know several people who all work for different companies that use C#. C# is essentially Java with some modifications/fixes by Microsoft, but for Microsoft's .NET community. If you use Linux, it can...
  2. Replies
    8
    Views
    1,307

    isn't it sort of logical when it is used?

    isn't it sort of logical when it is used?
  3. Replies
    4
    Views
    1,139

    Thanks cryeon - but I think I figured out an...

    Thanks cryeon - but I think I figured out an easier way. It was actually simpler without rect. Although that would be for dynamic sizing, no? Right now I have it static - i.e. they're the same size...
  4. Replies
    3
    Views
    1,583

    The #include directive is for using certain...

    The #include directive is for using certain header files in your program. For example std::cout is found in <iostream> fstreams are found in <fstream> to use the std:string you have to call <string>...
  5. Replies
    1
    Views
    1,533

    Try here...

    Try here. It's under the first parameter of the CreateWindowEx function (I think that's what you're looking for...)

    Chris
  6. Replies
    4
    Views
    1,139

    OK, I figured out how to do it, but now I have...

    OK, I figured out how to do it, but now I have another problem... I'm trying to figure out what to make of this code:

    int nSplitterPos = 100;
    int nSplitterBorder = 2;

    void...
  7. Replies
    4
    Views
    1,139

    nevermind, I figured it out. Thanks anyways...

    nevermind, I figured it out. Thanks anyways though. :)
  8. Replies
    4
    Views
    1,139

    Splitting the Window

    How do I split a window up (without using MFC) like HTML's frames option?
  9. Replies
    2
    Views
    2,164

    Thank you so much. :)

    Thank you so much. :)
  10. Replies
    2
    Views
    2,164

    Invalid Conversion

    case WM_CREATE:
    {
    HFONT hfDefault;
    HWND hEdit;

    // Took our horizontal viewing
    hEdit = CreateWindowEx(WS_EX_CLIENTEDGE, "EDIT", "",
    WS_CHILD | WS_VISIBLE |...
  11. Replies
    7
    Views
    2,464

    Best way to change a c program to c++? Easy,...

    Best way to change a c program to c++? Easy, change the extension to .cpp and compile it as C++ ;)
Results 1 to 11 of 11