最近又用上了ppform这个小工具,这东东的神奇之处在于可以用php象delphi一样快速开发出一个小工具,比如下面这个俺正在用的可以直接调用php函数的小东东,只用少量的代码,就完成了整个功能,如下: plain textphp: <?php require_once("ppform.php"); ?> <?php class __ppform__ extends tppform { function genbtnclick($sender) { $func = $this->funclist->items[$this->funclist->itemindex]; $this->codeedit->text = $func($this->stredit->text); } function form1create($sender) { $this->funclist->setitemindex(0); } function rebtnclick($sender) { if($this->codeedit->text) { $this->stredit->text = $this->codeedit->text; $this->codeedit->text = ''; } } } //end __ppform__ ?> 贴上俺丑陋的小程序界面 
缺点: 启动速度有点慢 不能直接发布应用程序,到论坛上看,人家说已经在计划发布一个sdk,可以满足这个需求 http://www.ooso.net/index.php/archives/181 注意:联系我时,请一定说明是从【S】看到的信息,谢谢。 |