Perl/Tk 系统函数错误?
我正在制作一个“一体化计算器”(我猜)。这是我的代码(我知道我没有定义所有子例程,如您所见,我仍在处理此问题):
use 5.12.4;
use warnings;
use Tk;
##### Create MainWindow #####
my $button_menu = new MainWindow;
#############################
##### MainWindow Buttons#####
my $calculator_button = $button_menu->Button(-text=>"Calculator",
-width=>10,
-relief=> 'raised',
-command=>\&open_calculator)->pack();
my $formulas_button = $button_menu->Button(-text=>"Formulas",
-width=>10,
-relief=> 'raised',
-command=>\&open_formulas)->pack();
sub open_calculator{
system(qq{start "C:\\Windows\\system32\\calc.exe"});
}
MainLoop;
为什么系统功能未打开 Windows 计算器?
谢谢!
I am making an "all-in-one calculator" (I guess). Here is my code (I know I do not have all subroutines defined, I'm still working on this as you can see):
use 5.12.4;
use warnings;
use Tk;
##### Create MainWindow #####
my $button_menu = new MainWindow;
#############################
##### MainWindow Buttons#####
my $calculator_button = $button_menu->Button(-text=>"Calculator",
-width=>10,
-relief=> 'raised',
-command=>\&open_calculator)->pack();
my $formulas_button = $button_menu->Button(-text=>"Formulas",
-width=>10,
-relief=> 'raised',
-command=>\&open_formulas)->pack();
sub open_calculator{
system(qq{start "C:\\Windows\\system32\\calc.exe"});
}
MainLoop;
Why does the system function not open the Windows calculator?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
Try this: