473,406 Members | 2,293 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

textbox

joy
hi
how to make the textbox onload to be filled with / / (that is for
date ) that is i want the / to be filled in 3 position and 6 position
in the textbox and it should not be editiable...is it possible...
thanks in advance..

Apr 20 '07 #1
22 1841
joy said the following on 4/20/2007 6:32 AM:
hi
how to make the textbox onload to be filled with / / (that is for
date ) that is i want the / to be filled in 3 position and 6 position
in the textbox and it should not be editiable...is it possible...
thanks in advance..
No. Not the way you are wanting to do it anyway:

<input type="text">/<input type="text">/<input type="text">

Is the best you can do.

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq/index.html
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Apr 20 '07 #2
"joy" <jo*****@gmail.comwrote in message
news:11**********************@y80g2000hsf.googlegr oups.com...
hi
how to make the textbox onload to be filled with / / (that is for
date ) that is i want the / to be filled in 3 position and 6 position
in the textbox and it should not be editiable...is it possible...
thanks in advance..
If I understand correctly:

function giveDate()
{
var d = new Date;
return (d.getMonth() + 1) + '/' + d.getDate() + '/' + d.getFullYear();
}

document.forms['form_name'].elements['text_input_name'].value = giveDate();

Assuming a form named (or ID'd) 'form_name', and a text input named 'text_input_name',
that is also disabled (disabled="disabled").

-Lost
Apr 20 '07 #3
In comp.lang.javascript message <JaGdnck7pPVJI7XbnZ2dnUVZ_vCknZ2d@comcas
t.com>, Fri, 20 Apr 2007 09:24:08, -Lost <mi*********@comcast.net>
posted:
>"joy" <jo*****@gmail.comwrote in message
news:11**********************@y80g2000hsf.googleg roups.com...
>hi
how to make the textbox onload to be filled with / / (that is for
date ) that is i want the / to be filled in 3 position and 6 position
in the textbox and it should not be editiable...is it possible...
thanks in advance..

If I understand correctly:
I don't think you do.
>function giveDate()
{
var d = new Date;
return (d.getMonth() + 1) + '/' + d.getDate() + '/' + d.getFullYear();
}
How would that put / in positions 3 & 6, except in November and December
after the 9th?

Why assume the OP wants an FFF date? He may be normal, and want the
month in the middle.

If you had earlier given a workable E-mail address, you would have had
E-mail.

--
(c) John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v6.05 IE 6.
Web <URL:http://www.merlyn.demon.co.uk/- w. FAQish topics, links, acronyms
PAS EXE etc : <URL:http://www.merlyn.demon.co.uk/programs/- see 00index.htm
Dates - miscdate.htm moredate.htm js-dates.htm pas-time.htm critdate.htm etc.
Apr 20 '07 #4
"Dr J R Stockton" <jr*@merlyn.demon.co.ukwrote in message
news:ES**************@invalid.uk.co.demon.merlyn.i nvalid...
In comp.lang.javascript message <JaGdnck7pPVJI7XbnZ2dnUVZ_vCknZ2d@comcas
t.com>, Fri, 20 Apr 2007 09:24:08, -Lost <mi*********@comcast.net>
posted:
>>"joy" <jo*****@gmail.comwrote in message
news:11**********************@y80g2000hsf.google groups.com...
>>hi
how to make the textbox onload to be filled with / / (that is for
date ) that is i want the / to be filled in 3 position and 6 position
in the textbox and it should not be editiable...is it possible...
thanks in advance..

If I understand correctly:

I don't think you do.
You are right!
>>function giveDate()
{
var d = new Date;
return (d.getMonth() + 1) + '/' + d.getDate() + '/' + d.getFullYear();
}

How would that put / in positions 3 & 6, except in November and December
after the 9th?
Beats me. I swore it was a 2-digit month. Then again I wrote that around 9AM, and had
not slept yet.

Also, to be fair, I would have sent them to your JavaScript Date page, but I can neither
read your code without headache nor properly explain most of what I find there.

I thought giving a trivial example along the lines of what the original poster wanted,
might suffice. Stressing might.
Why assume the OP wants an FFF date? He may be normal, and want the
month in the middle.
Believe me, the first thing I wrote was yy(yy)/mm/dd. However, that was not what I
assumed the original poster was requesting.
If you had earlier given a workable E-mail address, you would have had
E-mail.
Not trying to be rude or anything, but why would I have received an e-mail from you? Why
would I want to receive an e-mail from you?

Perusing this newsgroup with a valid e-mail resulted in me being placed on some moronic
spam list. I like how it is now. There is no reason to e-mail me personally (at least, I
don't think there is).

You got me paranoid, I had to check your "failed email" page. I am not going to be the
4/20 entry am I?

Speaking of which, you spelled which "whivh" on that page.

-Lost
Apr 20 '07 #5
-Lost said the following on 4/20/2007 7:44 PM:
"Dr J R Stockton" <jr*@merlyn.demon.co.ukwrote in message
news:ES**************@invalid.uk.co.demon.merlyn.i nvalid...
>In comp.lang.javascript message <JaGdnck7pPVJI7XbnZ2dnUVZ_vCknZ2d@comcas
t.com>, Fri, 20 Apr 2007 09:24:08, -Lost <mi*********@comcast.net>
posted:
>>"joy" <jo*****@gmail.comwrote in message
news:11**********************@y80g2000hsf.google groups.com...
hi
how to make the textbox onload to be filled with / / (that is for
date ) that is i want the / to be filled in 3 position and 6 position
in the textbox and it should not be editiable...is it possible...
thanks in advance..
If I understand correctly:
I don't think you do.

You are right!
>>function giveDate()
{
var d = new Date;
return (d.getMonth() + 1) + '/' + d.getDate() + '/' + d.getFullYear();
}
How would that put / in positions 3 & 6, except in November and December
after the 9th?

Beats me. I swore it was a 2-digit month. Then again I wrote that around 9AM, and had
not slept yet.

Also, to be fair, I would have sent them to your JavaScript Date page, but I can neither
read your code without headache nor properly explain most of what I find there.
Join the crowd. About the only person on the planet that can make sense
of that conglomeration of text is JRS himself.
>If you had earlier given a workable E-mail address, you would have had
E-mail.

Not trying to be rude or anything, but why would I have received an e-mail from you? Why
would I want to receive an e-mail from you?
Meet JRS :)

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq/index.html
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Apr 21 '07 #6
Randy Webb wrote on 21 apr 2007 in comp.lang.javascript:
>JRS:
>>If you had earlier given a workable E-mail address, you would have
had E-mail.
LOST:
>Not trying to be rude or anything, but why would I have received an
e-mail from you? Why would I want to receive an e-mail from you?

Meet JRS :)
However, JRS is just stating his believe that,
if Lost had given a workable E-mail address earlier,
he would have had email, period.

