- 注册时间
- 2013-9-23
- 在线时间
- 519 小时
- 最后登录
- 2022-4-4
- 阅读权限
- 200
管理员
MT4软件工程师
- 积分
- 6521
- 帖子
- 2771
- 主题
- 2761
|
智能交易平台TB编程教程 GetTBProfileString2File函数用法
说明 | 读取公式信息文件指定块中的键名对应的字符串。 | 语法 | String GetTBProfileString2File(String strPath,String strSection,String strKey) | 参数 | strPath 指定文件的路径,请使用全路径表示,并使用\\做路径分割符,否则会执行失败
strSection 指定的信息块的块名
strKey 指定的信息的键名 | 备注 | 读取某个文件指定块中的键名对应的字符串。返回值为读取的字符串,不成功则返回InvalidString,读取字符串长度不能超过256字节。 提示:配合SetTBProfileString2File使用。 | 示例 | MyStr = GetTBProfileString2File("c:\\tradelog.log","MySection","MyKey"); |
|
|