打开文本文件的问题??? ShellExecute ( 积分: 50 )

  • 主题发起人 主题发起人 agai
  • 开始时间 开始时间
A

agai

Unregistered / Unconfirmed
GUEST, unregistred user!
有一个文件'D:/cc.txt',我想点一下button就把它打开(以记事本的形式打开),
我用ShellExecute(0,nil,'D:/cc.txt',nil,nil,SW_Show)时,总说SW_Show未定义,
高人指点一下!!!
 
SW_Show 在windows.pas定义,就是5
ShellExecute(0,nil,'D:/cc.txt',nil,nil,5)
 
谢谢,解决了,直接引用windows单元也行,下边也行
ShellExecute(0,nil,'D:/cc.txt',nil,nil,5)
但是有点不理解为什么Delphi的帮助找不到SW_Show
 
接受答案了.
 
后退
顶部