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
 Not getting Popup list properly
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

sarathc
Starting Member

1 Posts

Posted - Jul 29 2004 :  07:33:26 AM  Show Profile
I just coded the following in vc++ 6.0 but the the member functions and variables are not displaying in the popup list.
the code is note that there is no other huge process.... which using more memory... and processor time.....

int nSize = m_arrRowData.GetSize();
int nLen = 0;
CString strTemp
for(int i=0;i<nSize;i++)
{
strTemp = m_arrRowData.ElementAt(i);
nLen = strTemp.GetLength();.
for (int j=0;j<nLen;j++)
{
strTemp. //here I found the problem

}
}

feline
Whole Tomato Software

United Kingdom
18939 Posts

Posted - Jul 29 2004 :  10:53:37 AM  Show Profile
is this a direct copy / paste from VS6?
i have just tried this block, and it does fail. however, the code is incorrect:

int nSize = m_arrRowData.GetSize();
int nLen = 0;
CString strTemp;  // missing semi colon
for(int i=0;i<nSize;i++)
{
    strTemp = m_arrRowData.ElementAt(i);
    nLen = strTemp.GetLength();. // stray dot here
    for (int j=0;j<nLen;j++)
    {
        strTemp. //here I found the problem
    }
}


when i add in the missing semi colon ctrl_space works for me.

using VS .NET 2003 and VAX 1246

on a side note, if you use the # button when posting, you can wrap the code in code tags, which helps to preserve the formatting.

zen is the art of being at one with the two'ness
Go to Top of Page

support
Whole Tomato Software

5566 Posts

Posted - Jul 29 2004 :  1:32:58 PM  Show Profile
Make sure "Prefer default Intellisense" is disabled on the Completion node of our options dialog.

Make sure you have build 1246.
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