The Latest

DevX - Software Development Resource

Coding Options for Building InfoPath Forms

hen you want to build a simple form—something with a set of fields and perhaps a table of repeating fields—it’s easy to pick up InfoPath and bang out a form

DevX - Software Development Resource

Apply Visual Studio Code Analysis to Beef Up Security

ource code reviews and inspections have long been considered economical methods for rooting out functional and design flaws in code even before applications make their way to testing. As security

DevX - Software Development Resource

Book Excerpt: ASP.NET AJAX in Action

ASP.NET AJAX (formerly called Atlas) is a new free framework from Microsoft designed to let developers add Asynchronous JavaScript and XML (AJAX) features to ASP.NET applications easily, simplifying the process

DevX - Software Development Resource

Calling an SAP Function Module from Java

To call an SAP function module from a Java application, you first need SAP JCo (Java Connector); you can download it from SAP’s site, though you need an account to

DevX - Software Development Resource

Insert an XML Schema into an XQuery Query

Use the following code to insert an XML Schema into an XQuery query. The following code assumes that the XML Schema is: file:///C://Data_Local//xml//docs//AirWings_xslt_xmlschema.xsd and the XML file is: file:///C://Data_Local//xml//docs//AirWings_xpath_xslt.xml Import

DevX - Software Development Resource

Show() vs. ShowDialog() in .NET

The form class’ ShowDialog method functions differently than its Show method. Here’s how: ShowDialog‘s returned value can be used to determine how the user closed the form (using the DialogResult

DevX - Software Development Resource

Simplifying RDFa Notation

Resource Description Framework (RDF) is not the world’s most beloved standard. That it is used most often in fairly obscure applications for handling such fundamental concepts as meaning, topicality, and

DevX - Software Development Resource

Using High-resolution Timers

tandard C++ offers a rather limited number of functions for accurate time measurement: clock() gives you a granularity of up to a thousandth of a second at best, and difftime()

DevX - Software Development Resource

A Speed Guide to Virtual Driving in Second Life

n Second Life (SL) users can fly nearly anywhere in superhero style. They can also teleport from one place to another in seconds—without any assistance from any sort of device.

DevX - Software Development Resource

Override Base Methods in a Form

If one class is inheriting from another class, a quick, easy way to find the available overrides is through .NET’s IntelliSense. Simply type “override” in a class and .NET will

DevX - Software Development Resource

JSP and the Introspection Process

The introspection process allows the JSP engine to populate a JavaBean with the values provided by a client through an HTML form. //when the names of the bean properties match

DevX - Software Development Resource

Building a Web Service Powered JSR 168 Financial Portlet

In increasing number of web applications built today use portal technology. A portal is a web application that typically provides services such as personalization, single sign-on, and content aggregation from

DevX - Software Development Resource

Execute a SQL Statement with Variable Parameters

When you need to execute the same SQL statement (in general an UPDATE) multiple times with different parameter values you can use the PrepareStatement method like this: Connection conn=null;PreparedStatement pst=null;String[]

DevX - Software Development Resource

It All Adds Up

while ago I responded to a newsgroup post in which the poster had a table of inventory changes containing start and end dates, as well as the amount that was

DevX - Software Development Resource

Book Excerpt: Microsoft SharePoint 2007 Unleashed

DescriptionCompanies have been talking about knowledge management and leveraging their IT investments to enhance team collaboration for years, but have had difficulty implementing effective solutions that tie together the wide

DevX - Software Development Resource

Storing and Using RDF in Mulgara

f you’ve been following semantic web technologies, then by now you’re no doubt aware of semantic web data languages like the Resource Description Framework (RDF) and the Web Ontology Language

DevX - Software Development Resource

JavaFX Enters the RIA Race

ich Internet Application or RIAs are all the rage in application development circles now. How do you make web applications behave like more traditional desktop applications? You remember desktop applications

DevX - Software Development Resource

A Straightforward Approach to Silverlight Component Design

icrosoft recently took WPF/E (which stood for Windows Presentation Foundation Everywhere) out of the labs and released it as Silverlight, a new technology that lets you run XAML-based content—including animations

DevX - Software Development Resource

Fresh AIR for RIAs

ich Internet Applications (RIAs) represent not only an established, but a rapidly expanding, segment of software development. Although descriptions of RIA abound, most people agree that they blur the line

DevX - Software Development Resource

Managed Code Shines in Silverlight 1.1

n addition to the XAML and JavaScript combination supported in Silverlight 1.0, this Silverlight 1.1 Alpha client also supports managed code written in a language such as C# or VB.NET.