上一页 1 ··· 52 53 54 55 56 57 58 59 60 ··· 92 下一页
#include <iostream>#include <iomanip>#include <cstdlib>using namespace std;void bubbleSort(int [],const int, bool(*)(int,int));void swap(int * const,int * const);bool ascending(int ,int);bool descending(int,int);void print_arr(int [],int);int main(){ int arr[]={3,42,1,100,689,2,24, Read More
posted @ 2011-06-12 17:17 庚武 Views(260) Comments(0) Diggs(0)
环境:windows Server2003, Eclipse helios, MS SqlServer 2008step 1: SQL:Create table Person(id_1 bigint identity primary key,firstName_1 varchar(20),lastName_1 varchar(20),weightInKilograms_1 decimal,heightInMeters_1 decimal)step 2: dbConfig.xml<?xml version="1.0" encoding="UTF-8" Read More
posted @ 2011-06-11 11:15 庚武 Views(238) Comments(0) Diggs(0)
http://search.maven.orghttp://repository.apache.orghttp://www.artifact-repository.orghttp://mvnrepository.comhttp://www.mvnbrowser.comhttp://www.jarvana.comhttp://mavensearch.netpom.xml示例:<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema Read More
posted @ 2011-06-10 16:16 庚武 Views(2149) Comments(0) Diggs(0)
http://www.adobe.com/devnet/flex/documentation.htmlhttp://www.adobe.com/support/documentation/en/flex/flex3.html Read More
posted @ 2011-06-09 21:40 庚武 Views(190) Comments(0) Diggs(0)
Eclipse插件:http://marketplace.eclipse.org/Maven2Eclipse插件安装与使用http://www.sonatype.com/books/m2eclipse-book/reference/Maven2Eclipse安装:http://www.sonatype.com/books/m2eclipse-book/reference/install-sect-marketplace.htmlhttp://www.cnblogs.com/dcba1112/archive/2011/05/01/2033805.html现在我以Eclipse 3.6为例逐步讲解 Read More
posted @ 2011-06-09 17:43 庚武 Views(877) Comments(0) Diggs(0)
Service1.asmx.csusing System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Services;namespace TestWebServiceForFlex{ /// <summary> /// Service1 的摘要说明 /// </summary> [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(Conform Read More
posted @ 2011-06-08 12:37 庚武 Views(639) Comments(0) Diggs(0)
该文被密码保护。 Read More
posted @ 2011-06-07 02:29 庚武 Views(1) Comments(0) Diggs(0)
http://wenku.baidu.com/view/217ff860caaedd3383c4d3f9.htmliisexpress /path:<网站目录> /port:<端口> /clr:<CLR版本,V2.0|V4.0>IISExpress会复制一份配置文件到临时目录... Read More
posted @ 2011-06-06 22:21 庚武 Views(274) Comments(0) Diggs(0)
from:http://bbs.airia.cn/forum-viewthread-tid-44906-highlight.html当Array的数据发生变化的时候,用它作为数据源的控件不能感知这种变化。例如:myArray.push(“new value”); 这时,如果一个List用它作为dataProvider,List的列表中不会增加新加入的这个值。而当ArrayCollection的数据发生变化的时候,能够通知控件发生变化。例如:myArrayCollection.addItem(“new item”); 这时,如果一个控件List用它作为dataProvider,List列表中会增 Read More
posted @ 2011-06-06 12:07 庚武 Views(1056) Comments(0) Diggs(0)
该文被密码保护。 Read More
posted @ 2011-06-03 10:32 庚武 Views(2) Comments(0) Diggs(0)
上一页 1 ··· 52 53 54 55 56 57 58 59 60 ··· 92 下一页