There is no appreciable difference in either (Private jvm hosting)

There is no appreciable difference in either coding or performance between these two statements: sDate = FormatDateTime(dDate, LongDate) sDate = Format(dDate, “Long Date”) See Also Format Function, FormatCurrency, FormatNumber, FormatPercent Functions FreeFile Function Class Microsoft.VisualBasic.FileSystem Syntax FreeFile( ) Return Value An integer representing the next available file number Description Returns the next available file number for use in a FileOpen function Programming Tips and Gotchas It is good programming practice to always use FreeFile to obtain a file number to use in the FileOpen procedure. You should call FreeFile and store the returned file number to a variable rather than passing the FreeFile function directly as the filenumber argument of the FileOpen procedure. In this way, you save the file handle for a subsequent call to the FileClose procedure. After using the FreeFile function to retrieve a file handle, you should immediately call the FileOpen procedure, particularly if your file access code resides in a multithreaded application or component. Failure to do so may cause the same handle to be assigned to two different variables, so that one of the calls to FileOpen fails. Friend Keyword Description The Friend keyword is used to declare classes, module-level variables (but not local variables), constants, enumerations, properties, methods, functions, and subroutines.

Hint: This post is supported by Gama web hosting hrvatska services

Comments are closed.