".. why would I have received an e-mail from you?", is a valid question
without the presumed "from you", but outside JRS'es statement scope.

"Why would I want to receive an e-mail from you?"
is a presumed condition, since JRS only states that Lost would have got
email, not that such [an] email was conditional on a request or desire
[perhaps subconcious, at least unwritten] by Lost.

If the parsing of a simple human line is loaded by so many "expected"
presumptions that are factually out of scope, the scope limits being set by
the tread parent, it is obvious that so much computer language lines "do
not work" "as expected", and that the likes of JRS have a valuable input in
this NG.

Randy's admonishmant to "Meet JRS" is in the above sense completely within
scope.

I will not comment on "Not trying to be rude or anything" or anything for
now.

;-'}

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Apr 21 '07 #7
In comp.lang.javascript message <ZoGdnXLhRIbMzbTbnZ2dnUVZ_qmpnZ2d@comcas
t.com>, Fri, 20 Apr 2007 19:44:54, -Lost <mi*********@comcast.net>
posted:
>Not trying to be rude or anything, but why would I have received an e-mail from you?
Because I aimed one in what I thought might (possibly) be the required
direction. One should give or imply only addresses that one has
permission to use; and an address should be working, or be working after
an obvious transformation, or be obviously non-working.
Why
would I want to receive an e-mail from you?
Sometimes one is pleased to have received mail even if one had not been
wanting it.
>Perusing this newsgroup with a valid e-mail resulted in me being placed on some moronic
spam list. I like how it is now. There is no reason to e-mail me personally (at least, I
don't think there is).

You got me paranoid, I had to check your "failed email" page. I am not going to be the
4/20 entry am I?
Certainly not; that would be an invalid date. As it happens, it's an
04-04, belatedly added. But I normally use it only when I have no other
means of communication.
>Speaking of which, you spelled which "whivh" on that page.
Fixed, thanks.

--
(c) John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Delphi 3? Turnpike 6.05
<URL:http://www.merlyn.demon.co.uk/TP/BP/Delphi/&c., FAQqy topics & links;
<URL:http://www.bancoems.com/CompLangPascalDelphiMisc-MiniFAQ.htmclpdmFAQ;
<URL:http://www.borland.com/newsgroups/guide.htmlnews:borland.* Guidelines
Apr 21 '07 #8
"Dr J R Stockton" <jr*@merlyn.demon.co.ukwrote in message
news:n3**************@invalid.uk.co.demon.merlyn.i nvalid...
In comp.lang.javascript message <ZoGdnXLhRIbMzbTbnZ2dnUVZ_qmpnZ2d@comcas
t.com>, Fri, 20 Apr 2007 19:44:54, -Lost <mi*********@comcast.net>
posted:
>>Not trying to be rude or anything, but why would I have received an e-mail from you?

Because I aimed one in what I thought might (possibly) be the required
direction. One should give or imply only addresses that one has
permission to use; and an address should be working, or be working after
an obvious transformation, or be obviously non-working.
Hrmm... whilst I do not subscribe to what I consider sometimes to be extremes, that made
sense.

Primarily because I was using one that I did not have explicit permission to use.

I have changed my e-mail address that should be workable after an obvious transformation.
Remove "the extra words" to e-mail me (assuming you still want to).
> Why
would I want to receive an e-mail from you?

Sometimes one is pleased to have received mail even if one had not been
wanting it.
Ah, you weren't going to chide me for abusing the Date object?

Cool.
>>Perusing this newsgroup with a valid e-mail resulted in me being placed on some moronic
spam list. I like how it is now. There is no reason to e-mail me personally (at least,
I
don't think there is).

You got me paranoid, I had to check your "failed email" page. I am not going to be the
4/20 entry am I?

Certainly not; that would be an invalid date. As it happens, it's an
04-04, belatedly added. But I normally use it only when I have no other
means of communication.
Ah, at first I thought you were joking. I did not previously see that (don't know how I
missed it).

I actually remember viewing that in the newsgroup... or at least I thought so.

I did not mean to appear as if I ignored the thread either. I just did not find anymore
errors offhand, so thought it useless to reply in the thread again.
>>Speaking of which, you spelled which "whivh" on that page.

Fixed, thanks.
Not at all a problem.

-Lost
Remove the extra words to reply by e-mail. Don't e-mail me. I am kidding. No I am not.
Apr 22 '07 #9
Speaking of e-mails and whatnot... (see thread titled "textbox")

Randy, Doc J; do your newsgroup clients (or web interfaces) automatically put your
signatures at the bottom of a thread?

I wonder because I did a couple tests in alt.test.signature and noticed that anytime I
replied to a thread it put my signature on top of everything. Then I would have to
cut/paste it at the bottom... which sucks.

-Lost
Apr 22 '07 #10
-Lost wrote on 22 apr 2007 in comp.lang.javascript:
Speaking of e-mails and whatnot... (see thread titled "textbox")

Randy, Doc J; do your newsgroup clients (or web interfaces)
automatically put your signatures at the bottom of a thread?

I wonder because I did a couple tests in alt.test.signature and
noticed that anytime I replied to a thread it put my signature on top
of everything. Then I would have to cut/paste it at the bottom...
which sucks.
Dear Lost,

You are not using either, but an email client [Outlook] that tries but
fails to implement what dedicated news readers had all along.

Why not make use such dedication?

btw, a signature should begin with -- followd by a new line character,
which anables good news readers to do automatic stripping.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Apr 22 '07 #11
-Lost said the following on 4/22/2007 12:09 AM:
Speaking of e-mails and whatnot... (see thread titled "textbox")

Randy, Doc J; do your newsgroup clients (or web interfaces) automatically put your
signatures at the bottom of a thread?
Yes it does. And it also automatically removes properly delimited
signatures (that begin with dash dash space return).
I wonder because I did a couple tests in alt.test.signature and noticed that anytime I
replied to a thread it put my signature on top of everything. Then I would have to
cut/paste it at the bottom... which sucks.
Try a good newsreader instead of OE :)

Thunderbird:
<URL: http://www.mozilla.com/en-US/thunderbird/>

Turnpike:
<URL: http://www.demon.net/toolkit/downloads/upgrade.html>

Forte Agent:
<URL: http://www.forteinc.com/agent/>

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq/index.html
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Apr 22 '07 #12
In comp.lang.javascript message <Xn********************@194.109.133.242>
, Sun, 22 Apr 2007 08:27:28, Evertjan. <ex**************@interxnl.net>
posted:
>-Lost wrote on 22 apr 2007 in comp.lang.javascript:
>Speaking of e-mails and whatnot... (see thread titled "textbox")

Randy, Doc J; do your newsgroup clients (or web interfaces)
automatically put your signatures at the bottom of a thread?
The one I use for mail and use does; the ones I have but don't use
should.
>I wonder because I did a couple tests in alt.test.signature and
noticed that anytime I replied to a thread it put my signature on top
of everything. Then I would have to cut/paste it at the bottom...
which sucks.
In that case, the first "it" was a bad choice.
>btw, a signature should begin with -- followd by a new line character,
which anables good news readers to do automatic stripping.
No, a signature should be preceded with a line containing only "minus
minus space"; it's a separator, and is not counted in the standard four
lines.

A responding agent should put the cursor, but not any blank lines,
between the attribution and the initially-quoted material.

--
(c) John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v6.05 MIME.
Web <URL:http://www.merlyn.demon.co.uk/- FAQish topics, acronyms, & links.
Proper <= 4-line sig. separator as above, a line exactly "-- " (SonOfRFC1036)
Do not Mail News to me. Before a reply, quote with ">" or "" (SonOfRFC1036)
Apr 22 '07 #13
"Dr J R Stockton" <jr*@merlyn.demon.co.ukwrote in message
news:rN**************@invalid.uk.co.demon.merlyn.i nvalid...
In comp.lang.javascript message <Xn********************@194.109.133.242>
, Sun, 22 Apr 2007 08:27:28, Evertjan. <ex**************@interxnl.net>
posted:
>>-Lost wrote on 22 apr 2007 in comp.lang.javascript:
>>Speaking of e-mails and whatnot... (see thread titled "textbox")

Randy, Doc J; do your newsgroup clients (or web interfaces)
automatically put your signatures at the bottom of a thread?

The one I use for mail and use does; the ones I have but don't use
should.
I took that as, I am not going to tell you about the ones I don't use, because they are
listed on one of my pages.

Needless to say I did not find a listing of mail or news clients aside from Turnpike that
is.

Which by the way... I just figured out how to reach that page. Previously the only way I
knew how to get to that page was by first finding the instance of "PFE" (or DiDa, or
MiniTrue) and clicking on one of those.

So, are there any that you might recommend?
>>I wonder because I did a couple tests in alt.test.signature and
noticed that anytime I replied to a thread it put my signature on top
of everything. Then I would have to cut/paste it at the bottom...
which sucks.

In that case, the first "it" was a bad choice.
Oh yeah. Outlook Express has always bothered me. I have downloaded replacements before,
but never quite got into the swing of things in another client before needing/wanting to
peruse my mail and/or a newsgroup.

That is going to change as of, after I send this post. : )
>>btw, a signature should begin with -- followd by a new line character,
which anables good news readers to do automatic stripping.

