Window
serversql
这个作者很懒,什么都没留下…
展开
-
在网页中调用应用程序
此问题我曾经也在一些论坛中问过,但是都没有得到答案.后来自己找研究了一些例子得到以下方法:HKEY——CLASSES——ROOT增加一项(应用程序的名字)——Shell—— Open—— Command在应用程序名字下增加字符串 URL Protocol ;修改Command里面的默认值的数据为 应用程序的安装路径和执行文件的名字,如:“ ”c:/program/shangwutong/s原创 2006-03-18 09:49:00 · 2882 阅读 · 3 评论 -
制作托盘闪烁
using System;using System.Drawing;using System.Windows.Forms;using System.ComponentModel;using System.Collections;using System.IO;using System.Xml;using System.Text;using System.Runtime.InteropService原创 2006-03-20 12:38:00 · 1190 阅读 · 0 评论 -
进程间的通信
using System.Runtime.InteropServices;//添加引用public struct COPYDATASTRUCT//信息结构 { public IntPtr dwData; public int cbData; [MarshalAs(UnmanagedType.LPStr)] public string lpData; }const int WM_COP原创 2006-04-05 21:04:00 · 1115 阅读 · 0 评论 -
全国各省/市/民族
/// /// 所有城市 /// 整理:周李初 /// 日期:2006年3月10日 /// 使用说明:jy_controls.AllArea.AllObj.所有城市.导出XML(@"F:/bb.xml");导出中国所有的城市 /// jy_controls.AllArea.所有省或洲.吉林省.所有城市.导出XML(@"F:/ca.xml");导出吉林省的所有城市,且返回一个datatable原创 2006-04-06 10:26:00 · 4996 阅读 · 0 评论 -
弹出窗体
//确保窗口没有被最小化或最大化 ShowWindowAsync (ptr , WS_SHOWNORMAL); //设置真实例程为foreground window SetForegroundWindow (ptr);[DllImport("User32.dll")] public static extern bool ShowWindowAsync( IntPtr原创 2006-04-06 12:12:00 · 1151 阅读 · 0 评论