 |
BorlandTalk.com Borland discussion newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Jon Jacobs Guest
|
Posted: Wed Aug 20, 2003 1:35 pm Post subject: Where is Off Topic? |
|
|
I have read several references to the Off Topic newsgroup. At first I
thought it was an inside joke, but the posts certainly seemed serious about
it. It does not appear in http://info.borland.com/newsgroups/#listnews
Nor does it appear, when I am in a borland ng and click the Newsgoups button
in Outlook Express.
I am hand-crafting some html for display in a TWebBrowser control, and want
to know the html code to shade a table light gray, but not affect the
background color of the rest of the page. The html book I bought does not
give me a clue.
I am asking either where to look for the answer or, if I'm lucky, just how
to do it. If this is not the right place to ask either way, perhaps the
OffTopic group would be, but I can not find it. Perhaps a link in the reply?
Jon Jacobs
|
|
| Back to top |
|
 |
Kristofer Skaug Guest
|
Posted: Wed Aug 20, 2003 1:39 pm Post subject: Re: Where is Off Topic? |
|
|
"Jon Jacobs" wrote>
| Quote: | I am asking either where to look for the answer or, if I'm lucky, just
how
to do it. If this is not the right place to ask either way, perhaps the
OffTopic group would be, but I can not find it. Perhaps a link in the
reply? |
Believe me, Off-topic is *not* a good place to go with technical
questions.
Oh by all means do try, you'll make their day, but a serious answer is
very very very very very unlikely, if you catch my drift.
You may want to try the delphi.vcl.components.using group,
or .internet.winsock. Not sure where TWebBrowser really belongs.
good luck, Kristofer
|
|
| Back to top |
|
 |
Ingvar Nilsen Guest
|
Posted: Wed Aug 20, 2003 1:43 pm Post subject: Re: Where is Off Topic? |
|
|
Jon Jacobs wrote:
| Quote: | I have read several references to the Off Topic newsgroup. At first I
thought it was an inside joke, but the posts certainly seemed serious
about
it. It does not appear in http://info.borland.com/newsgroups/#listnews
Nor does it appear, when I am in a borland ng and click the Newsgoups
button
in Outlook Express.
|
This is the off-topic group, just ask Craig Stuntz <G>
Or you can try borland.public.off-topic.
But since this post is on-topic, I will not set a follow-up to
off-topic, no, I just will not..
--
Ingvar Nilsen
|
|
| Back to top |
|
 |
Lauchlan M Guest
|
Posted: Wed Aug 20, 2003 1:44 pm Post subject: Re: Where is Off Topic? |
|
|
| Quote: | I have read several references to the Off Topic newsgroup. At first I
thought it was an inside joke, but the posts certainly seemed serious
about
it. It does not appear in http://info.borland.com/newsgroups/#listnews
Nor does it appear, when I am in a borland ng and click the Newsgoups
button
in Outlook Express.
|
It does for me. Borland.public.off-topic (not
borland.public.delphi.off-topic).
| Quote: | I am hand-crafting some html for display in a TWebBrowser control, and
want
to know the html code to shade a table light gray, but not affect the
background color of the rest of the page. The html book I bought does not
give me a clue.
|
I'd just search on google.
Just set the background color for the row/cell/table to #e0e0e0 IIRC.
Also try searching for web safe colours and you should find a chart of them.
Finally, you could just use a free HTML tool like composer (ships with
Mozilla) and grab the code the WYSIWYG produces and reuse that.
HTH
Lauchlan M
|
|
| Back to top |
|
 |
John Leavey Guest
|
Posted: Wed Aug 20, 2003 1:49 pm Post subject: Re: Where is Off Topic? |
|
|
On Wed, 20 Aug 2003 08:35:48 -0500, "Jon Jacobs" <jqjacobs (AT) gte (DOT) net> wrote:
| Quote: | I have read several references to the Off Topic newsgroup. At first I
thought it was an inside joke, but the posts certainly seemed serious about
it. It does not appear in http://info.borland.com/newsgroups/#listnews
Nor does it appear, when I am in a borland ng and click the Newsgoups button
in Outlook Express.
|
Borland.Puplic.Off-Topic
Outlook ought to have a function to refresh the list of news groups for a server. If not,
it's time to switch to a proper news reader instead of that microsoft rubish.
| Quote: | I am hand-crafting some html for display in a TWebBrowser control, and want
to know the html code to shade a table light gray, but not affect the
background color of the rest of the page. The html book I bought does not
give me a clue.
|
You can add BDColor=nnn as a sub parameter of a <TABLE> Tag
eg <TABLE BGCOLOR="#D0D0D0">
| Quote: | I am asking either where to look for the answer or, if I'm lucky, just how
to do it. If this is not the right place to ask either way, perhaps the
OffTopic group would be, but I can not find it. Perhaps a link in the reply?
|
For a good on-line HTML reference, take a look at
http://www.blooberry.com/indexdot/html/index.html
John Leavey
|
|
| Back to top |
|
 |
Captain Jake Guest
|
Posted: Wed Aug 20, 2003 3:43 pm Post subject: Re: Where is Off Topic? |
|
|
In borland.public.delphi.non-technical, Kristofer Skaug <ya.ierfgnf (AT) thnxf (DOT) x>
wrote in message <3f437a24$1 (AT) newsgroups (DOT) borland.com>...
| Quote: | Not sure where TWebBrowser really belongs.
|
The garbage can, actually.
|
|
| Back to top |
|
 |
William Meyer Guest
|
Posted: Wed Aug 20, 2003 5:03 pm Post subject: Re: Where is Off Topic? |
|
|
On 20-Aug-03, Captain Jake said:
| Quote: | The garbage can, actually.
|
Well, that's b.p.o-t! <g>
--
Bill
--------
"To compel a man to furnish funds for the propagation of ideas he disbelieves and abhors is sinful and tyrannical." -- Thomas Jefferson
|
|
| Back to top |
|
 |
Kristofer Skaug Guest
|
Posted: Wed Aug 20, 2003 5:48 pm Post subject: Re: Where is Off Topic? |
|
|
<William Meyer> wrote
On 20-Aug-03, Captain Jake said:
| Quote: | The garbage can, actually.
|
Well, that's b.p.o-t! <g>
LOL!
Kristofer
|
|
| Back to top |
|
 |
Jon Jacobs Guest
|
Posted: Sat Aug 23, 2003 1:06 am Post subject: Re: Where is Off Topic? |
|
|
<TABLE BGCOLOR="#D0D0D0">
| Quote: | Borland.Puplic.Off-Topic
I know what it is called, but so far I have no way to get there. (Public). |
"John Leavey" <johnl (AT) NO_SPAM (DOT) compufile.co.uk> wrote
| Quote: | On Wed, 20 Aug 2003 08:35:48 -0500, "Jon Jacobs" <jqjacobs (AT) gte (DOT) net> wrote:
I have read several references to the Off Topic newsgroup. At first I
thought it was an inside joke, but the posts certainly seemed serious
about
it. It does not appear in http://info.borland.com/newsgroups/#listnews
Nor does it appear, when I am in a borland ng and click the Newsgoups
button
in Outlook Express.
Borland.Puplic.Off-Topic
Outlook ought to have a function to refresh the list of news groups for a
server. If not,
it's time to switch to a proper news reader instead of that microsoft
rubish.
I am hand-crafting some html for display in a TWebBrowser control, and
want
to know the html code to shade a table light gray, but not affect the
background color of the rest of the page. The html book I bought does not
give me a clue.
You can add BDColor=nnn as a sub parameter of a <TABLE> Tag
eg
I am asking either where to look for the answer or, if I'm lucky, just
how
to do it. If this is not the right place to ask either way, perhaps the
OffTopic group would be, but I can not find it. Perhaps a link in the
reply?
For a good on-line HTML reference, take a look at
http://www.blooberry.com/indexdot/html/index.html
John Leavey
|
|
|
| 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
|
|