View Mode: Normal | Article List

Farmer's Home in Xichang

[ 2006-08-27 15:02:20 | Author: liuhuan ]
uploads/200608/28_150037_img_0412.jpg

Xichang

[ 2006-08-25 19:16:29 | Author: liuhuan ]
uploads/200608/25_191454_xichang.jpg

Draw line dynamiclly in Microsoft Excel

[ 2006-08-21 07:07:40 | Author: liuhuan ]
Coz seems there's no line object in Microsoft Excel . Here we use shape and addline method.
Quote
Sub drawline()
Dim X1, X2, Y1, Y2 As Single
Dim theline As Shape
X1 = Cells(2, 1).Value
X2 = Cells(2, 3).Value
Y1 = Cells(2, 2).Value
Y2 = Cells(2, 4).Value
Set theline = Sheet1.Shapes.AddLine(X1, Y1, X2, Y2)
End Sub
Click Here To Download

Focus flash ad banner

[ 2006-08-18 18:16:14 | Author: liuhuan ]
Many portal websites use this flash picture player to show the latest picture news .

The code in html :
Quote
<A href="javascript:goUrl()" target=_self>
<SCRIPT type=text/javascript>
imgUrl1="01.jpg";
imgtext1="图片1"
imgLink1=escape("1.htm");
imgUrl2="02.jpg";
imgtext2="图片2"
imgLink2=escape("2.htm");
imgUrl3="03.jpg";
imgtext3="图片3"
imgLink3=escape("3.htm");
imgUrl4="04.jpg";
imgtext4="图片4"
...

Read More...

Flash Game

[ 2006-08-16 13:04:14 | Author: liuhuan ]