1、在fragment的代码中 @Override public void
onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub
super.onCreate(save...
分类:
其他好文 时间:
2014-05-22 13:48:05
阅读次数:
197
获取光驱序列号、分位、型号代码
{CSDN:CODE:353256}
头文件如下(有些部分没有用到):
#include
#include
#include
#include
#include
// TODO: reference additional headers your program requires here
//static void dump_buffer(c...
分类:
其他好文 时间:
2014-05-22 09:56:04
阅读次数:
376
function todo() { var var1 = 1; (function () { var
var2 = var1 + 1; alert(var2); })(); } tod...
分类:
编程语言 时间:
2014-05-16 23:50:06
阅读次数:
369
一般都用GDI实现:void
CXiangpijinView::OnMouseMove(UINT nFlags, CPoint point) { // TODO: Add your
message handler code here and/or call default CVi...
分类:
其他好文 时间:
2014-05-15 21:04:55
阅读次数:
330
// 创建保存照片文件夹
private void CreateFileJPG() {
File file = new File("/sdcard/image");
if (!file.exists()) {
try {
file.mkdirs();
} catch (Exception e) {
// TODO: handle exceptio...
分类:
移动开发 时间:
2014-05-15 06:39:58
阅读次数:
434
// 处理另存文件的菜单
public void handleSaveAsFile() {
// 设置对话框的风格
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception e1) {
// TODO Auto-generated catch...
分类:
其他好文 时间:
2014-05-13 14:45:25
阅读次数:
239
一共设置了三个优先级,第一个正常优先级,第二个低优先级,第三个高优先级运行效果:代码: 1
void CTestProgressDlg::OnBnClickedBtnStart() 2 { 3 // TODO: 在此添加控件通知处理程序代码 4 //
创建线程 5 m_hTh...
分类:
其他好文 时间:
2014-05-12 21:56:14
阅读次数:
504
来源:孙鑫老师c++教程第7集在创建非模态对话框时void
CMyboleView::OnDialog(){// TODO: Add your command handler code here方法一TestDlg
*ptdlg=new TestDlg(this);ptdlg->Create(IDD...
分类:
其他好文 时间:
2014-05-12 21:15:11
阅读次数:
309
zTree实现地市县三级级联Service接口测试
ProvinceServiceTest.java:
/**
* @Title:ProvinceServiceTest.java
* @Package:com.gwtjs.service
* @Description:TODO
* @author:Youhaidong(游海东)
* @date:2014-5-11 上午12...
分类:
其他好文 时间:
2014-05-11 21:28:23
阅读次数:
310
public class ThreadTest implements Callable {
public String call() throws Exception {
// TODO Auto-generated method stub
wait(10000);
return "hello";
}
}调用代码:
public static void main(Stri...
分类:
编程语言 时间:
2014-05-11 21:27:24
阅读次数:
533