付款方式  汇款确认 索取发票 代理平台 本网站使用华夏名网CDN网络加速
首页 | 行业资讯 | 域名资讯 | 虚拟主机 | 托管租用 | VPS | CDN | 网站运营 | 站长资讯 | 冲浪宝典 | 技术资讯
热门关键字: 虚拟主机  质量  服务商  vps  服务器
  当前位置:主页>技术资讯>Perl>列表
共19页/272条记录 首页 1 [2] [3] [4] [5] [6] [7] 下一页 末页
Perl/TkFAQ-11.如何使用画布(Canvas)……?
  发布日期:2007-09-30 08:00:00 点击:17
Perl/TkFAQ-11.如何使用画布(Canvas)……? 原文: 11. How do I get a Canvas to ... ? The Canvas widget is the most configurable and versatile. With versatility comes complication however, and it is certainly deserving of its own special section within this FAQ... You might also see…
Perl/TkFAQ-10.1.如何使用按钮来调用Perl的子程序
  发布日期:2007-09-30 08:00:00 点击:14
Perl/TkFAQ-10.1.如何使用按钮来调用Perl的子程序 原文: 10.1. How do I get a Button to call a Perl subroutine? You may specify the -command option in the call to create gt;Button(-text = 'Print', -command = sub{do_print($filename, $font)} )-pack; Where sub do_print { } is a subroutine th…
Perl/TkFAQ-10.如何使用某个组件来完成某个工作
  发布日期:2007-09-30 08:00:00 点击:8
