Drew Byer
|
| Posted: 06/11/2002, 8:29 AM |
|
What am I missing?
page 63 of PDF
page 55 of document
Preview Tasks List Page
I should see "David Snyder" in bold blue text, but instead I see the code.
(See sample Below)
Id Project Priority Status Name User Id Assign To
1 Great Project High Open Great Project needs to be greater
<b><font color="blue">David Snyder</font></b>
2 CodeCharge Highest Open Fix ALL bugs Stefan Fey
3 CodeCharge High Closed Get ready to click <b><font
color="blue">David Snyder</font></b>
================
this is the code in the tutorial
------------------------------
if tasks.Recordset.Fields("user_id_assign_to") = Session("UserID") then
tasks.user_id_assign_to.Value = "<b><font color=""blue"">" &
tasks.user_id_assign_to.Value & "</font></b>"
end if
-------------------------------
Drew
|
|
|
 |
dphi
|
| Posted: 06/11/2002, 8:39 AM |
|
The pdf page numbering starts with the Introduction section page as page 1.
That page happens to be the 9th page in the pdf, the first 8 pages are the
cover sheet and table of contents. Acrobat counts all of the pages. The
authors chose to start page numbering at the Intro (...which makes sense).
"Drew Byer" <byerd@markross.com> wrote in message
news:ae551e$ib5$1@news.codecharge.com...
> What am I missing?
>
> page 63 of PDF
> page 55 of document
> Preview Tasks List Page
>
> I should see "David Snyder" in bold blue text, but instead I see the code.
> (See sample Below)
>
> Id Project Priority Status Name User Id Assign To
> 1 Great Project High Open Great Project needs to be greater
> <b><font color="blue">David Snyder</font></b>
> 2 CodeCharge Highest Open Fix ALL bugs Stefan Fey
> 3 CodeCharge High Closed Get ready to click <b><font
> color="blue">David Snyder</font></b>
>
> ================
> this is the code in the tutorial
> ------------------------------
> if tasks.Recordset.Fields("user_id_assign_to") = Session("UserID") then
> tasks.user_id_assign_to.Value = "<b><font color=""blue"">" &
> tasks.user_id_assign_to.Value & "</font></b>"
> end if
> -------------------------------
>
>
> Drew
>
>
>
>
|
|
|
 |
Chuck Parish
|
| Posted: 06/11/2002, 9:25 AM |
|
Hi Drew,
There are many errors and ommissions in the current document, at least that
is what I have found so far. To answer your question:
You need to look at the properties of the user_id_assign_to field and change
the display from "Text" to "HTML"
This is happening because the code in the tutorial changes the value to an
HTML tag and CCS thinks it is still supposed to display text.
Hope this helps!
Chuck
"Drew Byer" <byerd@markross.com> wrote in message
news:ae551e$ib5$1@news.codecharge.com...
> What am I missing?
>
> page 63 of PDF
> page 55 of document
> Preview Tasks List Page
>
> I should see "David Snyder" in bold blue text, but instead I see the code.
> (See sample Below)
>
> Id Project Priority Status Name User Id Assign To
> 1 Great Project High Open Great Project needs to be greater
> <b><font color="blue">David Snyder</font></b>
> 2 CodeCharge Highest Open Fix ALL bugs Stefan Fey
> 3 CodeCharge High Closed Get ready to click <b><font
> color="blue">David Snyder</font></b>
>
> ================
> this is the code in the tutorial
> ------------------------------
> if tasks.Recordset.Fields("user_id_assign_to") = Session("UserID") then
> tasks.user_id_assign_to.Value = "<b><font color=""blue"">" &
> tasks.user_id_assign_to.Value & "</font></b>"
> end if
> -------------------------------
>
>
> Drew
>
>
>
>
|
|
|
 |
|