本月博客排行
-
第1名
龙儿筝 -
第2名
johnsmith9th -
第3名
wy_19921005 - zysnba
- sgqt
- lemonhandsome
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- gaojingsong
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- lzyfn123
- zhanjia
- forestqqqq
- johnsmith9th
- nychen2000
- ajinn
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- mwhgJava
- silverend
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
最新文章列表
request.getScheme()的使用方法
今天在修改bug时,发现程序使用了 request.getScheme() 。不明白是什么意思,在google 搜索了一下。现在明白了。整理如下:
1、request.getScheme() 返回当前链接使用的协议;比如,一般应用返回http;SSL返回https;
2、在程序中的应用如下:
String path = request.getContextPath();
String ...
Intellij使用记录
1. 用*标识编辑过的文件
Editor –> Editor Tabs 在IDEA中,你需要做以下设置, 这样被修改的文件会以*号标识出来,你可以及时保存相关的文件。"Mark modifyied tabs with asterisk"
2、显示行号
Settings->Editor->Appearance标签项,勾选Show line number ...
BCGControlBar安装好后如何进行初始化设置
首先下载并安装(BCGControlBar下载地址)。BCGControlBar安装好后,在开始使用前,还需要了解一些初始化设置以及BCGControlBar使用方法和技巧需要了解一下。
首先,请你按以下内容修改源码:
确定在你的应用程序InitInstance()中调用了AfxOleInit()
在你的应用程序ExistInstance()中添加一个调用BCGCBProC ...
SourceAnyWhere Standalone安装教程四:SourceAnywhere Standalone在Visual Studio上的使用方法
SourceAnywhere适用于单独的开发人员和开发团队。它可以让开发团队轻易地对同一个程序、文件、功能或代码行做出改变而没有早期更改覆盖后期更改的担忧。今天主要讨论SourceAnywhere Standalone在Visual Studio中的使用方法。希望对大家有所帮助。。。
《SourceAnyWhere Standalone安装教程四:SourceAnywhere Stan ...
DevExpress ToolTipController 如何设置显示时间和边框颜色
效果图如下:
1、如何设置显示的时间长短
设置this.toolTipController1.AutoPopDelay = 2000;
2、如何在屏幕上显示如上图所示的效果
ToolTipControllerShowEventArgs args = this.toolTipController1.CreateShowArgs();
this.toolTipController1 ...
DevExpress GridControl使用方法总结
一、如何解决单击记录整行选中的问题
View->OptionsBehavior->EditorShowMode 设置为:Click
二、如何新增一条记录
(1)、gridView.AddNewRow()
(2)、实现gridView_InitNewRow事件
三、如何解决GridControl记录能获取而没有显示出来的问题
gridView.populateColumn ...
artDialog简单用法
今天在网上找了一个弹出层的js工具,感觉这个效果做的很漂亮,而且使用也简单,
刚使用的时候,看了半天demo,也不知道杂用,后来,在网上找了一篇文章,大悟,
然后才明白,如何使用,
顺便贴下那位朋友的博客地址:http://imshare.iteye.com/blog/823859
官网地址:http://www.planeart.cn/demo/artDialog/index.html
...