Click here to Skip to main content
15,888,113 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Generalproblem with pasting bitmap to the clipboard under win98 Pin
Mariusz Popiolek1-Oct-02 10:49
sussMariusz Popiolek1-Oct-02 10:49 
GeneralRe: problem with pasting bitmap to the clipboard under win98 Pin
Mariusz Popiolek1-Oct-02 11:27
sussMariusz Popiolek1-Oct-02 11:27 
GeneralRe: problem with pasting bitmap to the clipboard under win98 Pin
Tomasz Sowinski1-Oct-02 11:42
Tomasz Sowinski1-Oct-02 11:42 
GeneralRe: problem with pasting bitmap to the clipboard under win98 Pin
Mariusz Popiolek1-Oct-02 12:13
sussMariusz Popiolek1-Oct-02 12:13 
GeneralRe: problem with pasting bitmap to the clipboard under win98 Pin
Tomasz Sowinski1-Oct-02 12:18
Tomasz Sowinski1-Oct-02 12:18 
GeneralRe: problem with pasting bitmap to the clipboard under win98 Pin
Mariusz Popiolek2-Oct-02 0:22
sussMariusz Popiolek2-Oct-02 0:22 
QuestionHow do I do this? Pin
Anonymous1-Oct-02 9:31
Anonymous1-Oct-02 9:31 
AnswerRe: How do I do this? Pin
Nick Parker1-Oct-02 9:40
protectorNick Parker1-Oct-02 9:40 
Someone else may give a better example but this is possible through inheritance.
class A
{
protected:
   int Age;
   int GetAge()
   {
      return Age;
   }
};

class B:A
{
 int f;
 void Foo(); 

};

Access to the variable Age is available as B inherits A
//===========
B b;
b::A.Age;



Nick Parker

The goal of Computer Science is to build something that will last at least until we've finished building it. - Unknown



AnswerRe: How do I do this? Pin
Scott H. Settlemier1-Oct-02 9:51
Scott H. Settlemier1-Oct-02 9:51 
AnswerRe: How do I do this? Pin
Michael Dunn1-Oct-02 9:47
sitebuilderMichael Dunn1-Oct-02 9:47 
AnswerRe: How do I do this? Pin
PJ Arends1-Oct-02 9:47
professionalPJ Arends1-Oct-02 9:47 
AnswerRe: How do I do this? Pin
Mariusz Popiolek1-Oct-02 9:52
sussMariusz Popiolek1-Oct-02 9:52 
AnswerRe: How do I do this? Pin
Scott H. Settlemier1-Oct-02 10:00
Scott H. Settlemier1-Oct-02 10:00 
GeneralRe: How do I do this? Pin
PJ Arends1-Oct-02 10:15
professionalPJ Arends1-Oct-02 10:15 
GeneralRe: How do I do this? Pin
Mariusz Popiolek1-Oct-02 10:15
sussMariusz Popiolek1-Oct-02 10:15 
AnswerRe: How do I do this? Pin
Roger Stewart1-Oct-02 10:00
professionalRoger Stewart1-Oct-02 10:00 
AnswerRe: How do I do this? Pin
Anonymous1-Oct-02 11:05
Anonymous1-Oct-02 11:05 
Generalclistctrl::getitmeText Pin
pnpfriend1-Oct-02 9:07
pnpfriend1-Oct-02 9:07 
GeneralRe: clistctrl::getitmeText Pin
Michael Dunn1-Oct-02 9:50
sitebuilderMichael Dunn1-Oct-02 9:50 
GeneralRe: clistctrl::getitmeText Pin
pnpfriend2-Oct-02 5:43
pnpfriend2-Oct-02 5:43 
Questionhow to give the catch block a filename? Pin
ns1-Oct-02 9:06
ns1-Oct-02 9:06 
AnswerRe: how to give the catch block a filename? Pin
jmkhael1-Oct-02 9:08
jmkhael1-Oct-02 9:08 
GeneralRe: how to give the catch block a filename? Pin
ns1-Oct-02 9:13
ns1-Oct-02 9:13 
GeneralRe: how to give the catch block a filename? Pin
jmkhael1-Oct-02 9:14
jmkhael1-Oct-02 9:14 
AnswerRe: how to give the catch block a filename? Pin
Tomasz Sowinski1-Oct-02 11:29
Tomasz Sowinski1-Oct-02 11:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.