上一页 1 ··· 6 7 8 9 10 11 12 下一页
摘要: GetHDSerialNumber在通过快捷方式点进去会取不到数据。屏蔽红色段即可function tIceLock.LoadKeyFile : Integer;var r : rIceRecord; pa : pIceArray; f : file of aIceArray;begin IsRegistered := false; AssignFile(f,fKeyFileName); {$I-... 阅读全文
posted @ 2009-09-25 09:11 毛小毛 阅读(313) 评论(0) 推荐(0)
摘要: 1.//弹出对话框.点击转向指定页面 Response.Write(" <script>window.alert('该会员没有提交申请,请重新提交!')</script>"); Response.Write(" <script>window.location='http://www.51aspx.com/bizpulic/upmeb.aspx' </scr... 阅读全文
posted @ 2009-09-14 17:01 毛小毛 阅读(277) 评论(0) 推荐(0)
摘要: wwriched.pas找到如下方法,注释如下语句,直接返回truefunction TwwCustomRichEdit.CanCut: boolean;begin //result:= seltext<>''; Mike remove; result := true;end; 阅读全文
posted @ 2009-08-29 10:57 毛小毛 阅读(301) 评论(0) 推荐(0)
摘要: FASTREPORT中MEMO的wordwrap设为True,使文本自动换行,但当最后一个字为中文时总是出现乱码。怎样才能使最后的字为中文且剩下文本区不足两格时自动换行,避免出现乱码?主要改fr_class.pas中的wrapline过程,其中有一段:else if s[last] = thenOutLine(Copy(s, beg, last - beg)) elseOutLine(Copy(s... 阅读全文
posted @ 2009-08-29 10:51 毛小毛 阅读(4238) 评论(0) 推荐(0)
摘要: protected void UltraWebGrid1_InitializeRow(object sender, RowEventArgs e) { if (!e.Row.Cells.FromKey("SENDSTATUS").Text.Equals("编辑")) { (((UltraWebGrid1.Bands[0].Columns[0] as TemplatedColumn).CellIte... 阅读全文
posted @ 2009-08-24 08:58 毛小毛 阅读(518) 评论(1) 推荐(1)
摘要: 最近一项目,要写成一个From程序,并且有关数据操作都是和Oracle打交道。。。这可累了,大家都知道,本机不装Oracle客户端,本机的程序是不能访问Oracle数据库的。可是一个客户端最少也得八十多兆。太大了。再多,程序部署也不方便。在网上找了找还真有解决办法。狂喜.....好景不长啊。。。最后证实都不太好用。。。最后终于在网络和同事们的共同努力下。终于测试成功。。方法如下:(环境:Vs200... 阅读全文
posted @ 2009-08-17 16:12 毛小毛 阅读(4151) 评论(0) 推荐(1)
摘要: 方法一:增大闪回恢复区SQL> show parameter db_recovery_file_dest_sizeNAME TYPE VALUE------------------------------------ ----------- ------------------------------db_recovery_file_dest_size big integer 2GSQL&g... 阅读全文
posted @ 2009-07-03 13:00 毛小毛 阅读(1975) 评论(0) 推荐(0)
摘要: 1.配置错误: "Failed to generate and backup the master secret to file" 一定要用Administrator帐号Basic配置,哪怕当前用户已属于Administrators组也不成。(或者让当前用户属于所有Biztalk帐户组)。2.教程例子1: Schema文件区分大小写。3.教程例子1:RepRequestAccepted.xml 文... 阅读全文
posted @ 2009-06-21 18:28 毛小毛 阅读(203) 评论(0) 推荐(0)
摘要: Introduction of WMSYS WMSSYS is used to store all the metadata information for Oracle Workspace Manager. This user was introduced in Oracle9i and (like most Oracle9i supporting accounts) is locked by ... 阅读全文
posted @ 2009-06-11 09:49 毛小毛 阅读(3005) 评论(0) 推荐(0)
摘要: 默认情况下,IE打开一个网页,会在本地进行缓存,这样是为了减少访问服务器的次数提高性能。但有时这也给我们带来了弊端,比如修改信息的页面,在提交修改后,再次打开次页面,因为URL并没有改变,因此IE会读取本地缓存,页面显示的仍然是原始信息,这种情况特别容易出现在弹出对话框或窗口进行修改的方式。在ASP.NET中可以在页面中加入以下内容:<%@OutputCacheLocation="None"... 阅读全文
posted @ 2009-05-31 16:14 毛小毛 阅读(512) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 下一页