Events Arguments Description   addmaptype type This event is fired when a map type is added to the map.   removemaptype type This event is fired when a map type is removed from the map....

0

Linux CVS命令

Posted in CVS at 三月 17th, 2010 / No Comments »

Linux CVS命令2008-11-17 13:07一、安装及初步设置 1、Setup CVS2、建立及初始化CVS工作目录#mkdir /src#msdir /src/cvslib#cvs -d /src/cvslib init //初始化cvs工作目录,可以看到出现CVSROOT目录,表示初始化成...

0

YAHOO YUI工具库

Posted in JavaScript, PHP at 三月 15th, 2010 / No Comments »

1.1. YAHOO工具库提供的方法 l namespace 用于创建一个全局的命名空间,使用YUI时,首先会自动创建widget,util,example三个命名空间,使用时也可以自定义命名空间。类似于在程序中建了了一个static变量。 l lang ...

0

HelloWorld Applet例子

Posted in Java at 三月 12th, 2010 / No Comments »

import java.awt.*; import java.applet.*; public class HelloWorld extends Applet {    public int rs;    public void paint(Graphics g)    {      g.drawString(“Hello World!”,5,35);   rs=2...

0

配置JAVA环境变量

Posted in Java at 三月 12th, 2010 / No Comments »

安装JDK: 到SUN官方站点(http://java.sun.com/)下载JDK的安装文件,下载之后安装好JDK; 安装完之后,设置环境变量:我的电脑—→属性—→高级—→环境变量; 选择—→系统变量(S):   设置【JAVA_HOME】环境...