Connecting Tech Pros Worldwide Forums | Help | Site Map

Custom functions

Jaaz
Guest
 
Posts: n/a
#1: Nov 13 '05
Could someone refresh my memory on how to jump from Access to VB so I
can embed my own functions in the database? Thanks.
PC Datasheet
Guest
 
Posts: n/a
#2: Nov 13 '05

re: Custom functions


Add your function to a standard module.
Function MyFunction(Parameter1 As MyDataType, Parameter2 As MyDataType) As
MyDataType
..... Do Something here
End Function

In code call the function:
MyFunction(ParameterValue1, ParameterValue2)


--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
resource@pcdatasheet.com
www.pcdatasheet.com

"Jaaz" <Jaaz81@gmail.com> wrote in message
news:67a0f57a.0411031406.7c679a3a@posting.google.c om...[color=blue]
> Could someone refresh my memory on how to jump from Access to VB so I
> can embed my own functions in the database? Thanks.[/color]


Closed Thread