Search:

Type: Posts; User: SyntaxBubble

Page 1 of 20 1 2 3 4

Search: Search took 0.02 seconds; generated 16 minute(s) ago.

  1. Thread: Button

    by SyntaxBubble
    Replies
    5
    Views
    1,320

    Okay. You may want to try using the class wizard...

    Okay. You may want to try using the class wizard (CTRL+W) to add the "OnOK" function. :) If that doesn't work you can try Codeplug's suggestion.
  2. Thread: Button

    by SyntaxBubble
    Replies
    5
    Views
    1,320

    It depends on the kind of window ...

    Hey there. I hope my information can help you out.

    First, I would like to say hello to everyone again. :) It's been quite a long time since I've posted on these forums, although I visit the site...
  3. Replies
    1
    Views
    1,640

    I believe you need this ...

    Okay. It's been a while since I've posted here. I have been really busy in high school, and I have a project I'm working on. :) I'm working on a 2D engine, using SDL, for a game my friends and I are...
  4. Thanks for the reply ...

    Thanks for the reply. I figured it out myself. I just had to handle "OnHScroll" for a horizontal slider, and "OnVScroll" for a vertical slider. I just use the "TB_(Message)" messages for getting the...
  5. MFC Dialog :: Slider Control child notification messages?

    Hello, everyone. I have an MP3 file player application that I have been working on for quite a while. It uses the FMOD library, and MFC. I have MS Visual C++ 6.0 on a Windows 98 machine.

    Anyhow,...
  6. Replies
    1
    Views
    3,546

    Possible solution ...

    Well, in the MainFrm.cpp source file, you can edit the "int CMainFrame::OnCreate(LPCREATESTRUCT);" function like this. Try using the "GetCommandLine()" function, and just call "SetWindowText()". It...
  7. I Agree ... :)

    I agree with adrianxw. The "beginthread()" solution would work. It's because it's in a "do ... while" loop, which WILL cause an application to freeze if it's not in a thread, and if it lasts long...
  8. Thread: App

    by SyntaxBubble
    Replies
    3
    Views
    1,135

    CreateWindow function ...

    In your window proc. function (WindowProcedure(...)) you need to call "CreateWindow(...)". In the "switch(message)" statement, add this code:

    First, create 2 globals (ex. under the "char...
  9. Replies
    1
    Views
    5,600

    ShowWindow, maybe?

    You might want to try the ShowWindow function. Well, there is already a call to this function in your application's class (ex. MyApp.cpp) inside the "InitInstance()" function. It should be something...
  10. Replies
    2
    Views
    1,527

    Stupid Me ...

    Stupid me. Thanks. I forgot about the firewall. I'm not sure if it IS the problem, but I will try. :P
  11. Replies
    2
    Views
    1,527

    Win2000 Pro. SP4 will NOT download ...

    Hello there. I am having quite a bit of trouble. I have kept on and kept on trying to download the Windows 2000 Professional Service Pack 4 from Microsoft's website, and when I download it, I run the...
  12. Replies
    4
    Views
    1,103

    XP Pro. Should Have ...

    I am assuming you mean Active Server Pages. WindowsXP Professional should allow you to install MS Internet Information Services (IIS) 5.0. IIS 5.0 allows you to run ASP scripts if you allow it. I am...
  13. Replies
    1
    Views
    808

    Possibility ...

    Yes, it can be done. But, since you are "sorta new", I suggest you learn the Win32 API first. Then, you will need to download the DirectX 8.1/9 SDK from the Microsoft website and get comfortable with...
  14. Replies
    9
    Views
    2,106

    Maybe you should ...

    I am thinking you need to "#include" the "stdafx.h" header file to the dialog class's source/header file.



    // In CFrmMain.h
    #include "stdafx.h"

    ///////////////////////////
    /* Other stuff...
  15. Replies
    2
    Views
    1,243

    Possibile Solution ...

    For the Edit control, you do this:



    m_wndEdit.SetWindowText(""); // No text


    And for the ComboBox:
  16. I think I already did that ... ?

    Well, I create the listening (m_csListen) socket when the user clicks the "Start" button in my application. Then, it starts the "Listen()" thread. Inside the listen thread is where it calls...
  17. MFC Multi-threading is working ... Now another problem :(

    Ok, well, I got the MFC multi-threading working. I found some code on CodeProject.com. Now I have another problem. I defined my Listen() and Server() functions in my application's dialog class, and I...
  18. Replies
    5
    Views
    2,262

    Thanks ... :)

    Thanks for the help. I will try that in a few minutes. :D
  19. Replies
    5
    Views
    2,262

    CreateThread() executes ONLY once ... ?

    Hello. I am working on a multi-threaded application using sockets, and I am using the CreateThread() function. BTW, I am using MS Visual C++ 6.0 Standard on a Windows 98 machine, using MFC for this...
  20. Replies
    2
    Views
    1,530

    Thanks ...

    Thanks for the information, Codeplug. I may do a text-based chat application first. :)
  21. Replies
    2
    Views
    1,530

    Custom mail server-like application?

    Hello everyone. I have not done much work with sockets, although I can program with WinSock fairly well. I would just like to know if I could get "practice", you might say, with sockets like this:
    ...
  22. Replies
    7
    Views
    2,006

    Not really sure, but ...

    I am not sure what the problem is, but I noticed something. I always thought when you pass parameters, you are supposed to '|' them, instead of '+' them. I am talking about in your MessageBox()...
  23. Suggestion (A free one) ...

    Hey there, javacvb. I was looking for one a while back, and found a very good free setup generator. It's called QSetup. I believe you can get it on http://www.download.com/. If not, you can search...
  24. Replies
    5
    Views
    1,696

    How would I go about doing so?

    Can you please tell me how I would do that. Sorry, I've just never done anything with converting to binary, etc. :P
  25. Replies
    5
    Views
    1,696

    Converting string/character to binary?

    Hello everyone. I am a programmer in the C/C++ language and many web languages for a few years. And I am 16-years-old. I was just wanting to make a program that will convert and print a...
Results 1 to 25 of 491
Page 1 of 20 1 2 3 4