摘要:
unit Funcoes_Traducao_u;{Objetivo:Traduzir automaticamente todas as mensagens do inglês Motivo: O UniGUI da versão atual não tem função de localização das mensagens internas doDelphiNoTUniServerModule tem a propriedade ExtLocate que tem que ficar pt_BR para tradu 阅读全文
posted @ 2013-03-29 14:48
Greyed Wolf
阅读(227)评论(0)推荐(0)
编辑
摘要:
一、配置一个mysql服务器做master: 在配置文件my.ini中添加如下内容:log-bin=matster-binlog-bin-index=matster-bin.indexserver-id=1master必须有一个活动的二进制日志和唯一的server-id,然后重启mysql服务器。其次,以root登录,创建一个复制用户:CREATE USER BACKUP_user; GRANT replication slave on *.* to BACKUP_user IDENTIFIED by '1234';二、配置一个mysql做slave:在配置文件my.ini中添 阅读全文
posted @ 2013-03-29 09:02
Greyed Wolf
阅读(188)评论(0)推荐(0)
编辑
摘要:
Put this code in MainForm->ExtEvents->OnBeforerender : window.onbeforeunload =function(){ ajaxRequest(sender,'SessionClosed',[]); alert("Session Closed");// You can remove this line. only for test };And put this code on MainForm->OnAjaxEvent : IfSameText(EventName,'Ses 阅读全文
posted @ 2013-03-16 22:52
Greyed Wolf
阅读(239)评论(0)推荐(0)
编辑