LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Using Labview dll in C#

Hi , Im currently converting a VB6 app to C3 that uses a LabView Type Library . The previous developer only gave the file with .tlb extension (e.g. LabView.tlb).

Is this file enough to make  the application work in .NET or i need the other file with .dll or .exe extension (e.g. LabView.dll or LabView.exe)?

Thanks.



Human knowledge belongs to the world
0 Kudos
Message 1 of 2
(2,805 Views)
A .tlb file contains just the information about classes, interfaces, etc. There's no actual code. The actual code is in the .dll file. So without that, you can't really do much of anything.


EDIT: Addendum: That's assuming you're actually trying to run it. If the .tlb is registered with the system, then it should appear (I believe) as a COM object to .NET so you can at least program it.


Message Edited by smercurio_fc on 05-07-2008 09:52 AM
0 Kudos
Message 2 of 2
(2,785 Views)