码迷,mamicode.com
首页 > 2015年12月30日 > 全部分享
如何将编辑框控件"滚动条"一直保持往下滚
用编辑框控件做串口数据的接收,由于编辑框控件的大小有限,当接收到的数据超过框体时,右侧的的滚动条就总往上面。因为数据不断接收,我是希望这滚动条总是向下走。这样做的目的是在编辑框控件上保持显示最新收到的数据。我在网上有查过一些做法,比如在收到新数据后,就把这滚动条总或光标指向编辑框内容的最后面,试了一...
分类:其他好文   时间:2015-12-30 09:11:12    阅读次数:151
Android Studio下载安装使用教程
最近Google的在Google I/O大会上推出了一款新的开发工具android studio。这是一款基于intellij IDE的开发工具,使用Gradle构建,相信做过java的童鞋们都知道这个工具。今天俺安装了下尝尝鲜,打开一看其实和之前的intellij ide创建Android工程是一...
分类:移动开发   时间:2015-12-30 09:11:01    阅读次数:235
css样式表中四种属性选择器
css样式表中四种属性选择器1> 简易属性tag[class]{ font-weight:bold }It will affect all tag with any class.e.g. or 2>精确属性值a[href="http://www.cnblogs.cn"][title="textTi....
分类:Web程序   时间:2015-12-30 09:11:50    阅读次数:204
Linux环境下MySQL基础命令----查看、创建、删除库和表
案例二,查看数据库MySQL是一套数据库管理系统,支持运行多个库,每个库相当于一个容器,存放着许多表。数据就存在这些表中,所以查看、创建、删除库和表,在工作中必不可少。一,查看1,查看当前服务器中有哪些库使用命令:SHOWDATABASES;//查看库信息2,查看当前使用的库中有..
分类:数据库   时间:2015-12-30 08:07:32    阅读次数:387
2015年终总结
一晃眼间,2015就匆匆走过了。时间如白驹过隙,悄悄从指间溜走。回望这一年,从学生时代走向了社会,也是我从网络转向系统运维的元年。这一年,我选择了离开深圳,独自一人来上海闯荡。从网络方向转行是经过深思熟虑的,以前在学校,只有眼前的一片天,以为网络安全将是未来的..
分类:其他好文   时间:2015-12-30 08:08:28    阅读次数:151
Unity3d Fast Indirect illumination Using Two Virtual Spherical Gaussian Lights-Square Enix论文
博主实现(in Unity3d 5) used one spotlight 史克威尔效果展示(夜光引擎?) 博主近期渲染:最近用unity5弄的一些渲染                               ---- by wolf96   http://blog.csdn.net/wolf96...
分类:编程语言   时间:2015-12-30 08:05:06    阅读次数:484
js 主动触发事件
//主动触发事件:触发鼠标被按下事件 var btn2 =document.getElementById("btn2"); var btn = document.getElementById("btn"); //步骤1:先创建1个事件 var evObj =...
分类:Web程序   时间:2015-12-30 08:04:58    阅读次数:300
Ubuntu系统Java开发环境的搭建
操作系统:Linux x64 / Ubuntu 14.04Java JDK版本:jdk-8u65-linux-x64.tar.gz声明:转载请注明出处及本文链接1. 前往ORACLE官网下载最新版本的Java JDK:http://www.oracle.com/technetwork/java/ja...
分类:编程语言   时间:2015-12-30 08:04:48    阅读次数:158
归档日志路径
归档日志路径为LOG_ARCHIVE_DEST指定的路径: SQL> show parameter log_archive_dest;   NAME                                 TYPE        VALUE ------------------------------------ ----------- ------------------...
分类:其他好文   时间:2015-12-30 07:03:25    阅读次数:164
Java LinkedList - differences between retrieve operations
Returning null + removing operations:poll(),pollFirst().Returning null + not removing operations:peek(),peekFirst().Throwing exception + removing oper...
分类:编程语言   时间:2015-12-30 07:02:43    阅读次数:153
微软开源全新的文档生成工具DocFX
微软放弃Sandcastle有些年头了,微软最近开源了全新的文档生成工具DocFX,目前支持C#和VB,类似JSDoc或Sphinx,可以从源代码中提取注释生成文档之外,而且还有语法支持你加入其他的文件链接到API添加额外的说明,DocFX会扫描你的源代码和附加的文件为你生成一个完整的HTML模版网...
分类:其他好文   时间:2015-12-30 07:03:22    阅读次数:443
LeetCode - Unique Paths
题目:A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).The robot can only move either down or right at any...
分类:其他好文   时间:2015-12-30 07:00:11    阅读次数:151
stl vector
初始化vector chars(26, 0); // initialized as 26 zeros
分类:其他好文   时间:2015-12-30 07:00:50    阅读次数:138
LeetCode - Valid Number
题目:Validate if a given string is numeric. Some examples:"0" => true" 0.1 " => true"abc" => false"1 a" => false"2e10" => trueNote: It is intended fo...
分类:其他好文   时间:2015-12-30 07:00:07    阅读次数:150
LeetCode - Unique Paths II
题目:Follow up for "Unique Paths":Now consider if some obstacles are added to the grids. How many unique paths would there be?An obstacle and empty spac...
分类:其他好文   时间:2015-12-30 07:01:46    阅读次数:208
Leetcode: Additive Number
Additive number is a string whose digits can form additive sequence.A valid additive sequence should contain at least three numbers. Except for the fi...
分类:其他好文   时间:2015-12-30 06:59:18    阅读次数:224
stl map
遍历mapit->first it->second#include#include#includeint main(){map words;map::iterator it=words.begin();for(;it!=words.end();++it) coutfirst ...
分类:其他好文   时间:2015-12-30 07:01:53    阅读次数:247
1158条   上一页 1 ... 55 56 57 58 59 60 61 ... 69 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!