Syntax:
                                                    CStr(expr)
                                                    Group:
                                                    Conversion
                                                    
                                                    Description: 
                                                    Converts to a string.
                                                    Parameters:
                                                    
                                                        
                                                        
                                                        
                                                            | 
                                                                 Parameter 
                                                             | 
                                                            
                                                                 Description 
                                                             | 
                                                        
                                                        
                                                            | 
                                                                 expr
                                                                 
                                                             | 
                                                            
                                                                 Converts a number or string value to a string value using the current locale (GetLocale). 
                                                             | 
                                                        
                                                    
                                                    Example:
                                                    Sub Main
  Debug.Print CStr(Sqr(2)) '"1.4142135623731" - US English locale
EndSub