Beerdude Posted January 29, 2004 Posted January 29, 2004 I'm trying to create a windows application in VB .net and i'm having some trouble accessing some of the available functions. I'm trying to use the isalpha function (among others) - which are in the ctype.h library (in C++). But I'm stumped as to how to include or import it. Adding a reference to Visual C++ didn't seem to work, do I put an #include or imports at the top or something? Thanks for your help Quote
Administrators PlausiblyDamp Posted January 29, 2004 Administrators Posted January 29, 2004 You can't include a C/C++ header in a VB application. You could call a DLL written in C/C++ that contains a wrapper for that function - but not call it direct. Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
splice Posted January 30, 2004 Posted January 30, 2004 You shouldn't need to do that anyway, Char has shared members like IsDigit, IsLetter, IsDigitOrLetter, etc.. Quote -=splice=- It's not my fault I'm a Genius!
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.