最近又用上了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,可以滿足這個需求