狮子座男

导航

上一页 1 ··· 5 6 7 8 9 10 11 下一页

2014年1月10日 #

Flex + .Net从本地选择一个图片上传到服务器

摘要: 新建一个 textiput存储显示文件名和image来做button选取本地图片文件。触发的事件代码private var curfile:FileReference=new FileReference();private var browerFlag:Boolean=false;private function fileBrowser(event:Event):void{ var imageTypes:FileFilter = new FileFilter("Images(*.jpg,*.jpeg,*.png,*.gif,*.bm... 阅读全文

posted @ 2014-01-10 11:24 狮子座男 阅读(282) 评论(0) 推荐(0) 编辑

2014年1月7日 #

Flex labelFunction 用法

摘要: public f... 阅读全文

posted @ 2014-01-07 17:18 狮子座男 阅读(346) 评论(0) 推荐(0) 编辑

2013年12月14日 #

Flex的Number和Text

摘要: 今天要说的问题不是Number和String转换的问题。而是使用时容易出的一些错误:public static function ToFixed(value:Number, digits:uint = 0):String{//......}Fixed方法本意是要输入一个Number然后保留指定的小数位.但是我像下面这么使用的时候也没有报错。TexInput1.text = currencyFormatter.format(Number(ToFixed(TexInput2.text,2)) - Number(ToFixed(ToFixed(TexInput3.text,2)));输入的参数是T. 阅读全文

posted @ 2013-12-14 17:42 狮子座男 阅读(275) 评论(0) 推荐(0) 编辑

2013年12月13日 #

Flex DateTime Format

摘要: 1 mx.formatter.DateFormatter2 3 var df:DateFormatter = new DateFormatter();4 df.formatString = "YYYY-MM-DD JJ:NN:SS";5 df.format(new date());用到老的DateFormatterspark里的DateTimeFormatter根据官方的例子import spark.formatters.DateTimeFormatter;df.dateTimePattern ="EEEE, MMMM dd, yyyy h:mm:ss a&quo 阅读全文

posted @ 2013-12-13 12:47 狮子座男 阅读(388) 评论(0) 推荐(0) 编辑

2013年12月8日 #

inet_pton和inet_ntop inet_ntoa

摘要: Linux下地址转换函数inet_pton ==> Oxinet_ntop ==> xxx.xxx.xxx #include #include #include 1 char IPdec[20]; //存放点分十进制IP地址 2 3 struct in_addr s; // IPv4地址结构体 4 5 6 7 printf("Please input IP address: "); 8 9 scanf("%s", IPdec); //input 192.168.1.110 11 12 13 inet_pton(AF_INET, ... 阅读全文

posted @ 2013-12-08 21:21 狮子座男 阅读(787) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9 10 11 下一页