VB2008 application publishing note 1

Posted by Admin L in .NET Programming on 21-07-2011. Tags:

Author: Nosa Lee
Original Address: https://www.seeksunslowly.com/vb2008-publish-note-1
To reprint this article, please indicate the source, thank you.
_____________________________________

Note
Remove the unused references before publishing.
Purpose
Reduce the size of redistributable packag[……]

Read More…

The method of pause program and note in VB2008

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

Author: Nosa Lee
Original Address: https://www.seeksunslowly.com/vb2008-pause-program-note
To reprint this article, please indicate the source, thank you.
_____________________________________

The method is so easy, just use Sleep(n) function of Thread class (the unit of n is millisecond, 1 mi[……]

Read More…

How to make transparent form/window in VB2008

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

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

It seems very difficult, and seems to need to use Win32 API, in fact not the case.
It is very easy to[……]

Read More…

How to make top and full-screen window/form in VB2008

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

Author: Nosa Lee
Original Address: https://www.seeksunslowly.com/vb2008-top-full-screen-window
To reprint this article, please indicate the source, thank you.
_____________________________________

It seems very difficult, and seems to need to use Win32 API, in fact not the case.
It is very ea[……]

Read More…

How to let SQLite.NET support Windows x64 with .NET 4.0

Posted by Admin L in .NET Programming on 16-07-2011. Tags:

Author: Nosa Lee
Original Address: https://www.seeksunslowly.com/sqlite-net-x64-net4
To reprint this article, please indicate the source, thank you.
_____________________________________

The DLL in current version of SQLite.NET (1.0.66.0) is not compatible in Windows x64 with .NET 4.0, in fact[……]

Read More…

How to cancel keyboard press/input in VB2008

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

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

Because it is different than VB6, so introduce it specially.
Method
Add the following code to the KeyPres[……]

Read More…

How to disable <Alt + F4> and Window <Close> button in .NET

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

Author: Nosa Lee
Original Address: https://www.seeksunslowly.com/disable-alt-f4-close
To reprint this article, please indicate the source, thank you.
_____________________________________

Sometimes, we need to disable <Alt + F4> keys and Window <Close> button, so as to prevent the[……]

Read More…

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…

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…

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…