URGENT: Available functions

B

Bryan Dickerson

I have a form that determines a unique id for each new instance of the form
and just determined that some old code that used to work(I didn't write it,
so I can say that!) is not returning any more unique ids. I have come up
with the following line that should get what I need :

Right(CSstr(CDbl(Now)), 6)

My question is: is this allowable since nothing is typed in VB Script?

TIA!!
 
K

Ken Slovak - [MVP - Outlook]

Please don't post to so many groups, pick one or two.

You can use all those functions in VBScript but you still end up with a
Variant, since that's all VBS supports.
 
Top