Perl/TkFAQ-10.如何使用某个组件来完成某个工作 原文: 10. How do I get widget X to do Y ? There are a number of tasks that can be accomplished with perl/Tk widgets, configurations, and bindings (a few that can't and a few that require specific tricks). Beginners are encouraged to work…
Perl/TkFAQ-10.3.如何安排各组件的布局
  发布日期:2007-09-30 08:00:00 点击:17
Perl/TkFAQ-10.3.如何安排各组件的布局 原文: 10.3. How do I arrange the layout of my widgets? To control the layout and appearance of widgets in a window one makes use of a geometry manager, as well as -padding, -fill, -expand, and -anchor options of individual widgets. A geom…
Perl/TkFAQ-10.2.如何设置按钮随鼠标指向的动态变化
  发布日期:2007-09-30 08:00:00 点击:7
Perl/TkFAQ-10.2.如何设置按钮随鼠标指向的动态变化 原文: 10.2. How do I get a Button to actively change under my mouse pointer? You should specify both an '-image' and an '-activeimage' configuration option either when calling the -Button() method or in a later separate call to the -confi…
Perl/TkFAQ-10.4.如何设置一个弹出窗口
  发布日期:2007-09-30 08:00:00 点击:21
Perl/TkFAQ-10.4.如何设置一个弹出窗口 原文: 10.4. How do I get a Popup to popup? For things like a simple "are you sure?" dialog box you might want to take a look at Dialog.pm which is discussed in a later question within this FAQ [16.1]. If you don't wish to require Tk::Dial…
Perl/TkFAQ-7.哪里有Perl/Tk的文档
  发布日期:2007-09-30 08:00:00 点击:23
Perl/TkFAQ-7.哪里有Perl/Tk的文档 原文: 7. Where is the Documentation? A great deal of Perl/Tk documentation gets installed as part of the Tk extension building process. Hence, a great deal of documentation is probably residing on your computer already. More documentation…
Perl/TkFAQ-8.如何写Perl/Tk脚本
  发布日期:2007-09-30 08:00:00 点击:18
Perl/TkFAQ-8.如何写Perl/Tk脚本 原文: 8. How do I write scripts in perl/Tk? Start your script as you would any perl script (e.g. #!/usr/bin/perl, #!/usr/local/bin/perl, #!/opt/bin/perl, [built static? then #!/usr/bin/tkperl], whatever, see the perlrun(1) man page for mo…
Perl/TkFAQ-9.Perl/Tk中有哪些类型的组件
  发布日期:2007-09-30 08:00:00 点击:15
Perl/TkFAQ-9.Perl/Tk中有哪些类型的组件 原文: 9. What widget types are available under perl/Tk? The following Tk widget primitives are available under perl/Tk: Button Canvas Checkbutton Entry Frame Label Listbox Menu Menubutton Message Radiobutton Scale Scrollbar Text Toplevel…
Perl/TkFAQ-5.CPAN是什么?在哪里
  发布日期:2007-09-30 08:00:00 点击:18
Perl/TkFAQ-5.CPAN是什么?在哪里 原文: 5. What/Where isCPAN? "CPAN" = Comprehensive Perl Archive Network a worldwide collection of anonymous ftp sites for Perl et al (not to be confused with CTAN which is for TeX, nor CSPAN which rarely deals with computer software). The…
Perl/TkFAQ-6.如何编译安装
  发布日期:2007-09-30 08:00:00 点击:14
Perl/TkFAQ-6.如何编译安装 原文: 6. How do I build it? Assuming you are not running a binary distribution then, in general, building perl/Tk requires: 1. A made lt;kjahds@kjahds.com. If any of the following does not say "dl_none.xs" then you probably do have dynami…
Perl/TkFAQ-2.Perl/Tk和Tkperl有什么区别?
  发布日期:2007-09-30 08:00:00 点击:19
Perl/TkFAQ-2.Perl/Tk和Tkperl有什么区别? 原文: 2. What is the difference between perl/Tk and Tkperl? [OBSOLETE; move to historical section.] TkPerl was originally the name of a (now unsupported) perl 4 package that Malcolm Beattie mailto:mbeattie@sable.ox.ac.uk at Oxford Univers…
Perl/TkFAQ-3.编译安装Perl/Tk是否需要Tcl/Tk?
  发布日期:2007-09-30 08:00:00 点击:30
Perl/TkFAQ-3.编译安装Perl/Tk是否需要Tcl/Tk? 原文: 3. Do I need Tcl/Tk in order to build Perl/Tk? Short answer: No not at all. Perl/Tk is completely independent of Tcl/Tk. Longer answer: In order to build Perl/Tk from source code you do need a recent version of perl, the perl/Tk sou…
Perl/TkFAQ-10.6.如何设置绑定
  发布日期:2007-09-30 08:00:00 点击:5
Perl/TkFAQ-10.6.如何设置绑定 原文: 10.6. How do I add bindings? On Fri, 15 Sep 95 10:30:56 BST Nick Ing-Simmons Nick.Ing-Simmons@tiuk.ti.com writes: Re: Multiple binds to a single widget?**************************************On Thu, 14 Sep 1995 14:57:54 -0400Alain St…
Perl/TkFAQ-10.5.如何绑定键盘上的按键
  发布日期:2007-09-30 08:00:00 点击:15
Perl/TkFAQ-10.5.如何绑定键盘上的按键 原文: 10.5. How do I bind keyboard keys? There are many default key bindings built in to the widgets of perl/Tk. Making proper use of them often involves setting up the right callback. (You may wish to consult the examples in BindTable.po…
共19页/272条记录 首页 1 [2] [3] [4] [5] [6] [7] 下一页 末页
  本栏热点文章
·Perl变量(1)--纯变量
·Perl/TkFAQ-10.17.如何隐藏密码
·如何使用 strict 和 warnings
·perl中dbi句柄和返回操作实例
·Perl的经典用法:读入段落
·菜鸟的迷你留言本(perl版)
·执行 mod_perl 模块
·IP鉴定子程序
·Perl的NT安装实验报告
·Perl/TkFAQ-11.2.如何擦除画布上
·CGI教程(12)ErrorDocument指令
·Perl教学第七篇控制结构
  本栏随机推荐
·Perl/TkFAQ-17.1有把Tcl/Tk转换
·如何用PERL编写聊天室服务器程序
·Perl/TkFAQ-11.如何使用画布(Ca
·Perl/TkFAQ-12.基本问题
·Perl与宗教
·perl常问问题集--第七篇
·CGI编程--Perl中使用CGI模块(二)
·PerlScript的介绍
·CGI教程(8)记录用户记录脚本
·Perl教学第十二篇Perl5中的引用(
·跟我学Perl(三)
·Perl/TkFAQ-18.4.如何在等待其它
  相关分类
Perl
  Access
 
  Ajax
 
  ASP编程
 
  C/C++
 
  Coreldraw
 
  CSS教程
 
  DB2
 
  dns服务器
 

   关于我们 | 付款方法 | 售前咨询 | 售后问题 | 网站地图
华夏名网拥有5年的IDC运营经验 为6万各类用户提供优质的IDC服务
华夏名网提供7x24小时的全时客户技术支持 华夏名网提供1对1的客户专员服务
华夏名网运营商:成都飞数科技有限公司
 电话总机 028-86258691 86258692 66510191 66510192 66510193 66510194
 夜间值班 028-88844898 86851118
 传真底单 总机转801 财务专线 总机转823
 投诉热线 028-86258691-814 投诉QQ 517811566
 主机/VPS: 点击图标与客服专员黄慧qq交谈 点击图标与客服专员易娟qq交谈 点击图标与客服专员孙草qq交谈 点击图标与客服专员孟于欣qq交谈
 服 务 器: 点击图标与客服专员曾伟qq交谈 点击图标与客服专员qq交谈 点击图标与客服专员孟于欣qq交谈 点击图标与客服专员蒋林qq交谈
 机房技术: 点击图标与机房技术支持付强qq交谈 点击图标与机房技术支持李一qq交谈 点击图标与广东机房技术支持胡越qq交谈 点击图标与四川机房技术柏松支持qq交谈
 大 客 户: 点击图标与大客户专员qq交谈 点击图标与大客户专员qq交谈
 [点击头像图标即时交谈,如遇消息超时,请添加好友]
公司地址:四川省成都市青龙街51号倍特康派大厦10楼5号 邮编:610031
增值电信业务经营许可证号(IDC):川B1.B2-20070108 营业执照
Copyright©2008 成都飞数科技有限公司.版权所有 本站行业资讯由 IDC中文资讯站 提供
中国互联网违法和不良信息举报中心
成都网警报警岗亭
工商红盾
icp备案