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

Search:

Type: Posts; User: BigMan

Page 1 of 4 1 2 3 4

Search: Search took 0.14 seconds.

  1. Replies
    3
    Views
    588

    The exe file!

    The exe file!
  2. Replies
    3
    Views
    588

    How does a process delete its own image?

    How does a process delete its own image without leaving any resources behind (including temp files)?
  3. a potential resource leak in _bstr_t constructor?

    Assume we have this piece of code (taken from a tli file - automatically
    generated when #import-ing a tlb):





    inline _bstr_t SomeInterface::GetName ( ) {

    BSTR _result = 0;
  4. Replies
    0
    Views
    2,905

    scaling a GDI+ bitmap

    1.How to scale a GDI+ bitmap into a GDI+ bitmap? That is, I have a Bitmap object and I want to get another Bitmap object - a scaled copy of the first one.

    2.How do I get the color planes of a GDI+...
  5. Replies
    3
    Views
    1,564

    GDI+ bitmap scaling and color planes

    1.How to scale a GDI+ bitmap into a GDI+ bitmap? That is, I have a Bitmap object and I want to get another Bitmap object - a scaled copy of the first one.

    2.How do I get the color planes of a GDI+...
  6. Replies
    3
    Views
    1,564

    StretchBlt results in a dotted bitmap

    Hi!

    I'm stretching a bitmap with StretchBlt in HALFTONE mode (set via a call to
    SetStretchBltMode). As a result I get a dotted bitmap. This seems to happen
    only with bitmaps with large areas of...
  7. Replies
    4
    Views
    957

    another suggestion

    Maybe you'd be better write a DLL that accesses the task manager through Win API and try loading and unloading the DLL via calls to the install shield functions LoadDLL and Unload DLL.
  8. Replies
    3
    Views
    1,928

    explanation

    What's wrong ... with the explanation.
    There are 2 processes, process 1 (MFC app) creates another process (console app) that executes ShellExecute to open a URL. Process 1 watis for the child to...
  9. Replies
    4
    Views
    957

    I hope this will help

    Entries in
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run\
    and
    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run

    are run on each login. You can alternatively put...
  10. TYPE_E_CANTLOADLIBRARY while automating excel XP

    I get the following error while automating excel XP: TYPE_E_CANTLOADLIBRARY.
    The same problem occurs if I try to open excel.exe with the OLE/COM Object viewer. I have office XP isntalled (no SP,...
  11. Replies
    3
    Views
    1,928

    MFC, CreateProcess and ShellExecute problem

    So ... another problem using MFC here:
    scenario:
    2 applications:
    1.console application:
    #include <tchar.h>

    #include <windows.h>

    void main( )
  12. Thread: C++ Macros

    by BigMan
    Replies
    7
    Views
    888

    fine, thanx

    All these work fine:) 10x. In fact, it turns out that I need these values at compile time, not at run time. And here comes the real problem: I have an array of structures( which contain a string, an...
  13. Thread: C++ Macros

    by BigMan
    Replies
    7
    Views
    888

    sorry

    It's not very clear, you're right. I want to get the next integer from the sequence for the next ocurrence of the macro. E.g.

    int const i = X; // yields 1
    int const j = X; // yields 2
  14. Thread: C++ Macros

    by BigMan
    Replies
    7
    Views
    888

    C++ Macros

    Hi! I need a way to get a sequence of integers (e.g. 0, 1, 2, 3 ...) for every ocurrence of a particular identifier. If this identifier is a macro it should be replaced by the appropriate element of...
  15. Thread: ISAM problem

    by BigMan
    Replies
    0
    Views
    552

    ISAM problem

    Hi! I'm updating (or deleting) an CSV database through OLE DB (using ADO). I get an "Updating a linked table is not supported be this ISAM". What should I do? Thanks in advance!
  16. Thread: .mny files

    by BigMan
    Replies
    0
    Views
    788

    .mny files

    Hi! I'd like to open (read & write) .mny files (MS Money). Does anyone know of a driver or OLE DB provider for accessing .mny?!
  17. Replies
    2
    Views
    2,279

    .NET asynchronous programming

    Hi! Has anyone heard anything about .NET suppport for cuncurrent and/or asynchronous programming. Articles, sites ... anything ... Thanks in advance.
  18. Replies
    0
    Views
    558

    .NET asynchronous programming

    Hi! Has anyone heard anything about .NET suppport for cuncurrent and/or asynchronous programming. Articles, sites ... anything ... Thanks in advance.
  19. Replies
    0
    Views
    1,018

    Visual Studio Installer

    Hi! I want to deploy my application through Visual Studio Installer. It generates the MSI file which I start and after the first dialogs that gather info about the installation destination and type...
  20. Replies
    0
    Views
    610

    ODBC language settings

    Hi! How do I set the code page for the ODBC dbase driver?
  21. Replies
    10
    Views
    1,044

    Constructors & Destructors return values

    Although C++ class constructors & destructors do not declare a return type, they DO have return types. Destructors ALWAYS return void and constructors ALWAYS return the object they construct.
  22. Replies
    2
    Views
    602

    Re: ReadFile hangs on Win98

    This has been done and communication has been going on for a while before this ...
  23. Replies
    2
    Views
    602

    ReadFile hangs on Win98

    Hi! I'm reading data from COM ports and I suddenly encountered that ReadFile hangs on Win98... any ideas are welcome ...
  24. Replies
    0
    Views
    953

    Cyrillic strings in dbf

    Hi! I'm using ADO for ODBC to access a dBase (.dbf) file. On Windows 98 I
    cannot insert cyrillic text. The insert command succeeds but it is not
    written correctly to the .dbf file. The OEM code...
  25. Replies
    2
    Views
    607

    Re: WriteFile mystics

    Yes, I know this now, but I was wondering why the throw statement crashes after a null write operation.
Results 1 to 25 of 100
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured