Quote:
Originally posted by rbayer
I've never used VB, but I know you can. The function names (ie LoadLibrary) are probably very similar--just look them up in the MSDN Library. Otherwise, I found this from google. As I said, I've never used VB, but it looks vaguely like what you need.
|
Thank you. Yes, it seems like it might work. Just one for question, you can use the DLL in a C/++ Console, right?
Quote:
I've not slogged thru and made a VB defn to use compile (the TModuleRec has quite the structure) but I've made a quicky that calls the version function. Using a Declare of:
Private Declare Function Version Lib "C:\tokenizer.dll" () As integer
then calling it with code:
Label1.Caption = Str(Version())
in some button event code.
But why do you want to use this? This seems like a hard project without much return for our robots.
Anyway, can you get a version call to work? Thats a simpler way to see if you've got the basics (heh) in place.
|
Thank you for this (sorry for the long reply, didn't know you replied before). I'm gonna try your code.
Again, thank you both.