We are an award-winning tech entrepreneurship website where trusted experts can provide value globally.

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.

devxlogo

Trusted for 26 years

Over 30K Articles

1M+ Readers

Expert-reviewed

10K+ Tech Terms

As seen in:

microsoft logo
business_insider_logo
wired_logo
berkley
arstechnica_logo
hackernoon

The Latest

DevX - Software Development Resource

Have It Your Way

love to say that I hate to whine, when referring to things about Windows Vista that drive me nuts, but clearly, I don’t hate to whine. I apparently love to

DevX - Software Development Resource

Legitimize Your Mobile App: Get It Signed

f you’re just setting out to develop your first mobile application, you may still be grappling with the fundamentals of installing SDKs, obtaining hardware, and scaling your application to the

DevX - Software Development Resource

Getting Started with the Twitter API

When I first heard about twitter.com, a service that lets people publish messages of up to 140 characters at a time and subscribe to other twitterers’ message feeds, I wasn’t

DevX - Software Development Resource

Find and Generate Missing Values in an Access Table

equential values can represent a lot in a database. Sometimes they uniquely identify records (as primary key values). Often they’re part of the natural data, such as a purchase order

DevX - Software Development Resource

Changing the Style of a String in JavaScript

JavaScript’s String object provides functions that display style of the text: big() blink() bold() fixed() fontsize(&ltsize&gt): This function takes a parameter to specify the font-size in pixels. fontcolor(““): This function

DevX - Software Development Resource

Encode and Decode URLs Using UTF-8

This tip shows you how to encode and decode your URLs using the UTF-8 character encoding: import java.net.*;public class URL_Encoder_Decoder{ public static void main(String[] args){ String url = “@sir de

DevX - Software Development Resource

Flexible and Powerful Data Binding with WPF

hough ata binding is pervasive in Windows Presentation Foundation (WPF), it’s also different enough that you’ll need to rethink the way you use it in your applications. .NET 3.5 SP1,

DevX - Software Development Resource

Laying the Foundation of a Semantic Web Application

The article Why Migrate to the Semantic Webdescribed the benefits of the semantic web for applications that deal with real world objects. It outlined how an existing web application (CDMS)

DevX - Software Development Resource

Smoothly Blending Java and SQL with pureQuery

Modern software development is, famously, a collaborative process. Unfortunately the tools we use to develop software don’t always reflect that home truth. Consider an application written in Java that uses

DevX - Software Development Resource

SQL Techniques for Performing Operations on Matrices

atrices are very useful mathematical objects that science and technology professionals use to describe real-life scenarios and build abstract models for those scenarios. You will find matrices used in economics

DevX - Software Development Resource

Build Composite WPF Applications

hen you build complex UI applications, it is all too easy to end up with a messy, tightly coupled, interwoven mess that is difficult to develop and maintain; and impossible

DevX - Software Development Resource

Inside the iPhone: Getting Started

y now, you should already know that Apple has lifted the non-disclosure agreement (NDA) that bound developers to confidentiality regarding their work with the iPhone SDK. Developers are now free

DevX - Software Development Resource

Measuring Enterprise Architecture’s Value Proposition

As enterprise architecture (EA) matures into an established discipline in most moderate to large scale IT organizations, EA is increasingly being challenged to demonstrate objective evidence of its contribution to

DevX - Software Development Resource

Calling a SOCKS Proxy Server from Java

This tip shows you how to call a SOCKS proxy server from Java code using the Socket class: SocketAddress addr=new InetSocketAddress(?socks_server_proxy?, socks_port);Proxy proxy=new Proxy(Proxy.Type.SOCKS,addr);Socket socket=new Socket(proxy);InetSocketAddress final_addr=new InetSocketAddress(?final_server?, final_port);socket.connect(final_addr);?

DevX - Software Development Resource

PHP and SMIL: A Happy Combination

n this article you will see how to use the Synchronized Multimedia Integration language (SMIL) and PHP to add great slideshow presentations to your web sites. If you’re not already

DevX - Software Development Resource

Managing Your WPF Splash Screen’s Lifecycle

splash screen is created upon application startup and is ended after the the main Window class’s initialization code executes. Professional-looking applications geenrally use splash screens to let their users know

DevX - Software Development Resource

Upload Large Files

By default, ASP.NET doesn’t allow you to upload files bigger than 4MB to the server. You can fix this by overriding the default value of 4MB in the web.config file.

DevX - Software Development Resource

Controlling Checkboxes in MFC

Here’s how to check, uncheck, enable, and disable a checkbox in MFC: CButton* pBtn = (CButton*) GetDlgItem(IDC_SETUP_AM); pBtn-&gtSetCheck(0);// uncheck it CButton* pBtn = (CButton*) GetDlgItem(IDC_SETUP_AM); pBtn->SetCheck(1);// check it CButton* pBtn

DevX - Software Development Resource

Authenticate to a Proxy Server

To provide a user’s password to a proxy server, use the following code: URLConnection URLcon=null;URLcon = url.openConnection();byte[] x=”name:password”.getBytes();//coding in Base64String s = new sun.misc.BASE64Encoder().encode(x); URLcon.setRequestProperty( “Proxy-Authorization”,s);