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

Search:

Type: Posts; User: SeventhStar

Page 1 of 5 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    1
    Views
    873

    Re: Get virtual memory page size

    Nevermind :)
    I found it. It got it with GetSystemInfo
  2. Replies
    1
    Views
    873

    Get virtual memory page size

    Hey I need to get the size of a virtual memory page. I am creating a small memory tool that needs to align some blocks in order to efficiently protect them. So far it's working fine, assuming the...
  3. Replies
    3
    Views
    3,312

    Re: CDockablePane and Scrollbar

    Curiously it doesn't work. I had (and still have) the same predicament.
    Thanks to a class from CodeProject ( http://www.codeproject.com/KB/dialog/scrolling_support.aspx?fid=195884 )
    I almost got...
  4. Replies
    3
    Views
    671

    Software translation. MFC

    Hey. I am trying to create a multi-language MFC application, with languages changed at runtime, because, it being freeware, I will count on users to translate the program. Now I am aware of the...
  5. Replies
    5
    Views
    690

    Unique identifiers

    Hey.
    Is there a way to generate unique identifiers for a program. For example here's how it can be done with Visual C++ in a file.


    #define UNIQ(s) s##__COUNTER__

    then


    int UNIQ(a) = 5;...
  6. Replies
    2
    Views
    1,206

    MapViewOfFile problems

    Hey, I'm developing a program that uses two pretty big memory mapped files. One 512 mb and one 256 mb. It works fine with Windows Vista (32 and 64 bit) and Windows XP 64 bit, but when ran under 32...
  7. Replies
    3,704
    Views
    342,600

    Poll: Re: Where are we from ?

    I am still subscribed... 8)
  8. Replies
    8
    Views
    1,829

    Re: Execute DOS commands in VC++

    You obviously use managed C++ (.NET).
    So why don't you try System.Diagnostics.Process.Start instead of trying to convert System.String to const char*
  9. Replies
    938
    Views
    35,823

    Re: All Posts In This Thread Must Be Off Topic

    Have you tried javascript?
  10. Replies
    3
    Views
    646

    Re: Modal dialog doesnt get focus

    It's truly simple :) It hapens to every dialog. Even to an example dialog that doesn't even have it's own class. Here is how i create it:


    void CTheView::OnSomeCommand()
    {
    CDialog...
  11. Replies
    3
    Views
    646

    Modal dialog doesnt get focus

    I have a mfc sdi application without a doc/view architecture. The "view" is derived from CWnd. When the user right-clicks on the view a popup menu is created. Some commands of the popup menu might...
  12. Replies
    7
    Views
    1,053

    Re: Coder speed challenge

    Well it seems noone, except TheCPUWizard is willing to participate. I suggest we give it another day or so and maybe someone else will post something.

    It seemed like a nice idea, though. ...
  13. Replies
    9
    Views
    6,457

    Re: Decent Text Editor For Large Files?

    Take a look at SciTE. It's my personal favourite. Fast, simple with some pretty nice features for a developer (like syntax highlighting, code completion and integration with a lot of compilers and...
  14. Replies
    7
    Views
    1,053

    Re: Coder speed challenge

    Take another look at the problem and at the sample i/o :) By 'split' I meant a pure geometrical split. Inserting spaces in the appropriate places if you like

    1234567 can only be split in two ways...
  15. Replies
    7
    Views
    1,053

    Re: Coder speed challenge

    Sounds fair.
    Rules updated. ;)
  16. Replies
    7
    Views
    1,053

    Coder speed challenge

    Hey,

    I have an idea for a game. Here are the rules

    1. The current Game Master states a simple programming problem.
    2. The players post their solutions for the problem in any language that they...
  17. Replies
    3,704
    Views
    342,600

    Poll: Re: Where are we from ?

    Hi from me too. :)

    I may not qualify as a veteran bu it's nice to visit this reuinion, though.

    Merry Christmas http://www.clicksmilies.com/s1106/weihnachten/xmas-smiley-030.gif
  18. Replies
    7
    Views
    972

    Re: template classes & static members

    Or you can make code which does not need to call an explicit initializing function.

    Like that:


    template <class T>
    class Singleton
    {
    public:
    static T& getInstance();
  19. Using ms devenv with multiple languages

    Hello,

    There are several extensions for visual studio that enable the environment to behave in a special way for file types different from the original ones that it supports (cpp, bas, cs ......
  20. Replies
    21
    Views
    1,367

    Re: Linking with another executable

    This particular software is an internal company tool that will operate with huge, GIGANTIC even, data and we prefer for it to work straight 10 days, rather than 11. So no users will complain about...
  21. Replies
    21
    Views
    1,367

    Re: Linking with another executable

    Well I am not saying that it's unbearable... but it still is irritating.
    But alas I will have to live with it :)
  22. Replies
    21
    Views
    1,367

    Re: Linking with another executable

    About the dlls.
    Unfortunately with this program, speed is of the utmost essense, and dll files give a good 2-3% overhead when being executed.
    Anyway a 9mb executable file is not a very disturbing...
  23. Replies
    21
    Views
    1,367

    Re: Linking with another executable

    Yep... and with libraries like Boost, LuaBind and even the standard library, the compiler expands the template code to 6-7 times it's original size
  24. Replies
    21
    Views
    1,367

    Re: Linking with another executable

    Well it's amd athlon 64 x2 dual core 3800+ (2 ghz), 2 gb ram, hdd hitachi sata2 7200rpm 8mb cache

    Should I really?
  25. Replies
    21
    Views
    1,367

    Re: Linking with another executable

    Well it takes about 20 seconds for the linker to make an executable and about 14 seconds for the librarian to build the library.

    I just wanted to skip these 14 seconds somehow...
Results 1 to 25 of 119
Page 1 of 5 1 2 3 4



HTML5 Development Center

Click Here to Expand Forum to Full Width