nikalopolis
New member
- Local time
- Today, 09:50
- Joined
- Mar 5, 2008
- Messages
- 6
include argument name in function call, eg ?longpathname(strfile:= "c:\file~1.txt")
i am not sure if i am making this up or not, but i thought it was possible to include the arguement name in a function call (to improve the readability of the code).
if a function longpathname takes 1 arguement strfile then i would like to write it as something like
retval = longpathname(strfile:= "c:\file~1.txt")
obviously the function that i am using has many more arguments, hence the need to make it a bit clearer (without having to right-click and Quick Info when i want to see the syntax
I have tried all variants that i can think if - am i tripping?
i am not sure if i am making this up or not, but i thought it was possible to include the arguement name in a function call (to improve the readability of the code).
if a function longpathname takes 1 arguement strfile then i would like to write it as something like
retval = longpathname(strfile:= "c:\file~1.txt")
obviously the function that i am using has many more arguments, hence the need to make it a bit clearer (without having to right-click and Quick Info when i want to see the syntax
I have tried all variants that i can think if - am i tripping?