The Latest

DevX - Software Development Resource

Add Persistence to Your XML Data Islands

n last month’s article, you saw how to display XML data in IE5 through IE’s data island component. This month’s installment focuses on letting users modify that data and, ultimately,

DevX - Software Development Resource

Sending HTTP Requests from a Wireless J2ME Device

s more and more cellular phones and PDAs begin to merge onto the information superhighway, it becomes increasingly interesting to access Web sites from mobile devices. Since Java was initially

DevX - Software Development Resource

Judging Java Timeline – 1999

Go to:? pre-1995-1995? 1996? 1997? 1998? 2000-2001 = mouseover explanation = pop-up sidebar Jan. 13 Support for Java in digital TV announced at the Consumer Electronics Show. Jan. 25 Jini

DevX - Software Development Resource

Judging Java Timeline – 1996

Go to:? pre-1995-1995? 1997? 1998? 1999? 2000-2001 = mouseover explanation = pop-up sidebar Jan. 23 JDK 1.0 released. February JavaWorld launches. February Netscape Navigator 2.0 browser includes Java. JavaBeans announced.

DevX - Software Development Resource

Judging Java Timeline – 1997

Go to:? pre-1995-1995? 1996? 1998? 1999? 2000-2001 = mouseover explanation = pop-up sidebar Jan. 11 – JavaBeans JDK released. Feb. 18 Java JDK 1.1 ships. Feb. 28 Java 1.1 support

DevX - Software Development Resource

Judging Java Timeline – 2000-2001

Go to:? pre-1995-1995? 1996? 1997? 1998? 1999 = mouseover explanation = pop-up sidebar Feb. 8 – Sun submits next versions of J2EE and J2SE to JCP. Feb. 29 – Java

DevX - Software Development Resource

Judging Java Timeline Pre-1995

/********************************************************************************Copyright (C) 1999 Thomas BrattliThis script is made by and copyrighted to Thomas Brattli at www.bratta.comVisit for more great scripts. This may be used freely as long as this msg

DevX - Software Development Resource

Judging Java Timeline – 1998

Go to:? pre-1995-1995? 1996? 1997? 1999? 2000-2001 = mouseover explanation = pop-up sidebar Jan. 20 – JDK 1.1 cumulative downloads top 2 million, says Sun. March JFC ships with “Swing”.

DevX - Software Development Resource

More Useful Form-Building Routines

ast month’s column contained some ASP routines that made the task of building a form easy and elegant. This month I’ll extend the concept by showing you how to build

DevX - Software Development Resource

The VarHelper Add-in

This is a simple addin which scans your code files and enumerates all the variables it finds, telling you where they are used and if there is any problem (dead

DevX - Software Development Resource

CConsole – A class for creating console applications

‘ CCONSOLE Class” Creates a console window and writes to it’ Example:’ Dim cons As New CConsole’ cons.WriteString “Hello World”Private Declare Function AllocConsole Lib “kernel32” () As LongPrivate Declare Function

DevX - Software Development Resource

ShowIcon – Extract an icon from a file and show it

Private Declare Function ExtractIcon Lib “shell32.dll” Alias “ExtractIconA” _ (ByVal hInst As Long, ByVal lpszExeFileName As String, _ ByVal nIconIndex As Long) As LongPrivate Declare Function DrawIcon Lib “user32” (ByVal

DevX - Software Development Resource

Display the Windows Shortcut Wizard

You can programmatically start the Shortcut Wizard from your code, to give the end user the capability to create a new shortcut: Shell “rundll32.exe AppWiz.Cpl, NewLinkHere ” & App.Path, 1

DevX - Software Development Resource

The Difference between ‘Count’ and ‘Count(*)’

‘Count’: Counts the number of non-null values.‘Count(*)’: Counts the number of rows in the table, including null values and duplicates. Related Posts Handle WPF Application Exceptions all in one PlaceIs

DevX - Software Development Resource

Using ROWNUM To Retrieve

It is often necessary to get a list of values from multiple rows. Generally, this is done using the cursor, which tends to make the task more complicated.I tried to

DevX - Software Development Resource

Execute an Operating System Command From Within SQL Server

The Related Posts US tech giants buy out AI startupsRepeated Service Disruptions for Google Compute EngineMicrosoft Buys Italian IoT Vendor SolairChina, Germany discuss green transition outcomesContainer Wars: Docker vs. Rkt

DevX - Software Development Resource

Testing New Operations For Null

Beginning Java programmers sometimes test the results of a newoperation for a null. The code for this test looks like this: Integer i = new Integer (400); if (i ==

DevX - Software Development Resource

Threads and ThreadGroups

Every Java thread is a member of a Related Posts Display of Bit Field on UISUSE Releases OpenStack Cloud 5Nasa reviews Starliner’s return readiness progressBroadband Forum brings Fiber closer to

DevX - Software Development Resource

Remove vbs Attachments in Outlook

Home users of Outlook must create a new form and make it the default form for their Inbox. This code removes any attachments with vbs in the filename on incoming

DevX - Software Development Resource

Pass Information from a Servlet to a JSP

You can use this kind of bean to pass information from a servlet to a JSP page through a session variable. For Instance: DataBean myobj = new dataBean();myobj.setData( Related Posts

DevX - Software Development Resource

A Simple Way to Install a Special Font

This tip loads and removes any font. Loaded fonts can be listed by the common dialog control but not in the Windows Fonts folder. The advantage is it lets you

DevX - Software Development Resource

List That Requires Items of the Same Class

The benefits here are that the class can be set at runtime. You don’t need to write a new list for every Class that needs listing. public class HomogenousList extends

DevX - Software Development Resource

Automatically Select the Radio Button

Make the width of the radio option button a lot wider than the caption text it holds. Next, position a textbox between the end of the caption and the actual

DevX - Software Development Resource

Limitations of reinterpret_cast

A reader tried to cast a nonstatic member function of a certain class to void*, as in the following example: class A{public: void func();};void *pmf = reinterpret_cast < void *>