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

Search:

Type: Posts; User: Large

Page 1 of 12 1 2 3 4

Search: Search took 0.14 seconds.

  1. Re: Lateloading of x86 / x64 bit DLL keyboard files and init defines

    As a result of handling DLL-files between x86 and x64, I made a wrapper:
    http://www.codeproject.com/Articles/439275/Loading-keyboard-layout-KbdLayerDescriptor-in-32-6

    This should handle the...
  2. Replies
    3
    Views
    817

    Re: Login into main site?

    If I want to publish a new article, should I then create a new user for the CMS and then codeguru will link it to my articles later on?
  3. Replies
    3
    Views
    817

    Login into main site?

    Hi!

    Earlier the forum-user/pass was attached to the main-site codeguru.com.

    This isn't the case any more, I cannot login since the user isn't recognized. My forum-user still lives though :)...
  4. Re: Lateloading of x86 / x64 bit DLL keyboard files and init defines

    kwhat:
    I used the solution described from Igor by loading x86-dlls on a 64bit-system from the %windir%\SysWOW64 directory.
    On x86-systems I load them from the %windir%\system32.
    I seems to work on...
  5. Re: Lateloading of x86 / x64 bit DLL keyboard files and init defines

    VictorN:
    That isn't really an option, since I want to use the already installed keyboard layouts that is available in the %windir%\system32\ directory.

    But it would "solve" the problem if I...
  6. Lateloading of x86 / x64 bit DLL keyboard files and init defines

    Hi

    I currently have an issue with the init of lateloading DLLs (keyboard files) that is compiled either with x86 or x64. The app is a simple C++ MFC application (32-bit)

    First, here is a...
  7. Thread: Sliding CWnd

    by Large
    Replies
    0
    Views
    516

    Sliding CWnd

    Hi

    I'm currently working on a fullscreen-app for touchscreens and I wonder if anyone have experience?

    The effect I want to get is to slide (swipe) between two, or more, CDialog windows that are...
  8. Replies
    9
    Views
    1,642

    Re: Thread callback handling, best practices?

    Arjay:
    Sure, if I made manage code I'll use QueueUserWorkItem()

    For info, I found a great article for the new Threadpool in Vista: http://msdn.microsoft.com/en-us/magazine/cc163327.aspx

    I...
  9. Replies
    9
    Views
    1,642

    Re: Thread callback handling, best practices?

    MikeAThon:
    That was it...
    I mixed SendMessage/PostMessage from earlier code.

    By adding some criticalsections everything synched great for getting text between threads and main program.

    All:...
  10. Replies
    9
    Views
    1,642

    Thread callback handling, best practices?

    Hi

    I have a worker-thread that send a callback WM_APP-message to the parent when finished.

    (.... workerthread end...)
    ::SendMessage(hParent, WM_APP+101, NULL, NULL);
    return 0;
    }

    In the...
  11. Using Cmake to create TagLib for Visual Studio 2010 independent

    Hi

    I'm currently working on a MFC project to that needs a ID3-reader (that is quite updated) and the only alternative I know of is TagLib: http://developer.kde.org/~wheeler/taglib.html (equal and...
  12. Replies
    3
    Views
    2,450

    Re: Best way to store an array of pointers

    Paul & Philip you are both right...

    I got time to test it out of the project.
    The main program (which is too complex atm) does have a vector of objects several places.

    Replacing them to...
  13. Replies
    3
    Views
    2,450

    Best way to store an array of pointers

    Hi

    I have usually created stuff in Visual Studio 6.0 but have now moved on to Visual Studio 2010. The compiler are more strict and I have trouble using "old hacks" and need to learn something...
  14. Re: Unmanaged host (exe) trying to load managed (dll) as a MFC extension

    That was a rookie mistake ;)
    Thank you VictorN, been a while with C++, hehe

    Found a great example here btw: http://devonethatdevelops.wordpress.com/2007/10/30/wpf-win32-interop-with-hwndsource/
  15. Unmanaged host (exe) trying to load managed (dll) as a MFC extension

    Hi

    As the topic says:
    Unmanaged host (exe) trying to load managed (dll) as a MFC extension.
    Is it possible?

    The main host (exe) is not compiled with the /clr and I've just added a MFC...
  16. Replies
    3
    Views
    6,591

    Re: CListCtrl smooth scroll and touch-behavior?

    Thanks for replies guys...
    I was getting frustrated that why I wrote the post ;)

    My solution was to use the customdraw effect of the ClistCtrl to achive the smoothscroll for report-view.
    Then I...
  17. Replies
    3
    Views
    6,591

    CListCtrl smooth scroll and touch-behavior?

    Hi

    Does anyone have experience of making the CListCtrl function like listview on eg Android/iPhones?

    I managed to get the smoothscroll for CListCtrl to work pretty good, but I'm challenged with...
  18. Replies
    19
    Views
    6,731

    Re: New to c#, how to add user control?

    Please take a look on the post: http://www.codeguru.com/forum/showpost.php?p=1571025&postcount=14

    The problem is on every control you added. I just worked on getting the Officepanels...
  19. Replies
    19
    Views
    6,731

    Re: New to c#, how to add user control?

    It seems to be a strange bug for me. Guess the IDE thingy ain't so great after all
  20. Replies
    19
    Views
    6,731

    Re: New to c#, how to add user control?

    Any luck with this? I have the exactly same problem. When I first setup the VS2005 I choosed C++ layout for menus and so on. Did you do the same?

    Edit:
    "Fix" found. Seems to be an error when you...
  21. Replies
    7
    Views
    1,371

    Re: Need help to like Visual Studio 2005

    The commandprompt function is great! I've never used that before. Thanks Vladimir that sure helps to get things quicker done.

    If you have any more tips keep'em comming. I'm really tries to start...
  22. Replies
    7
    Views
    1,371

    Re: Need help to like Visual Studio 2005

    I know, and the habbit is so grown into me. That is why I'm having problems "converting" to the new Visual Studio. I'm just going to program C++ and not .NET
    Now a days every project uses this...
  23. Replies
    7
    Views
    1,371

    Re: Need help to like Visual Studio 2005

    Hello Vladimir

    I'm glad to se people actually like the editor. Now I dunno how much you have used the editors from VS6.0 but I assume you'd used them alot :)

    I asked the questions non-spesific...
  24. Replies
    7
    Views
    1,371

    Need help to like Visual Studio 2005

    Hi there!

    This question is not perfectly related to C++ only. As you can see from the title: "I need help to like Visual Studio 2005".

    Background:
    I've started off learning C++ with MFC on the...
  25. Replies
    71
    Views
    8,014

    Re: Resource greedy ads

    Brad Jones: I noticed that you've deleted my post just because I had a different solution to the problem than you. As moderator you should comment om posts like these insted of deleting them. I guess...
Results 1 to 25 of 297
Page 1 of 12 1 2 3 4





Click Here to Expand Forum to Full Width

Featured