Whole Tomato Software Forums
Whole Tomato Software Forums
Main Site | Profile | Register | Active Topics | Members | Search | FAQ
User name:
Password:
Save Password
Forgot your password?

 All Forums
 Visual Assist
 Technical Support
 stl problem still alive
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

cyberhouse
New Member

5 Posts

Posted - Jul 07 2004 :  05:25:21 AM  Show Profile
i think the stl problem still alive:
it couldn't show the iterator's members correctly. for example:

class mytest{
public:
int m_id;
int m_cnt;
};


void test()
{
int i;
mytest ca;
list<mytest> m_list;
list<mytest>::iterator iter;

for(i=0; i<10; i++){
ca.m_cnt=i;
ca.m_id=i;
m_list.push_back(ca);
}

for(iter=m_list.begin(); iter!=m_list.end(); iter++){
(*iter). //not show the members such as m_cnt, m_id
}
}

but the vs.net show it correctly. this is a pain for a long time since va 6.0.



support
Whole Tomato Software

5566 Posts

Posted - Jul 07 2004 :  1:41:55 PM  Show Profile
If VS.NET can offer Intellisense, you should its list if "Prefer default Intellisense" is enabled on the "Text Editor|Completion" node of our options dialog.

We tried your example after enabling the option but got no list. We tried again after disabling VA X and still get the message, "Intellisense: No additional information available."

Perhaps default Intellisense works better in your project.

Whole Tomato Software, Inc.
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
© 2023 Whole Tomato Software, LLC Go To Top Of Page
Snitz Forums 2000