Author |
Topic |
wondering
Senior Member
China
31 Posts |
Posted - Jul 28 2009 : 03:50:48 AM
|
I have sent my va log to you. |
-- wondering |
|
|
feline
Whole Tomato Software
United Kingdom
19014 Posts |
Posted - Jul 28 2009 : 7:07:49 PM
|
I have the files, many thanks for these. I have asked our developers to see if they have any ideas:
case=30151 |
zen is the art of being at one with the two'ness |
|
|
feline
Whole Tomato Software
United Kingdom
19014 Posts |
Posted - Aug 05 2009 : 2:24:44 PM
|
Using the test solution first, can you try adding:
using ATL::CDialogImpl;
to the cpp file, or adding ATL:: before CDialogImpl to see if this helps?
If this helps in the test solution does this help in your main solution? |
zen is the art of being at one with the two'ness |
|
|
wondering
Senior Member
China
31 Posts |
Posted - Aug 13 2009 : 02:37:59 AM
|
quote: Originally posted by wondering
STL is supported perfectly by VA. I'm sorry for my ambiguous statement. What I say means some template class I code meets this problem. But I forget where are them just now.
Here are some new finds when I use WTL:
CTabCtrl tabGroup = GetDlgItem(IDC_TAB_GROUP);
tabGroup.AddItem("Group"); If I use alt+g on GetDlgItem, it goes to winuser.h(Windows API), but if I press F12 on GetDlgItem it can go to atlwin.h(correct). When I type the dot after tabGroup, it can't list AddItem function.
WTL::CTabCtrl tabGroup = CWindow::GetDlgItem(IDC_TAB_GROUP);
tabGroup.AddItem("Group"); If I write code like this, add WTL or CWindow before class and function name, alt+g works well and all member listed.
In fact, I has did this test and posted this reply on Jul 18 2009 : 12:43:18 AM. Today, I tested again according to your suggestion. Added using ATL::CDialogImpl or ATL:: it can show the listbox. It works well in the test project and my project. |
-- wondering |
|
|
feline
Whole Tomato Software
United Kingdom
19014 Posts |
Posted - Aug 13 2009 : 2:46:17 PM
|
Sorry about that, my mistake. This is quite a long thread, and I sometimes forget what I have already asked
It is good to know this helps, thank you. The problem is happening since there are two different classes called "CDialogImpls" and VA is getting confused:
case=30555 |
zen is the art of being at one with the two'ness |
|
|
wondering
Senior Member
China
31 Posts |
Posted - Aug 17 2009 : 10:54:16 PM
|
OK, expect to your solution. |
-- wondering |
|
|
Topic |
|