Tip Bank

DevX - Software Development Resource

FormatSize – Format a size expressed in bytes

‘ Returns a formatted string that shows the size in Bytes, KBytes or MBytes’ according to the size’ Usage:’ Dim ProperSizeString As String = FormatSize(“132100842”)’ -> returns “125.98 MB”Function FormatSize(ByVal

DevX - Software Development Resource

Use Any Image as a Background

This code allows any image to be used as a background, and scales that image to fit the browser. Just add it to the end of your HTML page:

DevX - Software Development Resource

Delete Duplicate Rows from a Table Using the Cursor

This is an advanced solution to delete duplicate Rows from a table using the cursor: create table DupTable ( Field1 varchar(20))goinsert DupTable (Field1) select ‘A11111111’ UNION ALL select ‘B22222222’ UNION