Search:

Type: Posts; User: xds4lx

Page 1 of 20 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    27
    Views
    3,307

    Lift weights, hike, mountain bike, read, watch...

    Lift weights, hike, mountain bike, read, watch netflix with my girl friend, downloading tons of music from my zune pass, cooking, watching sports..... It's really amazing that I can have free time...
  2. Replies
    3
    Views
    5,708

    Ok, well was able to get something working but it...

    Ok, well was able to get something working but it required a few things. First we had to mark each button in the xaml with IsTabStop="false" then had to add an event in the application being loaded...
  3. Replies
    3
    Views
    5,708

    Thanks, that helps. Wonder why I didn't find...

    Thanks, that helps. Wonder why I didn't find that with google, is it just me or does google seem to suck lately?

    [Edit]
    Actually just got to the office and tried that and it has no effect. ...
  4. Replies
    3
    Views
    5,708

    Silverlight and KeyDown

    So this is a kinda complex problem. I have a silverlight application that I have developed that relies on some key presses to function, when running this application it grabs the KeyDown and KeyUp...
  5. Replies
    12
    Views
    1,865

    I learned C and then C++ in the early 90's used...

    I learned C and then C++ in the early 90's used them both for everything, then got a job and used C# and the .NET framework more often than not. But now at my current job we have a huge code base...
  6. Replies
    12
    Views
    1,664

    Saying !done is the same as saying while(done ==...

    Saying !done is the same as saying while(done == false) . You set done to true when you have met the requirements to end the loop, in your case a valid answer of 1,2 or 3.
  7. Replies
    12
    Views
    1,664

    bool done = false; while(!done) { cout...

    bool done = false;

    while(!done)
    {
    cout << "In what country is Wagga Wagga?" << endl;
    cout << "1: Japan" << endl;
    cout << "2: Australia" << endl;
    cout << "3: Israel"...
  8. Replies
    4
    Views
    7,891

    Well I solved the problem. Even though the image...

    Well I solved the problem. Even though the image was in RGBA format it was being displayed wrong, I swapped the R and B ad now the image shows up correctly, using the LockBits and UnlockBits method.
  9. Replies
    4
    Views
    7,891

    That is basically what I tried, from what I...

    That is basically what I tried, from what I understand you can only create the file from the stream if the stream has the bitmap header information in it.
  10. Replies
    4
    Views
    7,891

    Creating Bitmap from byte[]

    I cant seem to get this to work. I have a program in C++ that returns to my C# app through a DLL a char* (byte[]) on the C# side. The image data is stored as RGBA, I am trying to turn this into a...
  11. Replies
    2
    Views
    1,350

    Wow thanks, been staring at that way too long. ...

    Wow thanks, been staring at that way too long. Everything works now.
  12. Replies
    2
    Views
    1,350

    Problem with map

    Wow its been a long while, anyways I am coming back to doing C++ development after doing C# and .net for the last few years and am brushing up on some stuff. I am building a map of verticies and...
  13. Replies
    13
    Views
    6,059

    Hmm, added WS_EX_TRANSPARENT like you said ken...

    Hmm, added WS_EX_TRANSPARENT like you said ken and boom no more problems with it becoming transparent, but I just dont understand why in the hell you would have to do that any insight?
  14. Replies
    13
    Views
    6,059

    Im now encountering a new problem with my group...

    Im now encountering a new problem with my group box. When the application is minimized and brought back up the group box has become transparent.
  15. Replies
    13
    Views
    6,059

    Interesting, the main window was not initially...

    Interesting, the main window was not initially visable so when the group box is created it was having an issue in creation making it transparent, adding WS_VISIBLE to the main window fixed the...
  16. Replies
    13
    Views
    6,059

    Hmm, well I got the group box to create but its...

    Hmm, well I got the group box to create but its completly transparent showing what is under the window when it was created (i.e. its showing the part of visual stuidio in it, only styles used are...
  17. Replies
    13
    Views
    6,059

    Using WS_TABSTOP is a habit of mine when creating...

    Using WS_TABSTOP is a habit of mine when creating controls :p Anyways I tracked the bug down finally to a default value that was being set in the controls initialization of its class. But onto...
  18. Replies
    13
    Views
    6,059

    hControl = CreateWindowEx(NULL, "BUTTON",...

    hControl = CreateWindowEx(NULL, "BUTTON", strText.c_str(), WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_GROUPBOX, XPos, YPos, XSize, YSize, hParentWnd, (HMENU)(cCONTROLID),hInst,NULL);


    strText =...
  19. Replies
    13
    Views
    6,059

    I added WS_VISABLE and still im getting a push...

    I added WS_VISABLE and still im getting a push button as the control. I simply dont see WTF is going on, as the class name im using "BUTTON" as the documentation says, and only using WS_VISABLE |...
  20. Replies
    13
    Views
    6,059

    Creating a Group Box

    I dont see what the hell im doing wrong in attempting to create a groupbox in staright Win32 api. I create the group box passing it the parent windows hwnd as the parent, and specify the BS_GROUPBOX...
  21. Replies
    11
    Views
    2,978

    What finally got it working?

    What finally got it working?
  22. Replies
    27
    Views
    6,398

    I completed 3 years of computer science at ga...

    I completed 3 years of computer science at ga tech, OO Software Development, had to take time off because of family issues but im about to go and finish my last year.
  23. Replies
    11
    Views
    2,978

    Having slept on this, just a thought, did you try...

    Having slept on this, just a thought, did you try to disable/enable GL_TEXTURE_2D ?
  24. Replies
    11
    Views
    2,978

    ty something like: glPushMatrix();...

    ty something like:


    glPushMatrix();
    glTranslatef(0,0,-8);
    glColor3f(1.0f,0.0f,0.0f);
    glRasterPos2f(-9.95f,6.5f);
    glPrint("Hello World %2.2f", float_var);
    glPopMatrix();
  25. Replies
    11
    Views
    2,978

    Are you calling glRasterPos2(i/f) before trying...

    Are you calling glRasterPos2(i/f) before trying to print? If not try that.
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4