Tip Bank

DevX - Software Development Resource

Obtain an Application’s Current Execution Path

An easy way to identify the current execution path is by using the AppDomain.CurrentDomain.BaseDirectory property, which identifies the current assembly’s execution path. This property works well for both Windows and

DevX - Software Development Resource

Sending Clipboard Data via Email

Suppose you’ve just copied something to your clipboard. Want to send somebody an email containing that clipboard data? Just press CTRL+V in outlook. This opens a new Window with the

DevX - Software Development Resource

Raising Notifications from RMI

Ever wish you could have your RMI application notify you when it’s using the distributed garbage collector? Sometimes it’s useful to know when a RMI server “kills” an object. Just

DevX - Software Development Resource

Date Column/DataSet Bug Workaround

Maybe you’ve noticed that when a DataSet’s date columns are passed to a remote web server or web service whose time zone differs from that of the client, the date

DevX - Software Development Resource

Get the Current Date Using GregorianCalendar

To get the current date, your first instinct is probably to use the java.util.Date class. However, this class has so many deprecated methods that it’s probably best to ignore it.