No, a signature should be preceded with a line containing only "minus
minus space"; it's a separator, and is not counted in the standard four
lines.

A responding agent should put the cursor, but not any blank lines,
between the attribution and the initially-quoted material.
-Lost
Apr 23 '07 #14
"Randy Webb" <Hi************@aol.comwrote in message
news:6Y********************@giganews.com...
-Lost said the following on 4/22/2007 12:09 AM:
>Speaking of e-mails and whatnot... (see thread titled "textbox")

Randy, Doc J; do your newsgroup clients (or web interfaces) automatically put your
signatures at the bottom of a thread?

Yes it does. And it also automatically removes properly delimited signatures (that begin
with dash dash space return).
>I wonder because I did a couple tests in alt.test.signature and noticed that anytime I
replied to a thread it put my signature on top of everything. Then I would have to
cut/paste it at the bottom... which sucks.

Try a good newsreader instead of OE :)
Gotcha. I was scared off by Thunderbird at first (cannot remember why), but I am going
for it again with the newest version.
Thunderbird:
<URL: http://www.mozilla.com/en-US/thunderbird/>
Here goes nothing!
Turnpike:
<URL: http://www.demon.net/toolkit/downloads/upgrade.html>
I thought it rather funny actually that upon reading the FAQ on setting up an e-mail
account in your choice of client that they offer a tutorial based soley on Outlook
Express, as opposed to Turnpike.
Forte Agent:
<URL: http://www.forteinc.com/agent/>
That is rather shitty of Forte, at least in my opinion, to not only trash Free Agent, but
to not provide Free Agent at all anymore.

I struck Forte Agent from the list solely for that reason. A wise software developer told
me a long time ago that a company should never (within reason) abandon its users, paid or
not

The only good thing I remember about Agent anyway was its superior handling of multi-part
binary attachments (yEnc and all that jazz). Otherwise the interface (GUI) sucked.

Oh... and um... I lied above. *This* is the last post I will make with Outlook Express
(at least for a while).

Thanks for the links.

-Lost
Apr 23 '07 #15
-Lost wrote:
"Randy Webb" <Hi************@aol.comwrote in message
news:6Y********************@giganews.com...
>-Lost said the following on 4/22/2007 12:09 AM:
>>Speaking of e-mails and whatnot... (see thread titled "textbox")

Randy, Doc J; do your newsgroup clients (or web interfaces) automatically put your
signatures at the bottom of a thread?
Yes it does. And it also automatically removes properly delimited signatures (that begin
with dash dash space return).
>>I wonder because I did a couple tests in alt.test.signature and noticed that anytime I
replied to a thread it put my signature on top of everything. Then I would have to
cut/paste it at the bottom... which sucks.
Try a good newsreader instead of OE :)

Gotcha. I was scared off by Thunderbird at first (cannot remember why), but I am going
for it again with the newest version.
>Thunderbird:
<URL: http://www.mozilla.com/en-US/thunderbird/>

Here goes nothing!
>Turnpike:
<URL: http://www.demon.net/toolkit/downloads/upgrade.html>

I thought it rather funny actually that upon reading the FAQ on setting up an e-mail
account in your choice of client that they offer a tutorial based soley on Outlook
Express, as opposed to Turnpike.
>Forte Agent:
<URL: http://www.forteinc.com/agent/>

That is rather shitty of Forte, at least in my opinion, to not only trash Free Agent, but
to not provide Free Agent at all anymore.

I struck Forte Agent from the list solely for that reason. A wise software developer told
me a long time ago that a company should never (within reason) abandon its users, paid or
not

The only good thing I remember about Agent anyway was its superior handling of multi-part
binary attachments (yEnc and all that jazz). Otherwise the interface (GUI) sucked.

Oh... and um... I lied above. *This* is the last post I will make with Outlook Express
(at least for a while).

Thanks for the links.

-Lost

OK, so far... I am loving Thunderbird. I had a few glitches that I had
to wrap my noggin around, but so far so good.

I love the fact wrap at 72 characters wide actually works!

Also, this weird view with colored lines on either side rocks.

I do not quite understand if it is a star or an important tag I
need/want. In Outlook Express I could simply click on any message
within a thread and mark it as a favorite and the entire thread would be
highlighted. So far, neither the star nor an important tag do that for me.

Thanks again for the suggestions!

--
-Lost
Remove the extra words to reply by e-mail. Don't e-mail me. I am
kidding. No I am not.
Apr 23 '07 #16
-Lost said the following on 4/23/2007 10:12 AM:

<snip>
OK, so far... I am loving Thunderbird. I had a few glitches that I had
to wrap my noggin around, but so far so good.

I love the fact wrap at 72 characters wide actually works!
It "works" until you quote a broken OE post that isn't wrapped :)
Also, this weird view with colored lines on either side rocks.
That is one thing about it that I have come to ignore :)
I do not quite understand if it is a star or an important tag I
need/want. In Outlook Express I could simply click on any message
within a thread and mark it as a favorite and the entire thread would be
highlighted. So far, neither the star nor an important tag do that for me.
The only thing you can do is "Label" a post and it won't label the
entire thread/color it. There is no way, that I have found, to label an
entire thread.

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq/index.html
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Apr 23 '07 #17
In comp.lang.javascript message <6Y********************@giganews.com>,
Sun, 22 Apr 2007 14:03:01, Randy Webb <Hi************@aol.composted:
>
Turnpike:
<URL: http://www.demon.net/toolkit/downloads/upgrade.html>
At the present time, that is an unreasonable recommendation. Alas,
development of Turnpike has more-or-less ceased, apart from maintaining
compatibility with OS developments and security issues. Note that the
cited page is an upgrade page.

<URL: www.turnpike.comis a better reference, anyway.

--
(c) John Stockton, Surrey, UK. REPLYyyww merlyn demon co uk Turnpike 6.05.
Web <URL:http://www.uwasa.fi/~ts/http/tsfaq.html-Timo Salmi: Usenet Q&A.
Web <URL:http://www.merlyn.demon.co.uk/news-use.htm: about usage of News.
No Encoding. Quotes precede replies. Snip well. Write clearly. Mail no News.
Apr 23 '07 #18
Randy Webb wrote:
-Lost said the following on 4/23/2007 10:12 AM:

<snip>
>OK, so far... I am loving Thunderbird. I had a few glitches that I
had to wrap my noggin around, but so far so good.

I love the fact wrap at 72 characters wide actually works!

It "works" until you quote a broken OE post that isn't wrapped :)
Well, there is one less OE slave to contend with, so...
>Also, this weird view with colored lines on either side rocks.

That is one thing about it that I have come to ignore :)
Oh no, it was especially cool when I read a message nested about ten deep!
>I do not quite understand if it is a star or an important tag I
need/want. In Outlook Express I could simply click on any message
within a thread and mark it as a favorite and the entire thread would
be highlighted. So far, neither the star nor an important tag do that
for me.

The only thing you can do is "Label" a post and it won't label the
entire thread/color it. There is no way, that I have found, to label an
entire thread.
I could not find any particularly useful information on "Label(s)." Did
you mean Tags?

--
-Lost
Remove the extra words to reply by e-mail. Don't e-mail me. I am
kidding. No I am not.
Apr 23 '07 #19
-Lost said the following on 4/23/2007 4:11 PM:
Randy Webb wrote:
>-Lost said the following on 4/23/2007 10:12 AM:
<snip>
>>I do not quite understand if it is a star or an important tag I
need/want. In Outlook Express I could simply click on any message
within a thread and mark it as a favorite and the entire thread would
be highlighted. So far, neither the star nor an important tag do
that for me.

The only thing you can do is "Label" a post and it won't label the
entire thread/color it. There is no way, that I have found, to label
an entire thread.

I could not find any particularly useful information on "Label(s)." Did
you mean Tags?
In the message pane where you see the message Subject line (For me it is
in the top right window), you right click a message and choose Label>
and you can "Label" it for later use. It color codes them based on how
you Label it.

--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq/index.html
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Apr 23 '07 #20
Randy Webb wrote:
-Lost said the following on 4/23/2007 4:11 PM:
>Randy Webb wrote:
>>-Lost said the following on 4/23/2007 10:12 AM:

<snip>
>>>I do not quite understand if it is a star or an important tag I
need/want. In Outlook Express I could simply click on any message
within a thread and mark it as a favorite and the entire thread
would be highlighted. So far, neither the star nor an important tag
do that for me.

The only thing you can do is "Label" a post and it won't label the
entire thread/color it. There is no way, that I have found, to label
an entire thread.

I could not find any particularly useful information on "Label(s)."
Did you mean Tags?

In the message pane where you see the message Subject line (For me it is
in the top right window), you right click a message and choose Label>
and you can "Label" it for later use. It color codes them based on how
you Label it.
Oh really? What version?

2.0 (26th of March) does not show me such a thing.

http://foomanchu.com/thunderbird_no_label1_censored.jpg

--
-Lost
Remove the extra words to reply by e-mail. Don't e-mail me. I am
kidding. No I am not.
Apr 23 '07 #21
-Lost said the following on 4/23/2007 6:00 PM:
Randy Webb wrote:
>-Lost said the following on 4/23/2007 4:11 PM:
>>Randy Webb wrote:
-Lost said the following on 4/23/2007 10:12 AM:

<snip>
>>>>I do not quite understand if it is a star or an important tag I
need/want. In Outlook Express I could simply click on any message
within a thread and mark it as a favorite and the entire thread
would be highlighted. So far, neither the star nor an important
tag do that for me.

The only thing you can do is "Label" a post and it won't label the
entire thread/color it. There is no way, that I have found, to label
an entire thread.
I could not find any particularly useful information on "Label(s)."
Did you mean Tags?

In the message pane where you see the message Subject line (For me it
is in the top right window), you right click a message and choose
Labeland you can "Label" it for later use. It color codes them based
on how you Label it.

Oh really? What version?

2.0 (26th of March) does not show me such a thing.

http://foomanchu.com/thunderbird_no_label1_censored.jpg
In 1.5 (which is what I use), it is Label. In 2.0 (which I just
installed), it is in the Mark menu.
I like 1.5 better than 2.0 though from what I have seen so far.
--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq/index.html
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Apr 23 '07 #22
Randy Webb wrote:
-Lost said the following on 4/23/2007 6:00 PM:
>Randy Webb wrote:
>>-Lost said the following on 4/23/2007 4:11 PM:
Randy Webb wrote:
-Lost said the following on 4/23/2007 10:12 AM:
>

<snip>

>I do not quite understand if it is a star or an important tag I
>need/want. In Outlook Express I could simply click on any message
>within a thread and mark it as a favorite and the entire thread
>would be highlighted. So far, neither the star nor an important
>tag do that for me.
>
The only thing you can do is "Label" a post and it won't label the
entire thread/color it. There is no way, that I have found, to
label an entire thread.
>

I could not find any particularly useful information on "Label(s)."
Did you mean Tags?
In the message pane where you see the message Subject line (For me it
is in the top right window), you right click a message and choose
Labeland you can "Label" it for later use. It color codes them
based on how you Label it.

Oh really? What version?

2.0 (26th of March) does not show me such a thing.

http://foomanchu.com/thunderbird_no_label1_censored.jpg

In 1.5 (which is what I use), it is Label. In 2.0 (which I just
installed), it is in the Mark menu.
So basically, a star is all we have to mark items of noteworthy content
(or for whatever reason). That sucks.

I can honestly say in that respect that I like Outlook Express better.
I like 1.5 better than 2.0 though from what I have seen so far.
Bah, it figures. I even had a copy of 1.5.0.9, but opted to get the
newest version anyway.

--
-Lost
Remove the extra words to reply by e-mail. Don't e-mail me. I am
kidding. No I am not.
Apr 23 '07 #23

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Jonas L | last post by:
Hi, I need to create a textbox which acts as a normal textbox but with the following extra requirements: 1) In-focus color, when the textbox gets focus the backcolor property of the textbox...
4
by: Rodrigo DeJuana | last post by:
Howdy, I'm new to this .net stuff and really have little to no training. Im trying to create a new page for a web form, so i have been pretty much jsut coping code. I having some issue with...
0
by: Newasps | last post by:
Hi guys, I have a problem with UpdateCommand Event. In tihs event Ä°'m creating required controls to get that controls' values and also get them. But when I try to get updated values I'm getting the...
7
by: I am Sam | last post by:
I have a DataGrid that is passing information to a stored procedure properly but the parameters aren't being casted properly. I was woundering if anyone can tell me how I should properly cast the...
11
by: Keith | last post by:
I apologize for those of you who think I'm posting on the same topic. It is not that I don't appreciate all of your comments - and I'm definitely reading them all - but I think I have a differing...
2
by: Mamatha | last post by:
Hi I want to add an icon to the textbox's text. I don't know how to display icon in textbox in VB.NET. If any one knows please let me know. Thanks in advance. Mamatha
3
by: Brad Rogers | last post by:
All, Being immersed in vb.net and trying CSharp after almost a year I forgot the differences. I like vb fixing the uppercase/lowercase names and seeming to be more flexible to code entry. ...
0
by: Jacob Donajkowski | last post by:
Once the user logs in I want to have the users switch from the Roster View to the Profile View and enter their profile infomation and save it. Then the next time they login and go to the Profile...
8
by: Marco Pais | last post by:
Hi there. How can I change the background color of a textbox when it gets the focus? I can handle the "Enter" event and do this private void txtDummie_Enter(object sender, EventArgs e) { ...
1
by: Andy B | last post by:
I have this code: protected void EditEventsWizard_NextButtonClick(object sender, WizardNavigationEventArgs e) { //get the values from the DetailsView TextBox StartTime =...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.