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

Search:

Type: Posts; User: matze42

Page 1 of 7 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    1
    Views
    811

    Printing Unicode Direct

    Hi there,

    I have a problem with printing unicode text.
    In my (UNICODE) Application I have to print a protocoll directly to the printer. I do this via OpenPrinter() and then WritePrinter() with...
  2. Replies
    0
    Views
    767

    BLOB Data and Stream

    Hi,

    i have to write and read Blob Data from an SQL-Server Database.
    Currently i do this with a Stream by Saving and Loading the data to a local File ( usualy a temp-file ).

    As the Blob Data...
  3. Replies
    2
    Views
    737

    Re: UserControls and ToolBox

    Hi FoodBard,

    thanks for reply.
    I already references the projects.
    I think the problem is the IDE, which loads the dlls and don't releases it.

    Matze
  4. Replies
    2
    Views
    737

    UserControls and ToolBox

    Hi,

    I have some trouble with a C# controls dll and the Visual Studio ToolBox.
    ( Visual Studio 2003, .NET 1 ).

    The Situation is:
    I have one c# dll with some usercontrols in it.
    I have ...
  5. Replies
    3
    Views
    1,293

    Software and Standards

    Hi,

    our company currently plans to get accredited by
    ISO 9001 quality-management standard ( in germany ).

    Softwaredevelopment is a great part in our business.
    Now the question came up, if...
  6. Replies
    2
    Views
    1,111

    Re: Capture Tab- and Arrow Keys

    Hi Shuja Ali,

    ... Perfect. It works.
    Thank you very much.

    Greetings,
    Matze
  7. Replies
    2
    Views
    1,111

    Capture Tab- and Arrow Keys

    Hi there,

    i'm having a little problem with capturing Tab- and Arrow Key Events.

    I have a Form with some controls on it.

    Now i set the focus to one control ( something inherited from...
  8. Replies
    4
    Views
    853

    Re: Retrieving Version of IE

    Hi Victor, hi humtpydumpty,

    thank you very much for your fast replies.

    GetFileVersionInfo is difficult to use, as first i have to find out where IE is installed ( also take into account which...
  9. Replies
    4
    Views
    853

    Retrieving Version of IE

    Hi there,

    i'm looking for a way to retrieve the current version of the Internet Explorer
    from a CHtmlView ( or from other sources ).

    Backround is:
    I want to use direct printing (without user...
  10. Re: function needed to convert hostname to ipaddress

    Sure, but Microsoft says in MSDN:

    Note The gethostbyname function has been deprecated by the introduction of the getaddrinfo function. Developers creating Windows Sockets 2 applications are urged...
  11. Re: function needed to convert hostname to ipaddress

    Hi sankris,

    try "getaddrinfo" ( WinSock 2 ).
    For details see the MSDN or ask again.

    Hope this helps,
    Matze
  12. Replies
    4
    Views
    996

    Re: Free RS232 Monitoring software?

    Hi loic,

    is this what you're looking for ?

    http://www.sysinternals.com/Utilities/Portmon.html

    Greetings,
    Matze
  13. Re: File Monitoring (Read,Write etc...) monitoring system.

    Hi,

    if you can use Win-API, take a look at "ReadDirectoryChangesW" in the MSDN.
    This works fine and uncomplicated.

    Hope this helps,
    Matze
  14. Replies
    11
    Views
    3,177

    Re: Strange Deadlock while terminating a thread

    Hi Arjay,

    like described above i first try to signal the thread to finish itself, by setting the stop flag.
    And then if its not ended in between 5 sec. i terminate it via TerminateThread.

    The...
  15. Replies
    11
    Views
    3,177

    Re: Strange Deadlock while terminating a thread

    Hi Kuphryn,

    first, thank you very much for your interest in this subject.
    second, i did a little mistake in my last post.
    sure it must be:



    while( GetExitCode() == STILL_ACTIVE )
    {
  16. Replies
    11
    Views
    3,177

    Re: Strange Deadlock while terminating a thread

    Hi kuphryn,

    if you mean the part


    if ( !WaitForStopped( 5 seconds ) )
    {
    // Terminate if not stopped
    Terminate();
    }
  17. Replies
    11
    Views
    3,177

    Re: Strange Deadlock while terminating a thread

    Hi kuphryn and wxuf,

    thank you for reply.
    I try to describe it with some (pseudo) code:




    // The base class
    class CBaseClass
  18. Replies
    11
    Views
    3,177

    Strange Deadlock while terminating a thread

    Hi,

    i encountered a strange error in my application.
    As the whole code is quite too complex to post here, i try a short version
    of the problem.

    First, I have a thread, which calls an...
  19. Replies
    3
    Views
    1,076

    Re: Printing XML/XSL with ShellExecute

    Hi usman,

    sorry for responding but now, but i was very busy the last weeks.
    But now i have time to deal with this subject again.

    The thing with the PrintDialog is exactly my problem, as...
  20. Replies
    3
    Views
    1,076

    Re: Printing XML/XSL with ShellExecute

    ... sorry,
    but just to keep thread alive.

    Matze
  21. Replies
    3
    Views
    1,076

    Printing XML/XSL with ShellExecute

    Hello,

    is there any way to print a XML-Document associated with Stylesheet ( XSL ) via
    ShellExecute ?

    i.e. like HTML
    ShellExecute( hWnd, "print", "File.html", NULL, "Dir", SW_... );

    ......
  22. Replies
    9
    Views
    1,116

    Re: Copy Ressources

    OK, works.

    Although i'm almost sure, it didn't work the first time i tried it. :confused:

    Thank you very much,
    Matze
  23. Replies
    9
    Views
    1,116

    Re: Copy Ressources

    AHA !?!

    I will try this.
    Copying the Ressource-Template worked.
    But where can I past it ?

    Matze
  24. Replies
    9
    Views
    1,116

    Re: Copy Ressources

    Hi gstercken,



    This way works.
    But only if i create a new (empty) Dialog, copy the binary-data of my source and overwrite the binary-data of my target with the copy.

    As a remark: One should...
  25. Replies
    9
    Views
    1,116

    Copy Ressources

    Hi,

    i have a mfc-dll with some dialogs in it.

    Now i want to make a little redesign, and having another mfc-dll, in which
    i want to have some of the dialogs of the first mentioned mfc-dll.
    ...
Results 1 to 25 of 154
Page 1 of 7 1 2 3 4





Click Here to Expand Forum to Full Width

Featured