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.
‘ Join variant that works with arrays of any type’ and that encloses string values between quotes” ARR is the array whose element must be joined’ SEPARATOR is the separator
‘ A replace for the Filter function under VB4 and VB5” Note that the source array is modified. For this reason’ this is declared as a Sub rather than a
f you are like me, you have already broken some of your New Year’s resolutions. As ASP programmers, however, it is time we made some resolutions to code better, more
Question: I have read that to upgrade from Exchange 5.5 Standard to Enterprise Edition, I need to install Enterprise on top of my existing installation. Is that correct?What are the
Question: Would you please tell me the difference between regular class objects and temporary class objects? Answer: The compiler creates temporary objects in several occasions. Usually, the temporary stores the
Question: Does C++ have a goto statement? If yes, how does it work (what is the syntax)? If no, is there an equivilant and what is the syntax? Answer: Yes,
Question: I am working on a project to increase mail efficiency for our Exchange Server-based mail system. I would like to find out whether a specific feature is being utilized
Need the ability to view a PDF document within a Javaapplet? Daniel F. Savarese, answered this question in the March 2000 issue of Java Pro. His solution involves using Adobe’s
Values for datetime data types earlier than January 1, 1753 are not permitted in SQL Server. SQL Server rejects all values that do not fall within the range from 1753
In many programming languages such as C or Pascal,most users have come across global variables.Like this C example: int GlobVar = 0; // Global variable void f(int x) // Function
Java allows you to cast variables, or change them from one variable type to another. However, it’s important to make sure that the final variable type can store all the
Let’s say we have an overloaded function called fun(): void fun(string) { system.out.println(“String”); }void fun(int) { system.out.println(“Int”); }void fun(double) { system.out.println(“Double”); }void fun(float) { system.out.println(“float”); } If we call fun(37)
Complex initializations need only be done once and the result stored for later use. For example if you need to create a list of integer values and then load them,
Use J++ 6.0’s Localization feature to provide several language versions of your application. This new feature allows you to create separate resource files for every form in your application, and
You can consider Java to be a strong language with respect to internationalization and number formatting. Sometimes you might wish to format numbers in a specific locale or given a
The J++ 6.0 includes the ability to do conditional compilation, a mechanism for debugging code. J++’s conditional compilation allows you to include or exclude entire blocks of code at run
If you have a JTable where the values displayed in a particular columnare Integer objects, it will display the Integer values with commas(e.g. 98765432 is displayed as 98,765,432) if these
Computer science sophomores learn that recursion can neatly solve complex problems, e.g., Hanoi rings, wildcard handling, and parsing. In practice, however, recursion can be problematic for several reasons. First of
An assignment expression can appear inside an if condition: if (x = getval() ) { // do someting } The if condition is evaluated in two steps: first, the unconditional
A derived class’s member-initialization list can initialize any non-ambiguous member of its class, including base subobjects. Suppose you have a class C that is derived from B, which is in
By default, a typedef name declared in the global scope has internal linkage. This means that separately compiled source files can’t refer to a typedef declared in another source file,
An equality expression takes two operands, the second of which is often a constant or an rvalue: if (x==4) // 4 is an rvalue // .. do something if (y!=MAX_COUNT)
Question: If I try to open an Informix table in Microsoft Visual InterDev, which uses SCO Vision Ultralite ODBC driver on an NT4/SP4 IIS4 Web server, Visual InterDev hangs. Using
Question: I am trying to insert a string into a char(500) but get this error message: A quoted string exceeds 256 bytes. I’m using this for a Web site built
Question: I am receiving an error code of 0400 when a program is executing. I have been told that this is an SQL error code; however, none of the books
Question: I have been running Informix 7.22.TC1 successfully on Windows NT servers with the WebLogic 1.1 JDBC driver. On Web server restart, my application suddenly shows an error in connection
Ever since you were a little kid youve known that you should be careful with global variables, right? In this article I will try to motivate you once again why
You can use this JavaScript to get confirmation from the user before navigating to another page. Redirect
Question: I am trying to update an Access database with an ASP page. My ASP page contains a guest book with first name, last name, and other relevant text boxes.
Question: When declaring an unbounded array in my function’s parameter list, int a[], can I use the sizeof() operator to determine the array’s length at runtime? Answer: No, you can’t











