Tip Bank

DevX - Software Development Resource

Adding local groups to a NT Workstation

Question: I am trying to write an app that can add local groups to the NT security database on an NT workstation. When I use the netlocalgroupadd() function, I get

DevX - Software Development Resource

The Case for Class Variables

When each instance of a class needs access to a value that can vary from one run of the applet or application to the next, but will be constant within

DevX - Software Development Resource

Handling Checked Exceptions

There are three ways to deal with checked exceptions in Java. First, you can declare that the “callee” method throws them (using the “throws” keyword). You should do this when

DevX - Software Development Resource

Disable Textboxes and Combo boxes

Question: When a textbox or combo box is disabled, the black text within these control becomes grey. I would like to have all the features of disabling these controls, but

DevX - Software Development Resource

Mouse click

Question: How do I make the mouse click in VB 4? It just auto clicks without user inputs in the spot the mouse currently is. Answer: Without having to go

DevX - Software Development Resource

Text in VB5

Question: I’m a beginner to Visual Basic, and I would like to display in a text box several lines of text. However, when I enter the code under the command

DevX - Software Development Resource

ADODB.connection

Question: I use ADO with an Oracle database. To get the connection I have to use: dim Adodb as New ADODB.connectionwith Adodb .connectionString = ???? .openend with What do I