
Since 1998, DevX has helped people start businesses, build websites, and provide enterprise technology to people globally. Interviewing the likes of Microsoft’s co-founder, Steve Ballmer, the publication brings comprehensive, reliable, and accessible insights to the Internet.
‘ Convert from cubic inches to cubic decimeters, and vice versaFunction CubicInchesToCubicCentimeters(ByVal cuInches As Double) As Double Return cuInches * 16.387End FunctionFunction CubicCentimetersToCubicInches(ByVal cuCent As Double) As Double Return cuCent
‘ Convert from square inches to square centimeters, and vice versaFunction SquareInchesToSquareCentimeters(ByVal squareInches As Double) As Double Return squareInches * 6.4516End FunctionFunction SquareCentimetersToSquareInches(ByVal squareCentimeters As Double) As _ Double Return
‘ Convert from cubic yards to cubic meters, and vice versaFunction CubicYardsToCubicMeters(ByVal cuYards As Double) As Double Return cuYards * 0.7646End FunctionFunction CubicMetersToCubicYards(ByVal cuMeters As Double) As Double Return cuMeters
‘ Convert from US gallons to liters, and vice versaFunction USGallonsToLiters(ByVal gallons As Double) As Double Return gallons * 3.785End FunctionFunction LitersToUSGallons(ByVal liters As Double) As Double Return liters /
‘ Convert from square yards to square meters, and vice versaFunction SquareYardsToSquareMeters(ByVal squareYards As Double) As Double Return squareYards * 0.8361End FunctionFunction SquareMetersToSquareYards(ByVal squareMeters As Double) As Double Return squareMeters
‘ Convert from inches to centimeters, and vice versaFunction InchesToCentimeters(ByVal inches As Double) As Double Return inches * 2.54End FunctionFunction CentimetersToInches(ByVal centimeters As Double) As Double Return centimeters / 2.54End
‘ Convert from yards to meters, and vice versaFunction YardsToMeters(ByVal yards As Double) As Double Return yards * 0.9144End FunctionFunction MetersToYards(ByVal meters As Double) As Double Return meters / 0.9144End
‘ Convert from feet to meters, and vice versaFunction FeetToMeters(ByVal feet As Double) As Double Return feet * 0.3048End FunctionFunction MetersToFeet(ByVal meters As Double) As Double Return meters / 0.3048End
‘ Convert from grains to grams, and vice versaFunction GrainsToGrams(ByVal grains As Double) As Double Return grains * 0.0648End FunctionFunction GramsToGrains(ByVal grams As Double) As Double Return grams / 0.0648End
‘ Convert from pounds to kilograms, and vice versaFunction PoundsToKilograms(ByVal pounds As Double) As Double Return pounds * 0.4536End FunctionFunction KilogramsToPounds(ByVal kilograms As Double) As Double Return kilograms / 0.4536End
‘ Convert from ounces to grams, and vice versaFunction OuncesToGrams(ByVal ounces As Double) As Double Return ounces * 28.349End FunctionFunction GramsToOunces(ByVal grams As Double) As Double Return grams / 28.349End
‘ Convert from pints to cubic decimeters, and vice versaFunction PintsToCubicDecimeters(ByVal pints As Double) As Double Return pints * 0.568End FunctionFunction CubicDecimetersToPints(ByVal cuDec As Double) As Double Return cuDec /
‘ Convert from imperial gallons to liters, and vice versaFunction UKGallonsToLiters(ByVal gallons As Double) As Double Return gallons * 4.546End FunctionFunction LitersToUKGallons(ByVal liters As Double) As Double Return liters /
‘ Convert from square feet to square meters, and vice versaFunction SquareFeetToSquareMeters(ByVal squareFeet As Double) As Double Return squareFeet * 0.0929End FunctionFunction SquareMetersToSquareFeet(ByVal squareMeters As Double) As Double Return squareMeters
‘ Convert from cubic feet to cubic meters, and vice versaFunction CubicFeetToCubicMeters(ByVal cuFeet As Double) As Double Return cuFeet * 0.0283End FunctionFunction CubicMetersToCubicFeet(ByVal cuMeters As Double) As Double Return cuMeters
‘ Convert from miles to kilometers, and vice versaFunction MilesToKilometers(ByVal miles As Double) As Double Return miles * 1.6093End FunctionFunction KilometersToMiles(ByVal kilometers As Double) As Double Return kilometers / 1.6093End
istribution and decentralization?with XML as their foundation?are at the core of Digimax Multimedia’s collaborative decentralized services (CDS) technology. CDS is a development framework that is both a consumer and a
uild a Java Web Application Using HttpUnit and Test-driven Methodology, Part I showed how HttpUnit complements the JUnit functionality to provide testing capability for Web applications, which ordinarily are difficult
martPhones are the new devices that are said to be the death knell of the PDA and its clones. You can leverage your existing .NET skills and be among the
ometimes Java classes seem like close relatives who unfortunately don’t have the same parent. Their structures and looks are similar, but not so similar that you can derive one from
bad response time on your Web site can drive away visitors and prospective customers. Unfortunately, you may not realize that your Web site is having problems until people start complaining.
In Part I we mapped out the plan: We will build, test, and try to sell a small commercial BREW-based application. In Part II, we created our .MIF file and
have been a Microsoft SQL Server developer for a number of years. One the things I like about SQL Server is that it is easy to install and once installed
sing Oracle as your database in the .NET environment is relatively simple, except when returning JDBC ResultSets from Java stored procedures. The Microsoft and Oracle .NET data provider drivers allow
SP.NET has considerably raised the bar for Web development with very rich developer functionality built into a flexible and highly extensible object model. If you have a background of hand-coding
Vanja Fuckar has developed a library that adds support for the mouse wheel in the VB6 IDE, i.e. in the code window, Immediate window etc. The library is written in
‘ Extract the first and last name from a string will the full name.’ The routine handles the “LastName, FirstName” and “FirstName LastName” ‘ formats, and returns the first and
‘ Read all lines from a text file into a String array” Example:’ Dim lines As String() = FileToArray(“D: est.txt”)’ Dim line As String’ For Each line In lines’ Debug.WriteLine(line)’
‘ Return the current contents of the screen or the active window’ It works by simulating the typing of the Print-Screen key (and Alt key if ‘ activeWindowOnly is True),
‘ Generate a random password with the specified length. The password will only ‘ contain digits and letters (either lowercase or uppercase)” Example: generating a password of 8 chars’ Dim











