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

Search:

Type: Posts; User: Winni

Search: Search took 0.04 seconds.

  1. Thread: SQL standards?

    by Winni
    Replies
    1
    Views
    600

    SQL standards?

    Hi,

    we currently try to develop an application, which is capable to work with different databases. The interface is ADO.
    The problem is that the some providers (native ADO Access 2000, SQL...
  2. Replies
    1
    Views
    540

    receiving data from lpt1?

    Hi,

    some printer ESC-sequences produce an answer giving back some bytes, for example when I want to check the status of a paper sensor. But how can I read this? I do the communication with...
  3. Thread: Crystal Report

    by Winni
    Replies
    579
    Views
    648,024

    changing the print document name

    Hi,

    to use a crystal reports print with a special fax printer driver, i have to assign different names to the print jobs, as they appear later in the printer queue. Crystal reports always names...
  4. assign crystal reports document name in printer queue

    Hi,

    to use a crystal reports print with a special fax printer driver, i have to assign different names to the print jobs, as they appear later in the printer queue. Crystal reports always names...
  5. Replies
    2
    Views
    656

    Solution

    Hi,

    the problem was, that i had to call CoInitialize/CoUninitialize in the thread routine. After inserting this it works. Strange, that win 2000 doesn´t mind.

    Thanks,

    winni
  6. Replies
    13
    Views
    1,379

    Hi, perhaps you are using some ActiveX...

    Hi,

    perhaps you are using some ActiveX controls or Dlls, which are not registered on the other system?

    Hope it helps

    Winni
  7. Replies
    2
    Views
    656

    ADO threads in win98

    Hi,

    im using ADO to read an Access 2000 database. Now i tried to do the reading in a separate thread using AfxBeginThread. This works fine with Windows 2000, but crashes with Windows 98, when I...
  8. Replies
    4
    Views
    1,090

    Hi, I think the api function "FindWindow"...

    Hi,

    I think the api function "FindWindow" should help you.

    Winni
  9. Replies
    1
    Views
    564

    Which keyboard was used?

    Hi,

    i´m using an usb and a ps/2 keyboard at the same time. Is it possible to determine, which keyboard i used, when a key was pressed?

    Thanks,

    Winni
  10. Replies
    0
    Views
    501

    Mail encryption and signing

    Hi,

    I´d like to sign and encrypt mails, that I send from my app with one of the nice mapi classes from codeguru. I´ve read about the MS CryptoApi, but dont know how to combine encryption and...
  11. Replies
    3
    Views
    581

    Hi, thanks for the replies. I think, I have to...

    Hi,

    thanks for the replies. I think, I have to make things clearer. I´ve already subclassed the edit control and catch the WM_RBUTTONDOWN. What I want to do is, get a handle to the standard...
  12. Replies
    5
    Views
    1,347

    Hi, also have a look at GDI+ from MS. Its a...

    Hi,

    also have a look at GDI+ from MS. Its a new GDI library used in XP, that supports loading and displaying various file formats with zooming, stretching, rotating...

    cu,

    Winni
  13. Replies
    3
    Views
    581

    Extending edit menu

    Hi,

    is there a way to extend the standard menu, that appears on right clicking an edit control, with own commands?

    Thanks,

    Winni
  14. Replies
    0
    Views
    404

    ownerdrawn window caption bar with xp

    Hi,

    I developed an ownerdrawn caption bar, that has some extra buttons beside the standard max/min/restore/close controls. The standard controls are draw with

    dc.DrawFrameControl(&rc,...
  15. Replies
    1
    Views
    589

    Re: GDI+ and Windows XP

    Hi,

    I´ve found the answer. As mentioned in the gdi+ section here in codeguru, ms has altered some things in the final release. After inserting the gdiplusstartup and gdiplusshutdown FromFile also...
  16. Replies
    1
    Views
    589

    GDI+ and Windows XP

    Hi,

    has anybody tried to use image loading with gdi+ (with constructor or ::FromFile) under XP? Loading allways fails, while it works with all previous Windows systems.

    Thanks,

    Christian
  17. Thread: AfxGetApp in DLL

    by Winni
    Replies
    1
    Views
    3,065

    Re: AfxGetApp in DLL

    Hi,

    try this in your dll code:

    // switch thread state back to application
    _AFX_THREAD_STATE* pState = AfxGetThreadState();
    AfxSetModuleState(pState->m_pPrevModuleState);

    // do something...
  18. Thread: PDF form filling

    by Winni
    Replies
    0
    Views
    325

    PDF form filling

    Hi,

    I´m searching for a class, lib, dll or whatever, that can fill the forms of a given pdf file from a vc++ app. I know about acrobat sdk, but this would be to much.

    Thanx,

    Christian
  19. Replies
    1
    Views
    523

    Fading dialogs like Windows2000

    Hi,

    there is a new feature in windows 2000, that pops up windows an menus with a soft fade in. Has anybody an idea, how to do this in an application with CWnd-derived windows?

    Thanks,
    ...
  20. Replies
    1
    Views
    576

    Print to file with PDFWriter

    Hi,

    i wrote an app, that should create a pdf file with a given name, when printing the current view. I tried it with Adobes pdfwriter setting the devnames member "wOutputOffset" to the filename....
Results 1 to 20 of 20





Click Here to Expand Forum to Full Width

Featured