acc

C++ program problem

I am new to C++ programming. So I was trying my luck executing some small programs. I am working on HP-UX which has a compiler whose executable is named aCC. I am trying to execute a small program #include <iostream.h> using namespace std; class myclass { public: int i, j, k; }; int main() { myclass a, b; a.i = 100; ...

MS Access database shows ??? when I enter Cyrillic characters

Hi everyone, I have an Access database, and when I write Cyrillic characters in any table, the characters are saved like ??? symbols. How is this possible? This occurs if I have system-locale set on western code page, and if I switch to Russian locale, it works correctly. I don't understand why it doesn't works with western locals? Thi...

How to use parameterized queries in vb.net?

How to use parameterized queries in vb.net? Because I always wanted to make a program that could read an ms access database and display results based on your query. ...

activate RTTI in c++

Hi, Can anybody tell me how to activate RTTI in c++ when working on unix. I heard that it can be disabled and enabled. on my unix environment,how could i check whether RTTI is enabled or disabled? I am using the aCC compiler on HPUX. ...