VB.NET changes the way you write Visual Basic code. You learn quickly that most of the optimization tricks you've learned for VB6 won't work under VB.NET. For example, .NET memory allocation forces ...
If I wanted to reference a control in a Windows or ASP.NET program, I'd use something simple like:<BR><BR><pre class="ip-ubbcode-code-pre">myButton.Visible = False ...
If you want to allow users to print form components in run-time, the PrintDocument component lets you offer users this functionality. The PrintDocument component is an object that allows users to send ...
VB.NET allows you to use Web services as if they were entirely local objects since most of the marshaling between the client and the server is taking place in the background. This tip shows you how to ...