
VB
嵌入式linux
持续积累,持续提高
展开
-
DotNET WinForm FAQ 16个
http://www.sudu.cn/info/html/edu/20071226/30403.html dotnet winform 建立 faq 小气的神 2001.08.31 如何建立你的第一个窗体,希望下面的说明可以成为你快速开始的一个指引. 1. 如何设置一个from的边界 2. 如何建立一个透明的from 3. 如何设转载 2013-09-08 12:30:57 · 1521 阅读 · 0 评论 -
VB.net 将form控制在右下角
Private Sub FormProjectInfo_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load With Me .Text = "项目更新提示" .ControlBox = False .Locat原创 2013-09-05 23:03:06 · 1888 阅读 · 0 评论 -
讲解定时器VB.NET System.Threading类
之前我们将了关于定时器System.Windows.Forms.Timer类的讲解,今天我们大家来看和它类似的另一个VB.NET System.Threading 。这个定时器类来自System.Threading名字空间。我愿意说这是所有定时器类中最好的一个,但这会引起误导。举一个例子,我惊讶的发现对于驻留在VB.NET System.Threading名字空间的这个类天生就不是线程安全的。(很转载 2013-09-05 21:47:54 · 4798 阅读 · 0 评论 -
.NET中的三种Timer的区别和用法(转)
http://www.cnblogs.com/shang20017/archive/2009/03/16/1413798.html 最近正好做一个WEB中定期执行的程序,而.NET中有3个不同的定时器。所以正好研究研究。这3个定时器分别是: //1.实现按用户定义的时间间隔引发事件的计时器。此计时器最宜用于 Windows 窗体应用程序中,并且必须在窗口中使用。 System.转载 2013-09-05 13:49:31 · 1110 阅读 · 0 评论 -
VB.net 如何判断DataGridView中没有选中元素
If DGVDisplay.CurrentCell IsNot Nothing Then ' do somethingelse msgbox("当前为选中元素")end if原创 2013-09-04 23:17:20 · 2616 阅读 · 0 评论 -
VB.NET使用EXCEL常见操作
http://blog.163.com/shaoyu_lin/blog/static/38024599201210892447762/ 首先,须在项目里引用: 添加引用->Com->Microsoft Excel 9.0 Object Library (这是EXCEL2000)1 打开Excel: dim myexcel as new Excel.Application() mye转载 2013-09-04 22:58:02 · 8696 阅读 · 0 评论 -
vb.net中dataGridView的单元格的合并
http://vb.net-informations.com/datagridview/vb.net_datagridview_tutorial.htm The following lessons teaches you the fundamental programming concepts of DataGridView control and its supporting class转载 2013-09-04 22:57:13 · 5785 阅读 · 1 评论 -
VB.net Module
In this tutorial, we cover how to create a module, store information inside a module and then access that information in your application. A module can be used to store functions, subs or even variabl转载 2013-09-04 22:47:35 · 1646 阅读 · 0 评论 -
VB.net 中Module的使用1
创建只包含一个共享成员的一个VB.NET类的更简单的方法就是定义一个Module。Module是规则的、不能创建的类,它的成员是静态的。类模块与模块的区别:1.类模块中的数据对创建的每一个新实例都是惟一的,而在标准模块中的数据对应 应用程序或者对标准模块内的方法是全局的.2.当类实例失效时,类模块中的数据也失效,或者收集到垃圾桶,而标准模块在应用程序的生存期都是活动的,直到应用程序退出转载 2013-09-04 22:46:35 · 11490 阅读 · 0 评论 -
vb.net中dataGridView的单元格的合并
vb.net中dataGridView的单元格的合并对于下面的表格数据,我们经常会见到,2009060100001100abc1sumisu2008060100001120abc1yasio2007060100001150def1toms2005060100001190转载 2013-09-04 22:56:03 · 7754 阅读 · 2 评论 -
VB.net check whether a file is opened or not
Private Sub Test(ByRef sName As String) Dim fs As FileStream Try fs = File.Open(sName, FileMode.Open, FileAccess.Read, FileShare.None) excel_file_opened = F原创 2013-09-10 12:36:19 · 1253 阅读 · 0 评论 -
Setting file and folder permissions
There are a few examples of this already on the web but most of them are over complicated and dont just give you a simple example so I thought it might be worth writing one here.Basically this code ca转载 2013-09-09 13:41:22 · 1230 阅读 · 0 评论 -
VB.NET是如何关闭窗体 .
http://blog.youkuaiyun.com/wl58796351/article/details/7221040 1、在VB.NET中取消窗体的关闭事件;2、如何取消窗体上关闭按钮功能;3、窗体终止事件的过程,见如下说明如果只是关闭窗体,请调用该窗体的Close命令。如果你将应用程序项目的启动窗体设顶成某个窗体,则调用该启动窗体的Close命令时,也就会结束该应用转载 2013-09-03 08:06:49 · 5285 阅读 · 0 评论 -
DataGridView使用技巧(十四、单元格的边框、网格线设置)----.NET .
http://blog.youkuaiyun.com/yunhaic/article/details/7176015 1) DataGridView 的边框线样式的设定DataGridView 的边框线的样式是通过 DataGridView.BorderStyle 属性来设定的。 BorderStyle 属性设定值是一个BorderStyle 枚举: FixedSingle(单线,默认)、转载 2013-09-08 21:31:22 · 6010 阅读 · 0 评论 -
VB.net 设置DataGridView中row visible为false
1. 设置DataGridView时可能会遇到提示错误,可能的原因为为设置时被设置的行正在被选中。可能需要设置DataGridView.CurrentCell = Nothing.类似于取消焦点,这样就可以设置row的visible为false了。 2. 也可以参考http://social.msdn.microsoft.com/Forums/en-US/606c4ba0-754e原创 2013-09-08 19:37:29 · 1962 阅读 · 0 评论 -
vb.net form New 带参数构造函数
Public Class FormProjectInfo Private mf_form As New Formmain Public Sub New(ByVal form As Formmain) MyBase.New() InitializeComponent() Me.mf_form = form End S原创 2013-09-08 14:35:43 · 4020 阅读 · 0 评论 -
GetLastWriteTime-Methode
http://technet.microsoft.com/zh-cn/magazine/system.io.file.getlastwritetime(de-de).aspxImports SystemImports System.IOImports System.TextPublic Class Test Public Shared Sub Main()转载 2013-09-17 13:30:41 · 1951 阅读 · 0 评论