08 2018 档案
摘要:查了很多资料最后靠百度百科里的一票报道彻底解决困难。在次发表一下以便给后人排忧解难 已下为百度连接 https://jingyan.baidu.com/article/7908e85cb24c19af481ad2ed.html 打开cmd命令行窗口,将sqlservr.exe 拖到cmd命令行窗口中
阅读全文
摘要:https://zhidao.baidu.com/question/151448005.html 具体步骤:运行-> 输入:“services.msc” ->找到 “SQL Server (SQLEXPRESS)” 服务,双击 -> 在“SQL Server (SQLEXPRESS) 的属性”界面,
阅读全文
摘要:https://blog.csdn.net/easyboot/article/details/68062196可以使用 Combobox.SelectText = “默认选中文本”; 但是如果Combobox的DropDowStyle属性,选择为DropDownList则上面的方法就不能用了 用下面
阅读全文
摘要:https://www.cnblogs.com/Ruiky/archive/2012/04/16/2451663.html
阅读全文
摘要:https://blog.csdn.net/aaaaatiger/article/details/5583301 1.debug只在[debug模式下才执行](运行按钮后面的下拉框可选) 2.debug提供了许多调试指令,如断言 System.Diagnostics.Debug.Assert(fal
阅读全文
摘要:https://blog.csdn.net/hutao1101175783/article/details/16800871 先对项目添加对Microsoft.VisualBasic的引用 Interaction.InputBox("请输入对方ip:", "提示:", "127.0.0.1", -1
阅读全文
摘要:http://www.cnblogs.com/luomingui/archive/2011/06/25/2090130.html 测试了好像没用的。不知道什么原因
阅读全文
摘要:查是否有该表名 SELECT * FROM sys.objects WHERE name='表名'查表字段的信息select * from syscolumns where id=Object_Id('表名');
阅读全文
摘要:首先建立一个Activity 类。然后他会自动生成一个Layout XML。 再去到AndroidManifest.xml android:name="com.zxl.test.MainActivity"> <intent-filter> <action android:name="android.
阅读全文
摘要:https://zhidao.baidu.com/question/31914620.html https://www.cnblogs.com/xcsn/p/4678322.html Process CurrentProcess = Process.GetCurrentProcess();Curre
阅读全文
摘要:https://blog.csdn.net/qq_28585471/article/details/75991613 今天在练习自定义标题栏(Android初级开发(四)——补充3)的过程中遇到了隐藏系统自带标题栏的问题,现将几种去掉系统自带标题栏的方式做一总结。大体上可以分为两种方式,一种是修改x
阅读全文