Home > Archive > Clarion > June 2006 > Creating a built-in function
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Creating a built-in function
|
|
| ClarionProgrammer 2006-06-17, 7:56 am |
| What's the easiest way to create a custom built-in function (accessible
for all apps, w/out the need to include it ever again as a Global
Procedure)?
Do I just create the procedure, throw it in the LIBSRC folder, and
create a MODULE reference in the Builtins.clw file?
Thanks,
Jason
| |
| Bjarne Havnen - AdiTech as 2006-06-17, 7:56 am |
|
A DLL is usefull for this. You can use a handcoded project,or use the
template approach outlined in www.clarionmag.com if it is ment to be
cross-dictionary.
Then you can have as many functions as you need in one application,
just writing a simple Include statement in the global include.
Bjarne
"ClarionProgrammer" <jcurley@nerc.com> skrev i melding
news:1149616276.369164.12270@g10g2000cwb.googlegroups.com...
> What's the easiest way to create a custom built-in function (accessible
> for all apps, w/out the need to include it ever again as a Global
> Procedure)?
>
> Do I just create the procedure, throw it in the LIBSRC folder, and
> create a MODULE reference in the Builtins.clw file?
>
> Thanks,
>
> Jason
>
>
|
|
|
|
|