B
babu reddy
Hi,
My problem is that I have a dll which i need to use in
my .net compact framework application, which i am
creating for iPAQ. I went through a lot of articles on
this problem and found that the solution is to DECLARE
the dll method and use it in .net CF.
The dll exposes a single function which returns a string
Function - readTag() As String
My declaration statement goes like this:
Declare Function readTag Lib "RFIDRead.dll" () As String
If i try to run my application, it returned me
NotSupportedException.
I then changed the return value as "char" from "String",
now its returning me MissingMethodException.
Even if I delete the dll from the iPAQ, still i get the
same error.
From all my research, i think the my declaration
statement is correct, but i think that either i have to
register my RFIDRead.dll in the iPAQ or soemthing of that
sort.
Can anyone help me with this, any source code on the same
with proper steps will be really helpful
Thanks in advance...
My problem is that I have a dll which i need to use in
my .net compact framework application, which i am
creating for iPAQ. I went through a lot of articles on
this problem and found that the solution is to DECLARE
the dll method and use it in .net CF.
The dll exposes a single function which returns a string
Function - readTag() As String
My declaration statement goes like this:
Declare Function readTag Lib "RFIDRead.dll" () As String
If i try to run my application, it returned me
NotSupportedException.
I then changed the return value as "char" from "String",
now its returning me MissingMethodException.
Even if I delete the dll from the iPAQ, still i get the
same error.
From all my research, i think the my declaration
statement is correct, but i think that either i have to
register my RFIDRead.dll in the iPAQ or soemthing of that
sort.
Can anyone help me with this, any source code on the same
with proper steps will be really helpful
Thanks in advance...