| View previous topic :: View next topic |
| Author |
Message |
Daniel F Guest
|
Posted: Mon Nov 22, 2004 9:35 am Post subject: delphi to c++ |
|
|
Hi all iam doing a component that reads jpeg picture, for that i need to translate a code from delphi to c++
//delphi
try
if Stream ...
// balblablalab
end;
except
Picture ...
end
well this except is the same thing that a catch on c++ or is the same thing that a __except()
?! thx in advanced Daniel F
------
msg to the F%$" spam
I DONT WANT ANYTHING FROM YOU!!!!
|
|
| Back to top |
|
 |
OBones Guest
|
Posted: Mon Nov 22, 2004 10:54 am Post subject: Re: delphi to c++ |
|
|
Daniel F wrote:
| Quote: | Hi all iam doing a component that reads jpeg picture, for that i need to translate a code from delphi to c++
//delphi
try
if Stream ...
// balblablalab
end;
except
Picture ...
end
well this except is the same thing that a catch on c++ or is the same thing that a __except()
?! thx in advanced Daniel F
|
use catch and read the documentation coming with BCB to know how to
catch VCL exceptions
|
|
| Back to top |
|
 |
Daniel F Guest
|
Posted: Mon Nov 22, 2004 11:58 am Post subject: Re: delphi to c++ |
|
|
Ok thx OBones.
OBones <obones_grere_ (AT) _gregr_altern (DOT) org> wrote:
| Quote: | Daniel F wrote:
Hi all iam doing a component that reads jpeg picture, for that i need to translate a code from delphi to c++
//delphi
try
if Stream ...
// balblablalab
end;
except
Picture ...
end
well this except is the same thing that a catch on c++ or is the same thing that a __except()
?! thx in advanced Daniel F
use catch and read the documentation coming with BCB to know how to
catch VCL exceptions
|
|
|
| Back to top |
|
 |
|