Windows开发-周排行
Delphi7 XE7 我可以下载:http://altd.embarcadero.com/download/radstudio/xe7/delphicbuilder_xe7_win.iso安装包5G许多,我不知道什么时候才能拥有它的注册版
分类:Windows开发 时间:2015-12-10 13:18:32 收藏:0 阅读:234
[_window setMovableByWindowBackground:YES]; //可以拖动 //self.window.styleMask=NSTexturedBackgroundWindowMask; //窗口的样式;金属 //self.wind...
分类:Windows开发 时间:2015-12-10 13:21:22 收藏:0 阅读:824
说明:大部分转载于initialneil的大作Caffe + vs2013 + OpenCV in Windows Tutorial (I) –Setup准备工作:1.下载CUDA7.5:https://developer.nvidia.com/cuda-downloads,安装完成后会自动创建变量...
分类:Windows开发 时间:2015-12-10 13:29:52 收藏:0 阅读:558
一.概述 windows下当想启动某个应用程序的时候,发现启动失败,正莫名中,突然发现原来是改程序配置的端口被其他进程占用了,稠稠之际,该怎么办呢,其实很简单,请看下面几个windows命令就能轻松解决此问题。二.处理占用端口的进程1.查看占用端口的进程:netstat -aon|findstr ....
分类:Windows开发 时间:2015-12-10 13:30:02 收藏:0 阅读:206
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Net;using System.Net.Sockets;namespace NBC.Test.ObjectM...
分类:Windows开发 时间:2015-12-10 14:54:13 收藏:0 阅读:547
1,Making the Back button appear requires just one line of code:SystemNavigationManager.GetForCurrentView().AppViewBackButtonVisibility = AppViewBackBu...
分类:Windows开发 时间:2015-12-10 14:56:23 收藏:0 阅读:216
目录1.使用的类2.获取本地主机IP地址3.远程查询4.实现网段的扫描--------------------------------------------------------------------------------正文1.先介绍一下使用的类:DNS类:在.net中的System.ne...
分类:Windows开发 时间:2015-12-10 14:57:22 收藏:0 阅读:271
要序列化的对象的类:[Serializable]public class Person{private string name;public string Name{get{return name;}set{name=value;}}public string Sex;public int Age=...
分类:Windows开发 时间:2015-12-10 14:59:32 收藏:0 阅读:170
转自:http://www.cnblogs.com/KissKnife/archive/2008/03/23/1118423.html另外推荐一篇学正则表达式的文章:http://www.unibetter.com/deerchao/zhengzhe-biaodashi-jiaocheng-se.h...
分类:Windows开发 时间:2015-12-10 14:59:53 收藏:0 阅读:232
#region 屏蔽Windows功能键(快捷键) public delegate int HookProc(int nCode, int wParam, IntPtr lParam); private static int hHook = 0; public const int ...
分类:Windows开发 时间:2015-12-10 15:03:23 收藏:0 阅读:341
在winform中有一个控件可以显示html的内容,该控件就是webbrowser,设置它的DocumenText属性为HTML的内容即可。在使用WebBrowser做UI的时候,我们有时不希望里面的链接被用户点击,更不希望弹出烦人的脚本错误提示框,也不希望用户能点出右键的IE菜单,要做到这些,其实...
分类:Windows开发 时间:2015-12-10 15:06:33 收藏:0 阅读:184
Swing本身没有提供什么华丽丽的日期时间选择控件,所以笔者就在网上搜了个第三方的jar包jdatepicker-1.3.2.jar,基于此设计了个很轻量的日期选择面板,很简单的。效果图如下所示: 代码如下: import java.awt.event.ActionEvent; import jav...
分类:Windows开发 时间:2015-12-10 16:27:23 收藏:0 阅读:305
FND_MESSAGE_PUB.getexception when others then for i in 1.. fnd_msg_pub.Count_Msg loop dbms_output.put_line( fnd_msg_pub.Get(p_msg_index => i,p_en...
分类:Windows开发 时间:2015-12-10 16:30:13 收藏:0 阅读:237
分享一款高速读取识别条码的开发工具包——Barcode Reader Toolkit for Windows.
分类:Windows开发 时间:2015-12-10 16:39:03 收藏:0 阅读:255
这里所说的“动态信息提示窗口”可不同于JOptionPane中的Message窗口和Confirm窗口,它们都是静态的模态的,更重要的是线程阻塞的,迫使你必须选择某个动作才能继续执行。我们接下来要分享的这个动态信息提示窗口,重点就是信息是动态的且实时刷新显示的,我们设想这样一个应用场景,当我们要向数...
分类:Windows开发 时间:2015-12-10 16:43:13 收藏:0 阅读:447
dynamic:void Main(){ var b="2"; dynamic a="2"; if(a.GetType()==typeof(int))b+=a; if(a.GetType()==typeof(string))b+=a; Console.WriteLine (b); Console.W...
分类:Windows开发 时间:2015-12-10 16:44:53 收藏:0 阅读:260
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplication4{ class...
分类:Windows开发 时间:2015-12-10 16:45:54 收藏:0 阅读:287
/// /// 根据时间获取时间状态 /// /// /// public string GetTimeInfo(DateTime dt) { TimeSpan span...
分类:Windows开发 时间:2015-12-10 16:50:13 收藏:0 阅读:298
ASP.NET Web API 应用教程(一) ——数据流使用相信已经有很多文章来介绍ASP.Net Web API 技术,本系列文章主要介绍如何使用数据流,HTTPS,以及可扩展的Web API 方面的技术,系列文章主要有三篇内容。主要内容如下:I 数据流II 使用HTTPSIII 可扩展的Web...
分类:Windows开发 时间:2015-12-10 16:59:44 收藏:0 阅读:372
调起键盘的时候,弹出PopupWindow,但是键盘没有隐藏。private void init() { View contentView = LayoutInflater.from(mContext).inflate( R.layout.realna...
分类:Windows开发 时间:2015-12-10 17:00:03 收藏:0 阅读:241
1275427552756275727584851
上一页97009下一页
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!