Thread: Ref

  1. #1
    Ref_chick
    Guest

    Ref

    If I create a reference to the DirectShow COM DLL (or any other non .NET DLL) and send it out to clients, will they need this dll installed ? or will the reference make a copy of it in the .exe and carry it around without the .dll file ?

  2. #2
    the hat of redundancy hat nvoigt's Avatar
    Join Date
    Aug 2001
    Location
    Hannover, Germany
    Posts
    3,130
    In case of DirectX they will definetly need the whole DirectX installed. And while we are at it, have a look at DX9, it has a very nice manageg C++ and C# interface.
    hth
    -nv

    She was so Blonde, she spent 20 minutes looking at the orange juice can because it said "Concentrate."

    When in doubt, read the FAQ.
    Then ask a smart question.

  3. #3
    Ref_chick
    Guest
    ok I'll check it out.

    but

    What about other Non dot net / Non Direct X DLL's ?

  4. #4
    the hat of redundancy hat nvoigt's Avatar
    Join Date
    Aug 2001
    Location
    Hannover, Germany
    Posts
    3,130
    The client will need a copy of it. Your executable will only have a reference to it. You might find an installer that checks all those dependencies and includes the dlls in your setup, but I'm not sure if the inbuild installer will do this.
    hth
    -nv

    She was so Blonde, she spent 20 minutes looking at the orange juice can because it said "Concentrate."

    When in doubt, read the FAQ.
    Then ask a smart question.

  5. #5
    Ref_Chick
    Guest
    What about Crystal reports ? with the end user need something installed or will the framework runtime cover that ?

    what if it's crystal reports over asp.net ?

  6. #6
    If it's ASP.NET then it is Server-Side executed and generates HTML - nothing extra is needed.
    My Avatar says: "Stay in School"

    Rocco is the Boy!
    "SHUT YOUR LIPS..."

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Ref and out
    By Mavix in forum C# Programming
    Replies: 2
    Last Post: 01-22-2008, 07:54 AM
  2. To pass by ref or not to.
    By prog-bman in forum C++ Programming
    Replies: 10
    Last Post: 04-18-2006, 08:56 PM
  3. C function - Pass by value? Pass By Ref?
    By stevong in forum C Programming
    Replies: 4
    Last Post: 11-18-2005, 08:02 AM
  4. HowTo increase 1 value to the pointer and pass by ref?
    By Mathsniper in forum C Programming
    Replies: 10
    Last Post: 10-29-2005, 05:21 PM
  5. Need ref for some C++ stuff...
    By hypertension in forum C++ Programming
    Replies: 2
    Last Post: 11-11-2003, 05:24 AM