hi yall!
first you should know i followed the instructions from here:
http://bytes.com/topic/asp-net/answers/309994-creating-setup-install-into-gac-where-can-i-find-example (2nd post, by Mike)
i followed his exact instructions.
after i added my assembly i had to put the .tbl in an other folder (i picked one randomly: Desktop of user) After compiling i revcieve the setup.exe.
When i run this on a target pc...
Search Result
Collapse
46 results in 0.0016 seconds.
Keywords
Members
Tags
-
Passing dll parameters & use it in java applet ?
Hi,
I'm working on some project which in it i use labview to make a vi then i convert this vi to a dll file with the parameters i used in the vi.
so i want use this dll into my applet .. in other words i want to make communication between java & dll parameters.
I searched about how to make this issue & i found that i must use the JNI to make connection between the java & the native code of... -
How to convert/marshall C Function and DLL Structure type to C#
Hi,
Can someone please help me convert my C structure/function into C#? I really need this badly...
I believe I can call the DLL properly if I have able to correctly convert the function and marshal properly my structure.
Here is my struct and the function that uses it:
...Code:typedef struct UIclient_info { char name[50]; int age; SECONDUSER *stParent; } FIRSTUSER; -
Passing structure to unmanaged code from C#
Hi all,
I've been fighting this problem for some time now and am hoping someone can help. I'm converting a VB6 application to C#. Everything I'm about to show works perfect in VB6, but fails in C#.
I'm making an API call into a C dll, passing a structure. The structure gets values modified in the C side and I should see the modified values in my return structure.
Here are the C structures:
... -
calling a DLL from VB.net, with a pointer to a string.
Hi,
I need to call a DLL function, from vb.net. The c++ header for the DLL looks like this
Code:GRIDHANDLE tek_CreateGrid (const char* const kszMapName, DEVICEINDEX devIndex )
GRIDHANDLE and DEVICEINDEX are both integer types.
In vb.net I need to pass a null terminated string, with a value in it, to kszMapName. If the DLL was just expecting a cString, passed in as a parameter, I'd be golden....Last edited by Frinavale; Sep 19 '11, 04:14 PM. -
"Memory Full" Crystal Report Viewer using external PDF417 dll
Hi
I get a "Memory full" error when I try previewing my crystal report.
I have a simple crystal report that should displays a 2D barcode for a shipping label:
1. I created a formula field and used the IDAutomationPDF 417EncoderMOD10 function from a dll that comes with the DAutomationPDF4 17Encoder demo
2. Selected a field from a table which only has one record
3. Dragged the field... -
MaartenHeijkoop started a topic How can I add a DLL ref to a user-defined lib, such as a user manual?in AccessHow can I add a DLL ref to a user-defined lib, such as a user manual?
I am writing a user's manual for a Ms Access application.
A first concept is written in Word. I'm wondering whether a manual can be structured as a help file to be added as a library reference in the Access application.
Has anyone ever added a user-defined library reference?
Thanks in advance for any help! -
How to link dll in a VS 2008 project?
Hi!
I am making a project in Visual Studio 2008 with making use of integrated Intel Fortran Compiler (ver. 11.1). The program is written in Fortran and uses netCDF for writing results of its calculations.
When I worked with this program using old Compaq Visual Fortran, there were no problems niether with the code nor with netCDF (only 3 files related to netcdf were used: netcdf.fi, netcdf.dll and netcdf.lib). But now,... -
accessing dll from python using ctypes...
Hi,
I know that to access any dll from python one should use ctypes. Till now I haven't been able to get it working (I tried both declarations to initialize). Problem that I think is that the dll uses a lot of #define and its own custom structures, of which I couldn't find the definition in ctypes.
I can't see how to go exactly using ctypes, is my problem justified or I missed to see something really important. Also... -
Dave Kennedy started a topic How to fix "satellite assemblies required are loadable and fully signed" error?in .NETHow to fix "satellite assemblies required are loadable and fully signed" error?
Hi,
Env:
Windows XP,
Visual Studio 2008,
Target Framework: .Net Framework 3.5
C#,
POS for .NET v1.12 SDK
I am developing a custom MSR Service Object (PoshMsr.cs) based on ExampleMsr.cs.
There is an issue with the TargetInvocatio nException exception:
1. Make sure "Strings.resour ces" was correctly embedded or linked into assembly "POSH_MSR_S O" at compile... -
How to refer to vb.net dll from a vb.net web application asynchronously?
I've a vb.net web application where I'm referring to another vb.net dll by adding the reference of the dll and creating the object but after the call it waits for dll to finish operation and return a value before moving forward, is there a way I can do the same job asynchronously. -
Webservices and DLL's (in third party software)
I realise that many people have asked very similar questions, however none of the solutions outlined seem to quite fit my problem.
I should point out that I am new to both c# and the very idea of WebServices ....
I have a Webservice that calls a managed (?) DLL from a third party. This DLL in turn requires another DLL (not managed), which appears to me to be C or C++ based.
When I try to run the WebService, I... -
Why does MS Access 2007 keep restarting itself?
I have an old MS Access 2007 project and I have moved some of its procedures to VB.NET using VS 2008. I have compiled the DLL and MS Access can use it successfully.
But when I exit MS Access it restarts automatically with no database loaded, just a blank MS Access screen, with no ribbon and the status bar at the bottom says Ready.
Even if I exit from this spurious MS Access it restarts immediately and returns to this... -
Load modified dll at runtime
I have developed a c sharp addin on outlook which calls a dll That I have put on a network drive mapped on all machines. the addin will be installed on 1000 machines.
When I get a bug in my application, I go to change the code in the dll and I compile it again and spread it on the mapped network drive. But how to make the client load the new version of the dll at runtime. I need to make all the changes done to the url transparent.... -
How to use Singletons over dll boundaries?
Hi all,
actually i migrate our Linux sources to windows using MSYS/MinGW. Now I've to migrate several global utility singletons (template based) , which are placed in a shared library, everything is working fine with Linux and in context of the dll.
The singleton:
...Code:template <class T> class brSingleton { public: static T& getInstance(){ if(m_instance