Here's an example using ntheorem. Note that each declaration of
\newtheorem{...}
inherits the current theoremstyle and associated settings.
In the example below, both mytheorem and anothertheorem have exactly the same style. If you were to put some different settings, perhaps changing the \theorembodyfont{} for example, immediately before
\newtheorem{anothertheorem}{Another Theorem}
then anothertheorem would inherit these new settings. See the ntheorem documentation for more details.
MWE
\documentclass{article}
\usepackage{ntheorem} % for theorems
\usepackage{lipsum} % for sample text
\theoremstyle{plain}
\theoremheaderfont{\bfseries}
\theorembodyfont{} % try commenting this line
\theoremprework{} % code to process before the theorem
\theorempostwork{} % code to process after the theorem
\theoremseparator{:} % could be a : for example
% first theorem
\newtheorem{mytheorem}{My Theorem}
% another theorem
\newtheorem{anothertheorem}{Another Theorem}
\begin{document}
\begin{mytheorem}
\lipsum[1]
\end{mytheorem}
\begin{anothertheorem}
\lipsum[2]
\end{anothertheorem}
\end{document}
\theoremstyle. But that depends a bit on the theorem related package(s) you use. If you add a minimal example to your question, it would be easier to find a solution. – Thorsten Donig Dec 08 '11 at 09:08amsthmbut now thanks to you know – karathan Dec 08 '11 at 20:37