Hi!
I started playing around with .NET a little bit, and I created a .dll file which contains a class that can check email. That class was created in php and compiled using Phalanger. I now want to get into VB, and start using the class. I declare an variable name as an object (Dim blahblahblah as Object) and use blahblahblah = createObject("objectName") to create the object. However, the class I wrote in PHP has parameters, so how would I pass those? Also, how can I include a compiled dll into my project? Basically, how do I make the class usable in VB?
Thanks!
.NET is a pain
Moderator: General Moderators
- evilmonkey
- Forum Regular
- Posts: 823
- Joined: Sun Oct 06, 2002 1:24 pm
- Location: Toronto, Canada
- n00b Saibot
- DevNet Resident
- Posts: 1452
- Joined: Fri Dec 24, 2004 2:59 am
- Location: Lucknow, UP, India
- Contact:
- evilmonkey
- Forum Regular
- Posts: 823
- Joined: Sun Oct 06, 2002 1:24 pm
- Location: Toronto, Canada
OKay, I read up a little bit, and from what I understood, straightforward includes can only be done with ActiveX dll's (dll's programmed in VB?). I know for C++, if you're putting functions in a dll, there's a seperate file needed, which references all the functions. Not sure how to do it with classes.