上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 55 下一页
摘要: The provider is not compatible with the version of Oracle client提供程序与此版本的 Oracle 客户机不兼容保留下安装文件夹里的所有文件。然后把我那个很小应用软件(需要访问远程的oracle数据库)放在这个文件夹里。删除一下直接感觉无... 阅读全文
posted @ 2015-07-15 18:15 天王星天 阅读(628) 评论(0) 推荐(0)
摘要: 使用批处理+WinRAR制作静默安装程序包@echo 安装完窗口会自动关闭!!!@echo offstart /wait Lync.exe /Install /Silent start /wait vcredist_x86/vcredist_x86.exe /q /norestartstart /w... 阅读全文
posted @ 2015-07-15 15:57 天王星天 阅读(3303) 评论(0) 推荐(0)
摘要: WIn32 API:public class Win32Native { [DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)] public static extern uint... 阅读全文
posted @ 2015-07-02 11:18 天王星天 阅读(754) 评论(0) 推荐(0)
摘要: 以前整理的Win32API,可以直接在C#中直接调用,在做WinForm时还是很有帮助的。以前用在一个多窗口界面中,当轮询窗口时,调用API会提高很多效率。源码下载http://files.cnblogs.com/lordeo/win32api.rar源码包含三个文件Win32API.cs,Enum... 阅读全文
posted @ 2015-07-01 21:15 天王星天 阅读(5229) 评论(0) 推荐(0)
摘要: C# WinForm 上传多文件和数据public static class HttpHelper { private static readonly Encoding DEFAULTENCODE = Encoding.UTF8; /// /// H... 阅读全文
posted @ 2015-06-18 10:16 天王星天 阅读(1006) 评论(0) 推荐(0)
摘要: 是自己在一网站下建了虚拟目录。原本网站为空,后来自己改了路径,有了默认配置很久后打开原本ok的虚拟目录,坑爹了。杯具了。代码:ConfigurationManager.ConnectionStrings("ConnectionString").ConnectionString出错:项“Connect... 阅读全文
posted @ 2015-06-15 15:22 天王星天 阅读(1275) 评论(0) 推荐(0)
摘要: 保存图片控件上的图片到本地 出现错误:无法将类型为“System.Windows.Media.Imaging.BitmapFrameDecode”的对象强制转换为类型“System.Windows.Media.Imaging.BitmapImage”。try { ... 阅读全文
posted @ 2015-06-15 10:43 天王星天 阅读(2140) 评论(0) 推荐(0)
摘要: 使用一个已命名的(操作系统范围的)互斥量。bool mutexIsNew;using(System.Threading.Mutex m = new System.Threading.Mulex(true, uniqueName, out mutexIsNew)){ if(mutexIsNew) { ... 阅读全文
posted @ 2015-03-06 11:32 天王星天 阅读(150) 评论(0) 推荐(0)
摘要: 写入:protected override void OnClosed(EventArgs e){ base.OnClosed(e); IsolatedStorageFile f = IsolatedStorageFile.GetUserStoreForAssembly(); using(Isola... 阅读全文
posted @ 2015-03-06 11:31 天王星天 阅读(261) 评论(0) 推荐(0)
摘要: 在程序代码里,有两种设置绑定的方法,一种是调用FrameworkElement或FrameContentElement对象的SetBinding实例方法。例如:Public MainWindow(){InitializeCompnet();Binding binding = new Binding(... 阅读全文
posted @ 2015-03-06 11:13 天王星天 阅读(419) 评论(0) 推荐(0)
上一页 1 ··· 40 41 42 43 44 45 46 47 48 ··· 55 下一页