D Dk108 Unregistered / Unconfirmed GUEST, unregistred user! 2001-01-18 #1 我现在想在一个普通的delphi程序中加入这样的功能:点击某个label或按钮后就可以 连接到某个指定的网站和打开电子邮件程序,请问该怎么做,是不是要调用哪两个Windows 的函数?谢谢
W wjiachun Unregistered / Unconfirmed GUEST, unregistred user! 2001-01-18 #2 uses shellapi; shellexecute() 具体用法查查帮助吧,对你有好处。
S sharkHun Unregistered / Unconfirmed GUEST, unregistred user! 2001-01-18 #3 到某个指定的网站: ShellExecute(form1.handle,nil,'Http://www.sohu.com',nil,nil,0); 打开电子邮件程序: ShellExecute(form1.handle,nil,'Mailto:HuangDen@sohu.com',nil,nil,0);
到某个指定的网站: ShellExecute(form1.handle,nil,'Http://www.sohu.com',nil,nil,0); 打开电子邮件程序: ShellExecute(form1.handle,nil,'Mailto:HuangDen@sohu.com',nil,nil,0);
远 远帆 Unregistered / Unconfirmed GUEST, unregistred user! 2001-01-18 #4 同意 sharkhun。打开系统中已注册的文件类型都可以用 shellexecute 。 它有一个返回值,等于32好像表明是成功。(我记得不太清了)
B beta Unregistered / Unconfirmed GUEST, unregistred user! 2001-01-20 #5 这样更方便: ShellExecute(0, nil, PChar(label1.Caption), nil, nil, 0); 这样修改label1.caption后不必在修改源程序。