blah blah blah is here! blah blah » Close

0
votes
1 answers

Make sure people dont need the framework

Hi I made a program in visual c# using the .NET 4.0 framework What dll's do I have to include so people don't need to download the whole framework? greets

0
votes
0 answers

EXEs instead of DLLs to host class libraries

Hello, Before .Net, it was not a good programming practice to use an EXE to host class libraries. I was wondering if it's still the case with .Net. I can make the public classes in my .Net EXEs avaialble to other applications, and I'm ...

0
votes
1 answers

Calling C# dll from VBA

I am trying to create a c# dll and call it from VBA There was an earlier thread here http://www.debugging.com/bug/16542 Microsoft has an example for this, however it only made the functions visible to other c# code, but still not vis ...

0
votes
1 answers

Getting result back from a dll c#

Hi, I am writting a dll and want to return a result back to the calling code. I have tried putting:- public string oSQL2XStreamBridge( string Name) public class string oMyDll both o ...

0
votes
1 answers

include Interop object access error

i have library that i need to use in order to access informations. the library is Interop.DOCQMANCONTROLLAYERLib in editor it doesnt show any problem with code DOCQMANCONTROLLAYERLib.DQMEMFJobClass dc = new DOCQMANCONTROLLAYERLib.DQM ...

0
votes
1 answers

Invoking a C++ .DLL

As a test, I am writing a small C++ .DLL to be invoked from C#. Reading MSDN it looks like I need a C# wrapper which is also to be a .DLL. So in all a C# program as an .EXE, invokes a wrapper which is a C# .DLL, which in turn invokes ...

0
votes
1 answers

assigning values to variables defined within dll

Hi all, In my project on cryptography, I am using DLL to hold all the crypto related functions and then calling these dll functions from my asp.net pages. The encrypt and decrypt functions are separate and can be called by users as p ...

0
votes
2 answers

external dll

I have a dll called KETComm. I impotrted that dll using DLLImport method in c#. I want to create the instance of that dll. How to create???

Feedback