How to perfectly display any size images in a fixed size PictureBox

Posted by Admin L in .NET Programming on 18-06-2011. Tags:

Author: Nosa Lee
Original Address: https://www.seeksunslowly.com/perfect-display-picture
To reprint this article, please indicate the source, thank you.
_____________________________________

So-called display any size images in a fixed size PictureBox perfectly, should meet the following requi[……]

Read More…

如何在固定尺寸的 PictureBox 中完美显示任意大小的图片

Posted by Admin L in .NET Programming on 18-06-2011. Tags:

作者:牧山道人
原文地址:https://www.seeksunslowly.com/perfect-display-picture-sc
转载请注明出处,谢谢。
_____________________________________

所谓在大小不变的 PictureBox 中完美地显示各种尺寸的图片,应该达到以下要求:
1、PictureBox 位置、大小固定。
2、若图片比 PictureBox 小(或一样大)则居中显示。
3、若图片比 PictureBox 大则以按比例缩放显示。
4、最好给 PictureBox 加上边框。

以下是实现方法(VB 2008)[……]

Read More…

How to disable Task Manager on all Windows versions (especially Windows 7)

Posted by Admin L in .NET Programming on 17-06-2011. Tags:

Author: Nosa Lee
Original Address: https://www.seeksunslowly.com/disable-task-manager-dot-net
To reprint this article, please indicate the source, thank you.
_____________________________________

Sometimes, we need to disable Windows Task Manager temporarily to avoid user end the special progr[……]

Read More…

.NET 如何在各版 Windows 特别是 Windows 7 上禁用任务管理器

Posted by Admin L in .NET Programming on 17-06-2011. Tags:

作者:牧山道人
原文地址:https://www.seeksunslowly.com/disable-task-manager-dot-net-sc
转载请注明出处,谢谢。
_____________________________________

有时,我们需要暂进禁用任务管理器,以免用户结束某个程序。

在网上找了一些资料,有说以二进制 stream 形式先打开 C:\windows\system32\taskmgr.exe 及 C:\windows\syswow64\taskmgr.exe 程序,使后续无法手工正常打开任务管理器;也有说增加注册表条目:在 HKEY_CUR[……]

Read More…

在 .NET 中如何确定 Windows 操作系统是 32 位还是 64 位

Posted by Admin L in .NET Programming on 14-06-2011. Tags:

作者:牧山道人
原文地址:https://www.seeksunslowly.com/windows-os-bit-vb-net-sc
转载请注明出处,谢谢。
_____________________________________

有时,我们需要确定 Windows 操作系统位数是 32 位还是 64 位。

具体来说,我需要在 32 位操作系统和 64 位操作系统中加载不同的 DLL。

通过分析和实践,我发现了一个在 .NET 中实现它的简便方法,参见以下代码(在 VB2008 + .NET 3.5 SP 1 中测试通过):

 

[cc lan[……]

Read More…

How to determine Windows OS is 32-bit or 64-bit in .NET

Posted by Admin L in .NET Programming on 13-06-2011. Tags:

Author: Nosa Lee
Original Address: https://www.seeksunslowly.com/windows-os-bit-vb-net
To reprint this article, please indicate the source, thank you.
_____________________________________

Sometimes, we need to determine Windows OS is 32-bit or 64-bit.

Specifically, I want to load different[……]

Read More…

初识 SQLite

Posted by Admin L in .NET Programming on 13-10-2010. Tags:

作者:牧山道人
原文地址:https://www.seeksunslowly.com/sqlite-net-base-vb2008
转载请注明出处,谢谢。
_____________________________________

之前开发的桌面软件产品一般以纯文本方式存取数据,再进行加密,虽然已开发出一套合用的 COM 库,但总比较别扭、笨拙。  

近期本已打算以 .NET 及 VB2008 作为以后产品的主要开发环境,加上久闻 SQLite 开源、轻、巧、好,故今日对其进行了初步研究(一如既往地仅在目前产品需求范围内作研究)。  

研究结果表明:SQLite 的确没[……]

Read More…