i use VAX with .NET 2003 and Qt, since we write our windows product with Qt.
while i have seen the occasional oddity with VAX suggestions and auto completion in my code, over all it works just fine.
this is from a small Qt class:
class ee_win : public QWidget
{
Q_OBJECT
public:
ee_win();
~ee_win();
protected slots:
void slot_HexChanged( const QString &stringHex );
void slot_DecimalChanged( const QString &stringDecimal );
};
VAX quite happily offers me the correct suggestions in the matching cpp file when i type "slot_"
i am currently using Qt 3.3.1 on this machine. can you give some specific examples of where you get a problem?