Read & Write Reviews About The Tools You Use.
Sign up for free to start sharing your opinion today!

Micah's Profile



Micah



Reviews
1
Helpful: 2


Code of the Week
0
Won: 0

User Reviews

    Visual Basic 6

    Company: Microsoft
    • Currently 4/5 Stars.
    • 1
    • 2
    • 3
    • 4
    • 5

    Version Reviewing: 6.0

    "This dated development system from Microsoft is nevertheless still used by many developers."

    by Micah9325 on Oct 10, 2012 12:57 PM

    Summary:
    Microsoft Visual Basic 6 was a popular RAD environment from the late 90s. At one time it was the most popular programming language in the world, with an estimated 3 million developers. While usage has greatly declined in recent years, a 2010 MSDN Flash survey of UK companies known to use it in the past showed that its user base is still rather large and stable. Though VB6's intrinsic capabilities are extremely limited in comparison to modern development environments, its extremely tight integration with a large 3rd party plugin ecosystem greatly increases its viability as a legacy environment.

    Report post

    Was this review helpful? (2) (0)


Write Reviews

Share your opinion about the tools you use.

Join the Evans Data Developer Panel!

As a DevNet panelist you will:

1. Have your voice heard on hot topics, innovative technologies and key initiatives.
2. Receive points for every validated survey submission.
3. Redeem award points for cash.

SOLVE THIS CODE

What does this code do?

public class Demo { 
    public void method1() { 
        synchronized (String.class) { 
            System.out.println("on String.class object");       
            synchronized (Integer.class) { 
                System.out.println("on Integer.class object"); 
            } 
        } 
    }

Programming Language: Java

Newsletter

Get weekly reviews sent directly to your inbox!