Difference between revisions of "TFtpClient.HostName"
Jump to navigation
Jump to search
| (2 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
| − | + | [[Main_Page | Main page]] -> [[ICS_Components_Reference | ICS component reference]] -> [[TFtpClient]] -> [[TFtpClient.HostName | HostName]] | |
| − | + | == Definition == | |
| − | ''' | + | '''property''' HostName: '''string'''; |
| − | |||
| − | + | == Default Value == | |
| + | None | ||
| − | + | == Description == | |
| − | + | Sever name or IP address of the server to connect. | |
| − | + | ||
| − | + | == Example == | |
| − | + | ||
| + | FtpClient1.HostName := 'ftp.borland.com'; | ||
| + | FtpClient1.Port := 'ftp'; | ||
| + | FtpClient1.UserName := 'anonymous'; | ||
| + | FtpClient1.Password := 'john.smith@mycomp.com'; | ||
| + | FtpClient1.OpenAsync; // Non-blocking open. | ||
| + | |||
| + | == Best Practices == | ||
| + | |||
| + | == How To == | ||
Latest revision as of 23:05, 10 September 2006
Main page -> ICS component reference -> TFtpClient -> HostName
Definition
property HostName: string;
Default Value
None
Description
Sever name or IP address of the server to connect.
Example
FtpClient1.HostName := 'ftp.borland.com'; FtpClient1.Port := 'ftp'; FtpClient1.UserName := 'anonymous'; FtpClient1.Password := 'john.smith@mycomp.com'; FtpClient1.OpenAsync; // Non-blocking open.