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

Search:

Type: Posts; User: yoesak

Search: Search took 0.05 seconds.

  1. Replies
    4
    Views
    1,023

    if you would send to another dialog with...

    if you would send to another dialog with different process use WM_COPYDATA
  2. Replies
    0
    Views
    717

    CDC Help!!

    Hi,

    My problem is :

    Why every time I call DrawText() with DT_CALCRECT parameter, I get different result if I use different printer, although I use a same string with multiline ?

    Thanks
  3. Replies
    5
    Views
    1,213

    strFileType = L"text file *.txt\0*.txt\0" --> try...

    strFileType = L"text file *.txt\0*.txt\0" --> try changes this line with :

    strFileType = _T("text file *.txt" ) + _T('\0');
    strFileType += _T("*.txt") + _T('\0');

    or

    strFileType = L"text...
  4. Replies
    0
    Views
    506

    Printing Component or Library help !

    Does anyone know where can I find class library or ActiveX for printing, (suppose is free), I need the class library that support printing image surrounded with text (like newspaper layout) ?

    Or...
  5. Replies
    5
    Views
    1,213

    Why do you use \0 use this character _T('|') ...

    Why do you use \0 use this character _T('|')

    if you want to show unicode character in debug, you must set Tools->options->debug->Display Unicode String must be mark.
  6. Replies
    0
    Views
    425

    Printing DC Help

    How can I copy printing DC to memory DC or otherwise ?

    Thanks
  7. Replies
    0
    Views
    397

    Printing CDC to memory CDC

    Does anyone know how to copy Printing CDC to memory CDC or otherwise ?

    and How to create DC for printing ?

    Thanks
  8. Replies
    2
    Views
    537

    Is there any class to do that or developer tools...

    Is there any class to do that or developer tools to do that in windows box ?

    Thanks
  9. Thread: Unicode Ide

    by yoesak
    Replies
    1
    Views
    491

    Unicode Ide

    How to make MSVC IDE support for unicode character ?

    Thanks
  10. Replies
    0
    Views
    470

    Setting Print Dialog Help !

    Can I set the print current page in the print dialog box, how ?
    Can someone give me the code ?

    And I how can I set paper size in the print dialog box ?

    Thanks :thumb:
  11. Thread: Dialog in DLL

    by yoesak
    Replies
    3
    Views
    700

    Do you have a sample code ? Where I can find a...

    Do you have a sample code ?

    Where I can find a nice tutorial about COM / Active-X ?

    Thanks

    - Yusak -
  12. Thread: Dialog in DLL

    by yoesak
    Replies
    3
    Views
    700

    Dialog in DLL

    How to make a (modal / modeless) dialog in DLL. ?
    Can I access the DLL in Delphi / VB ?
    Can I use LoadLibrary() to load the DLL ?

    Is VB / Delphi can access MFC Extension DLL ?

    Thanks

    -...
  13. Replies
    0
    Views
    506

    Message Handler / Event

    Does VB can implement PreTranslateMessage() method like Visual C++ ?

    TQ,
    >> GBU! <<
  14. Thread: Internet

    by yoesak
    Replies
    0
    Views
    373

    Internet

    How to change gateway programatically ? or to set DNS server programatically ?

    Does anyone know to close an open port ?

    Thanks
  15. Thread: Need Help

    by yoesak
    Replies
    0
    Views
    422

    Need Help

    Is there anyway to block internet connection in Win9x (dial-up or through proxy) ?

    Thanks
  16. Maybe you can hook all message that sent to that...

    Maybe you can hook all message that sent to that process to catch OnClick() event
  17. Replies
    6
    Views
    1,339

    Try sample code :: CWnd * pWnd =...

    Try sample code ::

    CWnd * pWnd = GetDesktopWindow();
    CDC * dc;
    if (pWnd)
    {
    dc = pWnd->GetWindowDC();
    if (dc)
    {
    dc->TextOut(100, 100, "Hello World");
  18. Replies
    1
    Views
    1,185

    Have you copy all file in directory \Program...

    Have you copy all file in directory \Program Files\Common Files\System\ado\*.* ?

    I don't know is this solve your problem or not, but there is nothing to lose if you try :)

    GBU!
  19. Thread: Internet Access

    by yoesak
    Replies
    0
    Views
    462

    Internet Access

    Does anyone know how to block internet access programatically in Win9x or WinNT/2k ?

    thanks
  20. Replies
    2
    Views
    590

    try this code, I got from this site too. Hope...

    try this code, I got from this site too. Hope this will help you :

    void CRemotePCDlg::CDOpen(BOOL bOpen, TCHAR cDrive)
    {
    MCI_OPEN_PARMS op;
    MCI_STATUS_PARMS st;
    DWORD flags;

    TCHAR...
Results 1 to 20 of 20





Click Here to Expand Forum to Full Width

Featured