I tried the tweak listed below, and ran into a curious result. The machine in question is running standalone, although it does have a NIC and the Microsoft Client installed. I modified a specific u...
http://www.experts-exchange.com/OS/Microsoft_Operating_Systems/Windows/98/Q_20880659.html
Zones:
Windows 98Date Answered: 03/07/2004 Rating: 8.2 Views: 0
The following query basically returns multiple records of the data I am looking for, sorted so that the last transaction of each policy is on top:
Select
PolicyPrefix,
PolicyNumber,
master...
http://www.experts-exchange.com/Microsoft/Development/MS-SQL-Server/Q_21663182.html
Zones:
MS SQL ServerDate Answered: 12/15/2005 Rating: 7.4 Views: 0
Here's sample code:
#include <iostream>
using namespace std;
struct C {
int x;
C(int x) : x(x) {}
~C() { cout << x; }
};
void main()
{
C c1(1), c2(2), c3(3);
}
I get the destru...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10106094.html
Zones:
C++Date Answered: 12/09/1998 Rating: 6.6 Views: 0
I want to be able to check if a Date variable is in a certain date range, ie. between two dates.
The date I want to check is stored in a database - no problem.
The problem is constructing t...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_10801801.html
Zones:
Visual BasicDate Answered: 07/25/2000 Rating: 6.8 Views: 0
I have a html feild called "date". It is generated with vbscript and is in the format of mm/dd/yy (eg. 11/27/00).
On the next page I have 6 text boxes.
3 of them for the begining of a suspension ...
http://www.experts-exchange.com/Programming/Languages/Scripting/JavaScript/Q_11984280.html
Zones:
JavaScriptDate Answered: 06/16/2002 Rating: 7.4 Views: 0
I want to do the following:
I have a class "Matrix", that will be initialized with a parameter "dimension" that is obtained from user input.
Then in the constructor, a two-dimensional array o...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20013228.html
Zones:
C++Date Answered: 12/28/2000 Rating: 8.4 Views: 0
Does Oracle 8i support the follwing like SQL server does :
CASE input_expression
WHEN when_expression THEN result_expression
[ ...n ]
[
ELSE else_result_expression ...
http://www.experts-exchange.com/Database/Oracle/Q_20568324.html
Zones:
OracleDate Answered: 05/12/2004 Rating: 8.6 Views: 0
[code]
#include <string>
#include <iostream>
using namespace std;
class Tree
{
private:
static int objectnum;
public:
Tree()
{
//Tree::obj...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20735280.html
Zones:
C++Date Answered: 01/31/2004 Rating: 7.2 Views: 0
URGENT!!!
I need a C++ program that Initializes ,read/write to RS232 within a Red hat Linux environment, using the "class"(Inheritance) construct.
Thanks
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20864345.html
Zones:
C++Date Answered: 01/27/2004 Rating: 9.4 Views: 0
I'm trying to create a url to a specific data item, I get this error:
Description: An error occurred during the compilation of a resource required to service this request. Please review the foll...
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_21147391.html