摘要:在最近的开发设计工作中,使用『sdl and ttcn suite 4.3』画msc和sdl图,感觉这个软件总体上是非常不错的,细节上也存在一些瑕疵,总结如下:优点:(1)画msc图时,instancehead能自动显示在顶部,这样在msc图很长时,非常有用。(2)msc中的消息能始终平行,并随着instancehead的移动而平行移动,不需要手工调整,真是方便;(3)sdl图中各状态的处理很好,能实现各函数、处理过程的点击跳转,并能严格的划分状态、处理过......
摘要:
无标题文档
php-4.3+mysql-3.23+apache-2.0+vbb-2.32论坛的架设方法
声明:转帖时必须加注来源于 http://www.linuxsir.org 以及作者在linuxsir 的id;以及保留此声明;
虽然本人深知这篇文章是小儿科,但linuxsir的弟兄写大多数文章,被没有加注版权的信息转到别的站上,有些事说也说不清楚;
有的弟兄把linuxsir原创文件转到别的站上,没有加任何声明之......
LINUX 服务器配置大全
无标题文档
一: dns服务器的设置
1. 编辑/etc/named.conf 【相关文章:
可以动态画图输出的JSP例子】 【扩展阅读:
ListView 操作】
// generated by named-bootconf.pl
options { 【扩展信息:粘贴过来个表学习下】
directory "/var/named";
/*
* if there is a firewall between you and nameservers you want
* to talk to, you might need to uncomment the query-source
* directive below. previous versions of bind always asked
* questions using port 53, but bind 8.1 uses an unprivileged
* port by default.
*/
// query-source address * port 53;
};
//
// a caching only nameserver config
//
controls {
inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};
zone "." in {
type hint;
file "named.ca";
};
zone "mydomain.com" in {
type master;
file "named.mydomain.com";
allow-update { none; };
};...
下一页 摘要:问题1: richeditctrl在用ddx进行数据交换的时候会发生数据丢失问题?为什么! 当我们在拖了一个控件到程序里后,通常的做发是ctrl+w,用类向导给控件关联一个变量,然后依靠ddx/ddv进行数据交换,如果我们用同样的方法来给richedit关联一个cstring类型的变量就会存在一个问题,就是如果我们的数据大于了64k,数据就会丢失。 通过查msdn发现,wm_gettext消息并没有设计在richedit的数据大于64k的时候怎样处理。而类......