October 2007 - Posts

0
Comments

How make and use Active report template by jawance

一般的用户报表设置工具都提供“EndUser Modify”的功能。 End User都能改所有的属性除了“selectSQL 处理出来的Data Column”。 这样就算用户怎么搞,都是他的事啦( 前提是你提供完整的DataColumn给他) -- 只要他会了用那个工具。 用户设计好了,可以保存他设计的格式供他以后调用。 -----帮助地址ms-help://MS.VSCC.v80/MS.VSIPCC.v80/dd.ActiveReports3.1033/ddARNET3/ar3tskSavingandLoadingRDFFiles.html ActiveReports allows reports to be saved into their own standard format called an RDF file (Report Document Format). Once a report has been saved to an RDF file, it can be loaded into the viewer control and used to display reports...
0
Comments

Css setting by Program Solution by jawance

....Main.css .LABEL { color: red; } .LABEL.TT { color:Green; } 1。第一个是for 所有LABEL元素(注意引用的要注意大小写), <HR:Label runat="server" ID="Label3" Text="Daily Report" CssClass="LABEL" /> 第二个,要正确使用要这样写,因为css认为LABEL元素下的TT应用才正确,具体请参看 Sams.Sams.Teach.Yourself.CSS.in.10.Minutes.Nov.2005.chm <HR:Label ID="Label4" runat="server" Text="Group By " CssClass="TT"> ------------------------------------------ .....Main.css .LABEL.TT...
Filed under:
0
Comments

CSS改变字体大小而不影响网页之一 by jawance

我们在网页中使用CSS来设置网页、表格和字体大小,一般使用的是网络上较流行的9磅字: <STYLE type=TEXT/CSS> BODY { COLOR: #ff0000; FONT-FAMILY: 宋体; FONT-SIZE: 9pt} </STYLE> 在CSS中,我把FONT-SIZE设置成9pt,在显示设置成小字体时,我们看到的就是小五号字体显示,但在设置大字体的计算机中就会变成了11磅,网页自然会乱。 CSS可以识别多种数值单位,一般有两种确定文字尺寸的常用单位:pt(points)和px(pixels)。pt代表在文本方式下的点阵字体的那个点,而px是屏幕像素单位。由于所有的计算机系统都支持px单位,只是由于各个计算机所设的显示屏幕的分辨率不一样而产生变化,但现在计算机分辨率相差并不是很明显,所以这个问题就很好地解决了。它们之间有一个简单的换算关系,就是pt单位乘以4/3就是px单位,因此把网页FONT-SIZE设置成12px(同9pt大小),就可以解决这个问题。设置成大字体看看,与小字体没什么区别!
Filed under:
0
Comments

IE post new value to anther IEwindows by JavaScript and WinObj by jawance

open a IE window , double check cost centre, then input new value ,and save . pop window close ,then pass new value to IE window.
Filed under: