捐赠 | 广告 | 注册 | 发布 | 上传 | 关于我们    
  沪ICP备05001939号 DELPHI盒子 | 盒子论坛 | 盒子文章 | 盒子问答悬赏 | 最新更新 | 论坛检索 | 下载中心 | 高级搜索    
  精品专区 | 繁體中文 | 奖励公告栏 | 直通车账号登陆 | 关闭GOOGLE广告 | 临时留言    
 
广告
评论:Delphi for PHP 官方试用版
leon365 29938 2007/6/11 22:49:34
这个是1.074解决中文的下载破解补丁
http://bbs.phpres.com/thread-1074-1-1.html
补丁是针对1.0.1.415版本的,显示中文没问题。
官方的1.0.1.415的测试版,下载地址!!
ftp://ftpd.borland.com/download/delphi/php/d4php_trial.exe
lighttop 29466 2007/5/17 17:14:02
这东西注定不会有什么用的. 就跟IntraWeb一样,真正搞WEB开发的肯定不会用这些玩意.
fhx123 29356 2007/5/12 15:54:19
在官方下载了最新的14天试用版,版本号是1.0.1.415,谁有破解,请发布一下,谢谢
mstarsoft 29354 2007/5/12 11:47:54
李维的BLOG说 修改了中文BUG的补丁版本已经有了 希望早点看到
lizhijie97 29233 2007/4/30 16:28:21
对这个非常关注,希望能成为BORLAND的一个优秀产品
susu 29062 2007/4/21 10:12:34
我用的破解版,原代码并不能折叠啊,使用官方试用版和官方试用序系号注册是否可以支持代码折叠,请试过的老大告知,谢谢!
另外,代码的跟踪方面,DELPHI是CTRL+左键就进去了,可是DELPHI FOR PHP不行.
baifafa 28719 2007/4/6 16:46:34
dlp 真是太有才了,呵呵

能不能编一个函数,1、根据选择参数,自动从数组中取出常用汉字(如:提交,保存,取消,放弃,确认等)

2、也可以专门做赋值,只要把值放在()中,就能自动判断控件类型,并把值赋给默认的属性上。
dlp 28684 2007/4/5 13:16:11
或者这样搞一搞!

        class Unit1 extends Page
        {
          public $Label1 = null;
          public $Button1 = null;
          public $Edit1 = null;
          function Unit1Create($sender, $params)
          {
          $this->Label1->Caption="标签";
          $this->Button1->Caption="按钮";
          }

          function Button1Click($sender, $params)
          {
          $this->Edit1->Text="你好!";
          }
        }
dlp 28683 2007/4/5 13:13:31
大家看看这个对于中文显示有没有帮助?


Localizing Applications

You can use the Internationalization Wizard to localize the strings in your application for translation to specific languages. The Internationalization Wizard does the following: 

Collect your project files. 
Allow you to select which languages to use for localizing your application. 
Run gettext() over your source files. 
Build the required folder structure with the generated files. 

Note:  You can run the Internationalization Wizard as many times as you want over your source code and it will update your resource strings.   

To localize a custom component for specific languages

Choose ToolsInternationalization Wizard. 
Step through the Internationalization Wizard to step 3 to the Languages to Localize list. 
Check each language to which you want your application translated. 
Click Next, then Finish to run the wizard. 
The wizard creates a local folder in your project folder, with subfolders containing the resource strings for each language. 

Note:  To localize the visual interface for your application, use the Language property on the each Form. For this wizard to work, you must enclose the strings you want localized into a call to the gettext() or _() function in the source code. For example,$this->Button=_("Localize this string");.
flyliguang 28674 2007/4/5 1:04:56
改变一下网页的字符集试试 
 IE中  “查看”、编码、简体中文   如果显示正常了就是编码的问题
另外,查看一下 unit->show的源代码试试
flyliguang 28673 2007/4/5 1:01:41
Font Family=空可能会解决问题,以下是我的思路
  delphi 2007 for php  只是提供一个编辑、调试环境,另外提供了一个framework,并不是一个编译环境,不存在语言显示的问题,因为它所有的结果都要解释成html支持的几种类型,如textbox  input   form select 等等,大家可以看一下显示页面的源文件,具体是哪里出错了,可能是字体设置有误,也可能是网页的charset 设置不对。
  尽管这种开发方式加快了某一环节的开发速度,但我们还要附带codegear的framework,即发布时要包括那些类似VCL的东东。可能需要的就是一个熟悉的过程,继续探索中.....
baifafa 28672 2007/4/5 0:58:00
还有问题:
如果是按钮,也还是不能是汉字的.

也就是目前可以:
Memo,Edit,Label,checkbox,combobox,RadioButton1等.
还有其它的,没去试
baifafa 28671 2007/4/5 0:36:06
在试:
Font Family=     //空

就可显示汉字.

谢谢:dlp 28666 !
baifafa 28670 2007/4/5 0:30:06
之前已试过,不是dlp 28666 说的问题!
dlp 28666 2007/4/4 17:53:21
是不是字体有问题?

Font Family=Verdana

在tools->Options->Editor Opions选中Use UTF-8 to create new units and forms


在tools->Options->PHP的default Charset选中 utf-8
baifafa 28649 2007/4/2 23:24:41
试过howwan 的方法,还有以下问题:
该方法,解决了在memo中的汉字问题.
但:edit.text如果为汉字,或label.capiton为汉字,还是出错的.
flyliguang 28647 2007/4/2 22:20:22
很不习惯使用,还是使用zend studio  / php expert editor 
期待 delphi2007 for win32
flyliguang 28646 2007/4/2 22:16:43
www.fixdown.com 上的是试用版,但有破解
newyj 28644 2007/4/2 21:19:38
比较了一下 www.fixdown.com 上的是试用版,和这个版本完全一样
howwan 28634 2007/4/2 12:59:01
网上搜的,我已成功的解决了中文问题:)——

PHP显示中文的问题。
作者:goodname
我的系统是PHP+Apache.一个简单的echo都无法显示中文信息。一片乱码,各位高手帮小弟一把。  
 
apache  
httpd.template.conf(模版文件会导致httpd.conf被修改)  
adddefaultcharset  off  
or    
adddefaultcharset  gb2312  
----------  
or  
 
php.ini.template(模版文件会导致php.ini被修改)  
default_charset='gb2312'
第一页 上一页 下一页 最后页 有 31 条纪录 共2页 1 - 20
 用户名:
 密 码:
自动登陆(30天有效)
 
  DELPHI盒子版权所有 1999-2023 V4.01 粤ICP备10103342号-1 更新RSS列表