Hi all,

I'm searching for he code how to align the text in a cell to centered.
anybody an idea?



--
K0b3
------------------------------------------------------------------------
Posted via http://www.codecomments.com
------------------------------------------------------------------------

Re: Excel formatting using vbscript by McKirahan

McKirahan
Wed Feb 16 16:01:43 CST 2005

"K0b3" <K0b3.1kkglo@mail.codecomments.com> wrote in message
news:K0b3.1kkglo@mail.codecomments.com...
>
> Hi all,
>
> I'm searching for he code how to align the text in a cell to centered.
> anybody an idea?
>
>
>
> --
> K0b3
> ------------------------------------------------------------------------
> Posted via http://www.codecomments.com
> ------------------------------------------------------------------------

In an HTML table?

<td align="center">

In an MS-Excel worksheet?

objXLA.Selection.HorizontalAlignment = &HFFFFEFF4 '= xlCenter

Or what?