Viewing a Datawindow Locally Using a Web Browser
Question: We have a requirement to send a report (a datawindow) to the users/vendors through e-mail. Can I send the Web page with the .psr file so that the user
Question: We have a requirement to send a report (a datawindow) to the users/vendors through e-mail. Can I send the Web page with the .psr file so that the user
Question: I am running Microsoft Exchange 5.5 Server with Microsoft Outlook 2000 as client software. For my remote users, they are using the offline folders. Every time a user dials
Question: If I use my mouse to highlight some text (it may not be in the nor in the ) displayed in the browser, and then click on any button
Question: While trying to port some C code to a C++ implementation, I ran into this problem. The module this came out of was designed to “automate data handling used
You can generate random numbers in JavaScript using the Math.random() method. This function returns a fractional random number between 0 and 1. Unlike other languages, JavaScript will initialize a random
Consider the following program: class Exception {}; int main() { try { throw Exception(); // where is the exception stored? } catch( Exception & ex) // catch by reference {}
The terms heap and free-store are used interchangeably when referring to dynamically allocated objects. Are there any differences between the two? Technically, free-store is an abstract term referring to unused
Suppose you have an application that reads input from the keyboard. How can you detect whether alphabetic data is being entered into an integer field from a cin statement? The
Suppose you have a class called A, which doesn’t have a default constructor, and you want to embed an instance of this class as a member of another class, B: