Informix ODBC Drivers 3.31
Question: I am currently running Informix Dynamic Server 2000 version 9.20 TC1 on an NT server, Service Pack 6a. I have existing Visual Basic 5 applications that are using ADO
Question: I am currently running Informix Dynamic Server 2000 version 9.20 TC1 on an NT server, Service Pack 6a. I have existing Visual Basic 5 applications that are using ADO
Question: What is a segmentation fault? I get it when I try to output an integer. (It’s a very basic program: it reads in an integer and spits it back
Question: I’m trying to write a program that has a pointer to a private member function of a class. A public member function calls some of the private functions by
Question: Because my work and home computers were accidentally set to different time zones when I imported Calendar info from one system to the other, I ended up with multiple
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
Question: I have encountered a problem as follows: void foo(const int& var){ foo2(var);}void foo2(int& var)… So what I did was void foo(const int& var){ foo2((int&)var); ^^^^^^} and it compiled *_*