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