News:

When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.

Main Menu

vector+struct CC problem

Started by Borr, October 25, 2010, 01:47:51 PM

Previous topic - Next topic

Borr

1. CC list is off-screen. see additional
2. CC does not work with vector+struct

//header
struct rows{
wxString name;
wxString SN;
};
std::vector<rows> table;
//cpp
Grid->SetCellValue(i, colName, table[i]./*code completion does not show the list of variables - name and SN*/);


C::B svn 6752 from binary  OS: WinXP SP3

ollydbg

for the "off screen issue", I think we should adjust the tip window ( move it or restrict its size ).

the other issue, I will check it later.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.