VB .NET 的 DateAdd 函数存在严重问题,建议不再使用

Posted by Admin L in .NET Programming on 30-08-2012. Tags: , , , , ,

作者:牧山道人
原文地址:https://www.seeksunslowly.com/vb-net-的-dateadd-函数存在严重问题-建议不再使用
转载请注明出处,谢谢。
_____________________________________

我们先来看 DateAdd 的函数原型
[cc lang=”vbnet”]
Public Function DateAdd(ByVal Interval As Microsoft.VisualBasic.DateInterval, _
ByVal Number As Double,[……]

Read More…

How to determine a Form is opened by which Form in .NET?

Posted by Admin L in .NET Programming on 27-08-2012. Tags: , , , , , , , ,

Author: Nosa Lee
Original Address: https://www.seeksunslowly.com/how-to-determine-a-form-is-opened-by-which-form-in-net
To reprint this article, please indicate the source, thank you.
_____________________________________

Usage Scenarios
For instance: there is a public FormA that used to inpu[……]

Read More…

.NET 如何知道某窗口是被哪个窗口打开的?

Posted by Admin L in .NET Programming on 27-08-2012. Tags: , , , , , , , ,

作者:牧山道人
原文地址:https://www.seeksunslowly.com/dot-net-如何知道某窗口是被哪个窗口打开的
转载请注明出处,谢谢。
_____________________________________

使用场景
比如有一个输入密码的公用窗口 FormA,可能会被多个窗口开启。
在 FormA 窗口中也许会有操作调用窗口的代码,此时就需要确定调用窗口是哪个。

实现方法
很简单,Form 类的 Show() 以及 ShowDialog() 均可包含一个参数,表示被开启窗口的所有者。
一般用法为:在需要开启 FormA 的窗口中写下 For[……]

Read More…

How to do when VB. NET API function or external DLL functions work abnormally?

Posted by Admin L in .NET Programming on 27-07-2012. Tags: , , , , , , , ,

Author: Nosa Lee Original Address: https://www.seeksunslowly.com/how-to-do-when-vb-net-api-function-or-external-dll-functions-work-abnormally To reprint this article, please indicate the source, thank you. _____________________________________   Sometimes, you may find that an API fu[……]

Read More…

VB .NET API 函数或外部 DLL 函数工作异常的处理方式之一

Posted by Admin L in .NET Programming on 27-07-2012. Tags: , , , , , , , ,

作者:牧山道人 原文地址:https://www.seeksunslowly.com/vb-net-api-函数或外部-dll-函数工作异常的处理方式之一 转载请注明出处,谢谢。 _____________________________________   有时,我们会发现在 VB6 中工作正常的 API 函数或外部 DLL 函数在 VB .NET 中工作异常。 笔者昨天也碰到到这样的问题,后来经过调试,发现原因是 VB6 中的 Long 数据类型在 VB .NET 中应声明为 Integer(事实上其表示的范围是等价的)。 比如,以下 VB6 使用的 A[……]

Read More…

VB .NET: how to use wildcards to delete files in batch mode?

Posted by Admin L in .NET Programming on 27-07-2012. Tags: , , , , , , , ,

Author: Nosa Lee Original Address: https://www.seeksunslowly.com/vb-net-how-to-use-wildcards-to-delete-files-in-batch-mode To reprint this article, please indicate the source, thank you. _____________________________________   In the programming work, we usually need to use wildcards to[……]

Read More…

VB .NET 如何使用通配符批量删除文件

Posted by Admin L in .NET Programming on 27-07-2012. Tags: , , , , , , , ,

作者:牧山道人 原文地址:https://www.seeksunslowly.com/vb-net-如何使用通配符批量删除文件 转载请注明出处,谢谢。 _____________________________________ 在编程工作中,使用通配符批量删除文件的需求随处可见。 对 .NET 来说,实现起来非常简单,不需要遍历目录即可实现。 使用 Kill 方法即可完成! 代码示例: Microsoft.VisualBasic.FileSystem.Kill("E:\test\*.jpg") 对于 C#,同样可使用 Kill 实现,不过请[……]

Read More…

C# VB .NET: why the fore/back color setting of ListView SubItem does not work?

Posted by Admin L in .NET Programming on 29-06-2012. Tags: , , , , , , , , , , ,

Author: Nosa Lee
Original Address: https://www.seeksunslowly.com/c-sharp-vb-net-why-the-foreback-color-setting-of-listview-subitem-does-not-work
To reprint this article, please indicate the source, thank you.
_____________________________________

Today I need to set the foreground color for a[……]

Read More…

C# VB .NET 中 ListView SubItem 颜色设置无效怎么解决?

Posted by Admin L in .NET Programming on 29-06-2012. Tags: , , , , , , , , , , ,

作者:牧山道人
原文地址:https://www.seeksunslowly.com/c-sharp-vb-net-中-listview-subitem-颜色设置无效怎么解决
转载请注明出处,谢谢。
_____________________________________

今天需要在 Details View 模式的 ListView 中设置 SubItem 文字前景色,幸运的是 ListViewSubItem 类有 ForeColor 属性,于是直接写下:

lvi.SubItems(2).ForeColor = Color.Red ‘ 其中 lvi 为 一个 ListVi[……]

Read More…

How to scroll to the specified row/item in ListView control of .NET and VB6

Posted by Admin L in .NET Programming, VB6 Programming on 25-04-2012. Tags: ,

Author: Nosa Lee
Original Address: https://www.seeksunslowly.com/dot-net-vb6-listview-scroll-row
To reprint this article, please indicate the source, thank you.
_____________________________________

Sometimes, we need to scroll a row/item to a visual position in ListView control (.NET: View pr[……]

Read More…