Faster Search Results with the VS.NET IDE’s Incremental Search Feature
Use the Ctrl-I keys and start typing the letters of the word that you want to search. For example, if you want to search for “devx,” press Ctrl-I and start
Use the Ctrl-I keys and start typing the letters of the word that you want to search. For example, if you want to search for “devx,” press Ctrl-I and start
This tip demonstrates how to build a “flea” filter based on the RGBImageFilter class. The filtered picture will look like the image displayed on old TVs. import java.awt.image.*;import java.util.*;import java.awt.*;public
This tip is an addendum to the VB-2-the-Max tip CreateFileAssociation – Associate a file extension. The following code shows the complete original tip. The addendum is in bold. Without the
The following code calculates the last day of the month for any given date: Description: Calculates the last day of the month for any given date*/CREATE FUNCTION [dbo].[ufn_GetLastDayOfMonth]( @inpuDate SMALLDATETIME)RETURNS
Sometimes people assume that the default web browser is the program that is registered in the Windows registry to open files with an .html extension. However, it’s possible to set
In this example, you will obtain all methods, all declared methods, and one specific method for the java.lang.reflect.Method class: import java.lang.reflect.*;public class getMethodsWithReflection { public static void main(String[] args){ Class
Most developers use Command Window as an interactive debug window, but there’s so much more that can be done with it. You can create aliases for commands that are used
This following code shows you how to extract an image (in this example, named foto_9738533.gif) from a database using the getBinaryStream method: try{ sql=”SELECT Foto FROM Table1 WHERE Nr_cont=9738533″; rs=st.executeQuery(sql);
When you use the data wizards in .NET 2.0, the connection string property is read only. However, the following code shows you how to change the connection string: ‘set a