 |
C++Talk.NET C++ language newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Simon Green Guest
|
Posted: Wed Jun 25, 2003 3:58 pm Post subject: Newbie Question |
|
|
Hello people - sorry to be so thick but i`ve lost my Design Tool Bar in
ResourceView on MS Visual C++ Could anybody tell me how i could gt it back
or find it again?
Ta
Si
|
|
| Back to top |
|
 |
Tang Chun Chung Guest
|
Posted: Sat Jun 28, 2003 3:24 pm Post subject: Re: Newbie Question |
|
|
"Simon Green" <simon.green (AT) rix (DOT) co.uk> wrote in
news:bdcglu$vv8$1 (AT) newsreaderm1 (DOT) core.theplanet.net:
| Quote: | Hello people - sorry to be so thick but i`ve lost my Design Tool Bar
in ResourceView on MS Visual C++ Could anybody tell me how i could gt
it back or find it again?
Ta
Si
|
Hi,
Do you mean the one for selecting the control for the dialog. If I
guess the right thing, you can get it back by right click and then select
Control from the pop-up menu.
Benny
|
|
| Back to top |
|
 |
Calum Guest
|
Posted: Wed Jul 09, 2003 9:43 am Post subject: Re: Newbie Question |
|
|
The error was probably on the lines before this. Perhaps you missed a
semicolon after the preceding class/struct declaration?
Eric Dillard wrote:
| Quote: | struct BGRColor
{
BGRColor() {}
BGRColor(byte R, byte G, byte B) : m_R(R), m_G(G), m_B(B) {}
byte m_B;
byte m_G;
byte m_R;
};
I'm trying to compile my application and visual c++ keeps give me
error message
( error C2629: unexpected 'struct BGRColor ('). This piece of code is
used in a class header file and seems to work in the project i got it
from. The only different is that the that project uses MFC.
Thanks for the help
Eric
|
|
|
| Back to top |
|
 |
Roel Schroeven Guest
|
Posted: Wed Jul 09, 2003 10:02 am Post subject: Re: Newbie Question |
|
|
In article <e1c2c6d9.0306300538.6b4d591a (AT) posting (DOT) google.com>, Eric Dillard wrote:
| Quote: | struct BGRColor
{
BGRColor() {}
BGRColor(byte R, byte G, byte B) : m_R(R), m_G(G), m_B(B) {}
byte m_B;
byte m_G;
byte m_R;
};
I'm trying to compile my application and visual c++ keeps give me
error message
( error C2629: unexpected 'struct BGRColor ('). This piece of code is
used in a class header file and seems to work in the project i got it
from. The only different is that the that project uses MFC.
|
The error is probably caused by code that comes before the struct
declaration. Possibly the problem is not in the same file, but rather in
a previously included header file.
--
"Codito ergo sum"
Roel Schroeven
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|