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

Search:

Type: Posts; User: MilesAhead

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Re: [beginner] Include problems tidying up code

    Post some code that demonstrates the problem or I don't think anyone can figure out what the problem is.
  2. Replies
    14
    Views
    1,861

    Re: new delete question

    I don't want it to do more. I want it to do less. Basically I just want automatic disposal of my temp buffers. <vector> was around when Bjarne S. wrote The C++ Programming Language 3rd ed. and...
  3. Replies
    14
    Views
    1,861

    Re: new delete question

    The way to automate disposal is to make a Buffer object as Bjarne S. does in The C++ Programming Language.

    Rather than post copyrighted material from the book, here's one I threw together just...
  4. Replies
    3
    Views
    9,809

    Re: Programmatically Close MsgBox/Form

    Easiest way may be to simulate a mouse click on the OK button after the time-out, or just send the Enter key if OK is the default button.

    For mouse click see PostMessage() and WM_LBUTTONDOWN and...
  5. Replies
    6
    Views
    1,147

    Re: Running programs simultaneously

    If the slave processes are also written by you, then you can have them communicate their status instead of creating a new thread just to wait. For example, by using messages. If you are using...
  6. Replies
    2
    Views
    913

    Re: COM/Dll Issues

    Did you get a .tlb file with the COM files? Sometimes the type library info is in a .tlb file.
  7. Replies
    2
    Views
    1,029

    Re: C++ style checker

    If not using the IDE real-time lint then I'd check out this free one:

    http://astyle.sourceforge.net/

    It's a command line app. You input the source with param which style to output.
    It has...
  8. Re: Does this excluding other instances method require synchronization?

    So your unique name is going to be "unique_name" ?
    I don't understand what you're talking about with randomizing names.

    If you are going to limit your app to a single instance then 99% of the...
  9. Re: Does this excluding other instances method require synchronization?

    For best results use a Guid string constant generated by a tool and pasted in for the name.
    They are legal for kernel object names.

    "{C116AAA6-F7F0-48B7-B52D-F6A7F605B678}"

    Don't use a...
  10. Replies
    3
    Views
    798

    Re: the "Open" Icon

    The Windows dlls have icons if you know the index number. Google for Windows Dll icons.
    One that has icons is Shell32.dll but there are a bunch. You should be able to find a guide or at least a...
  11. Re: App downloaded file being cached somewhere…

    Thanks for posting what you found. That may be handy in the future as not all implementations have the little "add ons" that scripting languages stick in there. :)
  12. Re: App downloaded file being cached somewhere…

    Search MSDN for INTERNET_FLAG_NO_CACHE_WRITE

    I've used the function in AutoHotKey which prevents fetching from the cache by default. According to their docs you can stick a star '*' then a...
  13. Replies
    15
    Views
    2,279

    Re: Does error checking make code look ungly?

    Since AfxMessageBox() returns an int you could change your function from void to int return type. Then get a single line exit by



    if(! result)
    return AfxMessageBox(ErrorMsg)


    :)
  14. Replies
    4
    Views
    857

    Re: C++ while loop

    Instead of trying to fix invalid input, it's generally better to give an error message and quit. It's not sensible to do a calculation on 470 degrees that's really 110 degrees. It just causes...
  15. Replies
    10
    Views
    1,509

    Re: Unique buffer per thread

    How about something like this?



    template<class T>struct Buff {
    size_t size;
    T* t;

    Buff() : size(0),t(0) {}
  16. Replies
    8
    Views
    1,061

    Re: New to OOP, please Help

    The trouble with polymorphism, is you need to anticipate in the base class all the stuff you will need to do through a base class pointer, in the derived classes. iow virtual functions. You can...
  17. Replies
    21
    Views
    2,723

    Re: Returning vectors from functions

    Afa the passing of arrays out of functions instead of using an STL container you could code or find an autoarray_ptr template. If you look in The C++ Programming Language, auto_ptr was provided to...
  18. Replies
    7
    Views
    1,162

    Re: Function Template

    You have to plug in an actual type at some point instead of just Type T for the compiler to generate code. Otherwise it's like using variables that are never assigned a value. 2 * x is what if...
  19. Re: what is maximum num of threads use in application?

    Instead of creating a thread to handle each job in the list you may want to consider having the UI thread as the "producer" and a worker thread as the "consumer". In this scenario the UI thread gets...
  20. Replies
    7
    Views
    1,162

    Re: Function Template

    I haven't tried it to see if it's implemented in vc++ 2010 but for grins you
    can try the declaration as shown here:

    http://en.wikipedia.org/wiki/C&#37;2B%2B0x#Extern_template
  21. Replies
    6
    Views
    998

    Re: Simulate key strokes

    Even more difficult in c++ is anything to do with a hotkey featuring the mouse. Suck as Winkey Click or something like that. For macro stuff the only language I found on Windows that actually grabs...
  22. Re: Request: Win32 in C++ Project Ideas : Beginner

    I don't know what tool set you have, but if you are using vc++ 2010 Express you may be interested in this:

    http://www.codeproject.com/KB/cpp/resedit.aspx?msg=3102372

    It's a free resource editor...
  23. Replies
    3
    Views
    1,784

    Re: Getting error LNK 2005

    Change the compiler switch to /MT instead of /MD and you won't have the c run time library dependency. For the graphics stuff see about delay loading the .dll and add the lib to the command line...
  24. Re: [RESOLVED] Main app icon mostly for Vista but also compatible with XP

    Thanks for the info. I'm trying IcoFX. Looks good for a donation-ware. I'll know more when I try to create my own with it. So far I've just created from an existing image.
  25. Re: Main app icon mostly for Vista but also compatible with XP

    Can you say what tool you are using? I've been using SimplyIcon but it seems to max out at 48 or 64 pixels. I'm looking for a Vista compatible icon maker that generates from a .png image.
Results 1 to 25 of 36
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured