CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Gldnguppy

Page 1 of 6 1 2 3 4

Search: Search took 0.09 seconds.

  1. Replies
    1
    Views
    510

    Point me in the right direction please.

    I am looking to play multimedia files such as .avi in my project but I do not want to use an ActiveMovie Control or any other premade type viewer. I have done it with ActiveMovie3 and would now like...
  2. Replies
    7
    Views
    957

    Re: Is CSocket there?

    As far as I can tell, the error is generated when information is sent from the host to a client which has locked up. I need to dig a bit deeper to be sure though. If it is the action of sending that...
  3. Replies
    7
    Views
    957

    Re: Is CSocket there?

    My programs will in most circumstances be used for less than 2 hours at a time. I had thought about having some sort of validation code sent on regular intervals, but was hoping that there was an...
  4. Replies
    7
    Views
    957

    Re: Is CSocket there?

    I would be happy to help you (if I can). I will tell you what I do in establishing CSocket connections. I don't know if it is the best way but it works for me and I try to keep things simple.
    First,...
  5. Thread: Modelless

    by Gldnguppy
    Replies
    2
    Views
    848

    Modelless

    Alright, I am using a Modelless dialog in my dialog project. I have made the instance of the modelless dialog a member variable of the main dialog so as to try to stop memory leaks. However, if I...
  6. Replies
    7
    Views
    955

    Re: Modelless Dialog trouble

    Now that you mention it, you are probably right about the memory leak thing. I will go about it your way. Thanks for the help. I appreciate it.
  7. Replies
    7
    Views
    955

    Re: Modelless Dialog trouble

    Thank you. That was very helpful.
  8. Replies
    7
    Views
    955

    Re: Modelless Dialog trouble

    Ahha. That makes sense. I should have known. Thanks alot.
  9. Replies
    7
    Views
    955

    Modelless Dialog trouble

    I am trying to create and use some modelless dialogs in my dialog based project. I can't seem to get it to work although I am following MSDN exactly (as far as I know). This is what I am doing to try...
  10. Replies
    2
    Views
    571

    Re: argument/parameter?

    Thank you very much.
  11. Replies
    2
    Views
    571

    argument/parameter?

    Ok, so what is the difference between the terms "argument" and "parameter." I know one is the actual variable passed in a function call and the other is the variable that the function is looking for...
  12. Replies
    7
    Views
    957

    Is CSocket there?

    I am working on an internet project in which I have created a client program and server program that interact. Multiple clients access the server at once. My trouble: when a client machine locks up...
  13. Replies
    2
    Views
    586

    Re: combobox help

    Perfect! I appreciate the help with silly little things like this. Thank you.
  14. Replies
    2
    Views
    586

    combobox help

    I have a combobox full of usernames. I wish to get the currently selected username (as a CString NOT the index of the string in the list because the contents of the list change at runtime and I will...
  15. Replies
    7
    Views
    1,117

    Re: Minimize/Maximize programatically

    Thanks.
  16. Replies
    7
    Views
    1,117

    Re: Minimize/Maximize programatically

    Perfect! Although now I need a property or function that will tell me if the dialog is currently maximized. I cant find one in MSDN. Ideas?
  17. Replies
    7
    Views
    1,117

    Re: Minimize/Maximize programatically

    Ok, I have another one for ya. I need to be able to programatically check if the window is already maximized, but I cannot find a property/method for it in MSDN. Help?
  18. Replies
    7
    Views
    1,117

    Re: Minimize/Maximize programatically

    Thank you very much.
  19. Replies
    7
    Views
    1,117

    Minimize/Maximize programatically

    How would I go about minimizing or maximizing my dialog programatically?
    Thanx
  20. Replies
    2
    Views
    702

    Easy question needs answering

    I am wanting to put some CButtons on my dialog that are the same size as buttons on toolbars. Problem is I dont know how big the buttons on toolbars are. Also, just for my own enlightenment, are the...
  21. Replies
    14
    Views
    1,196

    Re: Dynamically opening an external program

    use the function:
    WinExec("someapp.exe", SW_SHOW);
    if you dont specify a pathname it will search directories in a specific order. Check out WinExec in the index in MSDN.
    Hope this helps
  22. Thread: free memory?

    by Gldnguppy
    Replies
    5
    Views
    808

    Re: free memory?

    thanks, the RemoveAt() and RemoveAll() functions were CObjectArray base functions and for CObjectArray they do not free the objects. But I guess in the case of CStringArray the strings are deleted....
  23. Thread: free memory?

    by Gldnguppy
    Replies
    5
    Views
    808

    Re: free memory?

    I'm just getting this back at the top. Could somebody tell me if there is an easier way?
  24. Thread: free memory?

    by Gldnguppy
    Replies
    5
    Views
    808

    Re: free memory?

    Do you mean CString::ReleaseBuffer()? I don't see a CString::FreeBuffer(). So, I would have to loop through the array, set each string to "", and call ReleaseBuffer() on each? If I understand it all...
  25. Thread: free memory?

    by Gldnguppy
    Replies
    5
    Views
    808

    free memory?

    I am using a CStringArray in my program. I wish to not only free the memory associated with the pointers to the strings in the array (as is done with RemoveAt() and RemoveAll()), but I also wish to...
Results 1 to 25 of 126
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured