Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Using Type as a parameter
Message
 
 
À
Tous
Information générale
Forum:
Visual Basic
Catégorie:
Codage, syntaxe et commandes
Titre:
Using Type as a parameter
Divers
Thread ID:
00564492
Message ID:
00564492
Vues:
48
I want to use a type as a parameter in a dll function. I have scoured the MSDN and I have tried it several ways. I have made the function private, I have declared the type in a public object module...
*** In the dll I want to be able to do something like this:

Public type tLocal ' or Private
  name as string
  x as integer
  y as integer
end type

Public function GetLocation(byref LX as tLocal) ' or Private
    LX.Name = "Zone Two"
    LX.x = 12
    LX.y = 55
End Function

*** in the app I want to do somthing like:

' not sure if this needs to go here
Public type tLocal ' or Private
  name as string
  x as integer
  y as integer
end type


private sub foo
    dim MyType as tLocal
    set ox = mydllproj.mydllclass
    
    ox.GetLocation MyType

    debug.print MyType.Name
    debug.print MyType.x
    debug.print MyType.y

end sub
Thanks in Advance.
~Joe Johnston USA

"If ye love wealth better than liberty, the tranquility of servitude better than the animated contest of freedom, go home from us in peace. We ask not your counsel or arms. Crouch down and lick the hands which feed you. May your chains set lightly upon you, and may posterity forget that ye were our countrymen."
~Samuel Adams

Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform