Search found 4 matches

by dundas
Wed Aug 24, 2005 9:14 am
Forum:
Topic: accuracy of ADC 11/12
Replies: 6
Views: 9564

is the corresponding range of voltage and temperature for ADC-11 (V1) as follows?

Code: Select all

0-2.5 V
-40-100 degrees
by dundas
Wed Aug 24, 2005 8:15 am
Forum: General Software Discussions
Topic: Visual Basic and "adc11_get_values"
Replies: 3
Views: 7429

FlexyZ:

I just added them externally

Code: Select all

    Declare Auto Function adc11_run Lib "adc1132.dll" (ByVal no_of_values As Long, ByVal method As Short)
    Declare Auto Function adc11_ready Lib "adc1132.dll" () As Short
in a module, and it worked like a charm.
by dundas
Wed Aug 24, 2005 8:12 am
Forum: General Software Discussions
Topic: VB.NET .DLL Import Problems
Replies: 12
Views: 77340

ok, I think u simply CANT add that dll as reference. I solved the problem by simply putting that dll into /bin directory of my VB project and add a module wiz Module adc1132 Declare Function adc11_get_driver_version Lib "ADC1132.dll" () As Integer Declare Function adc11_open_unit Lib "ADC1132.dll" (...
by dundas
Wed Aug 24, 2005 2:34 am
Forum: General Software Discussions
Topic: VB.NET .DLL Import Problems
Replies: 12
Views: 77340

Hi Thank you for your post. If you look at MSDN this will give you information on including dll files in VB.net. Hope this helps Best Regards Hi Sarah, I am also facing this same issue while I try to reference the win32\adc1132.dll in Visual Basic.Net 2002. Q1: The problem is this dll can't be refe...