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

Search:

Type: Posts; User: lmoreault

Page 1 of 2 1 2

Search: Search took 0.05 seconds.

  1. Replies
    1
    Views
    924

    AppDomain.Load() issue

    Hi,

    I am trying to load an assembly from my program which I can unload easily. (So we can forget about Assembly.LoadFrom()).

    I have used the AppDomain approach and the Load / Unload methods....
  2. Replies
    3
    Views
    971

    Re: Automatic Build Increment

    That's what I tought but wanted to avoid ;)

    I think I won't have any other choice but to do that.

    Thanks
  3. Replies
    3
    Views
    971

    Automatic Build Increment

    Hi,

    I was wondering (I don't know if I am in the right forum...)

    Is there a way that we can automatically increment the Build part of the Version ressource (.rc) file in a VS2005 project ?
    ...
  4. Replies
    2
    Views
    731

    Re: DataGridView question

    Found my problem...
    I had forgotten to put AcceptChanged() to my second DataTable .... (my bad)

    Now everything is alright
    Thank you anyway for looking.
  5. Replies
    2
    Views
    731

    DataGridView question

    Hi,

    I am having some trouble with my DataGridView control.

    I have a DataView bounded to my DataGridView but I want to use another DataTable as the DataSource for one of my column (which is a...
  6. Replies
    1
    Views
    4,077

    DirectInput Hook

    Hello everyone,

    I want to write my own DirectInput hook to know the requests sent to DirectInput and I would need some help.

    I know how to use DirectX into my own application but now I want to...
  7. Deploying Windows Applications (Using Checkboxes)

    Hi,

    I have done a setup deployment MSI project in Visual Studio 2005 and everything is working fine.

    The only problem I have come up to is when trying to use the "Checkboxes" dialog window in...
  8. Replies
    14
    Views
    2,392

    Re: Library Import vs. Dependencies

    hi Kirants,

    Like I said, I am looking for a solution per project rather than setting Studio's global parameters.

    But thank you anyway.
  9. Replies
    14
    Views
    2,392

    Re: Library Import vs. Dependencies

    Hello Victor

    This was a solution I visited but then turned down as the actual tlb path is determined by a macro built in Visual Studio ($(VCInstallDir)).

    Is there a way to retrieve this...
  10. Replies
    14
    Views
    2,392

    Re: Library Import vs. Dependencies

    Hi Kirants
    Thank you for your help,
    This indeed works, but what I am looking for is a way to do this on a per project setting. Since the source code will be commited to a SVN server and not...
  11. Replies
    14
    Views
    2,392

    Re: Library Import vs. Dependencies

    Just to clarify...
    I would like to add search path per project as we would with the
    "Additional Library Directories" for #pragma comment(lib..)

    but the equivalent project property for #import <>...
  12. Replies
    14
    Views
    2,392

    Re: Library Import vs. Dependencies

    How can I specify the full path to the "tlb" file ?
  13. Replies
    14
    Views
    2,392

    Re: Library Import vs. Dependencies

    the Import is done on a tlb file actually
  14. Replies
    14
    Views
    2,392

    Library Import vs. Dependencies

    Hi,

    I was wondering what was the difference of using the
    #import <myLib.lib>

    and using the Property page's Additional Depedencies (adding myLib.lib)
    and adding the Additional Library...
  15. Replies
    0
    Views
    2,732

    WASAPI in exclusive mode

    Hi,

    I am currently trying to open an audio device in exclusive-mode using PortAudio and the WASAPI sound architechture in Vista.

    I have successfully opened the device in shared-mode but when I...
  16. Replies
    5
    Views
    2,374

    Re: Using DirectInput

    I don't know if its MFC but there is a GUI in there so I don't see clearly the DirectInput code.
  17. Replies
    5
    Views
    2,374

    Using DirectInput

    Nobody's got any links or ideas where I could start ?

    Thank you
  18. Replies
    0
    Views
    3,244

    USB Audio INF File

    Hi,

    I have a quick question.

    I am building a .INF file to use along with USB Sound device driver so that when I plug in a certain device, I can set the master volume for that device.

    I have...
  19. Replies
    5
    Views
    2,374

    Using DirectInput

    Hi,

    I am looking for an easy tutorial on how to read input out of a Joystick or Gamepad with DirectX's DirectInput.

    I have found a code example in MSDN but it has got a huge MFC overhead that I...
  20. Replies
    4
    Views
    803

    Re: Code Generation Question

    Yes they are

    Lets say Project A uses Project B
    A compiled as MT DLL
    B compiled as MT

    it will give me "redifinition" linker error.
  21. Replies
    4
    Views
    803

    Re: Code Generation Question

    And what if one project is compiled with the DLL Code Generation
    and another with the Static Link.... would that create a redifinition or some other kind of error ? (That was more what my question...
  22. Replies
    4
    Views
    803

    Code Generation Question

    Hi,

    I am having some trouble sometimes when compiling a solution including multiple static and dynamic linked library.

    The problem is solved when I change some of my projects Code Generation...
  23. Replies
    3
    Views
    637

    Re: Getting parameters out of a Text file

    Thanks to both of you,

    it will give me a starting point on where to look.

    potatoCode: Sadly, it is not my config file, so I can't force the source .txt file to include some delimiter. I'll...
  24. Replies
    11
    Views
    5,112

    Re: #pragma comment

    If you mean at runtime, there will be no such thing.

    Lib will be statically linked to your .exe file

    What you should deal with is more when linking DLL (with LoadLibrary() for example)
  25. Replies
    3
    Views
    637

    Getting parameters out of a Text file

    Hi,

    I am currently trying to code a simple class that could open a file, parse it, and get parameters from it.

    Here is an example...

    ExampleConfig.txt :
    -------------------------
    myInt...
Results 1 to 25 of 47
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured