Recent content by ike

  1. I

    error 453 Cant find dll entry point

    already solved.... never mind :D
  2. I

    how to create a dll for an access 2002 application

    djkarl thank you very much!!!! it worked extremely well!!! i'm amazed, there was a moment when i thought that i would never achieve this haha, thanks again ike
  3. I

    how to create a dll for an access 2002 application

    thank you very much djkarl, very illustrative your answer, i'll try what you told me, i gonna go the .NET way couse what i would like to do with the app is to move it to the .NET platform and use the vb prog language (that is not my choice hehe but what can i do) so i'm gonna try this approach...
  4. I

    how to create a dll for an access 2002 application

    thanks for the answer but, i'm trying to put them in a dll couse i would like in the future move to asp.net o a .NET platform, so i'm wondering if its possible to do this, i try the following: i've develop a dll in .NET with the following code Snippetusing System; namespace Test { public...
  5. I

    error 453 Cant find dll entry point

    hello, i've develop a dll in .NET with the following code Snippetusing System; namespace Test { public class Test { public static string Prueba() { return "from dll"; } } } and i try to call it from vba access 2002 this way: Option Compare...
  6. I

    how to create a dll for an access 2002 application

    is it possible to develop a dll with visual studio and then import the functions it contains from vba in an access app??? that would solve my problem. if it's possible, how can i do it? thanks ike
  7. I

    how to create a dll for an access 2002 application

    hello, i would like to wrap a lot of functions and routines that a have in my access 2002 application into a dll and call them from my app, is this possible? i could use visual studio and any programming language, but if it's not needed nor possible doing it in a .NET environment i could do it...
Back
Top Bottom