From: Ronx on
No - A form field area can only be pre-populated in Code view.
You could try a scrollable HTML container instead, for example:

<pre style="height: 300px; border: 1px solid red; width: 600px; overflow:
scroll;">
Code goes here
</pre>
The CSS would be best placed in an external style sheet which can be
accessed by multiple pages.
The border is only for decoration.

I use a similar method on my pages , for example:
http://www.rxs-enterprises.org/fp/articles/2008/01/03/02/Validating_Email_Addresses.aspx
--
Ron Symonds
Microsoft MVP (Expression Web)
http://www.rxs-enterprises.org/fp

Reply only to group - emails will be deleted unread.



"Greg Maxey" <gmaxey(a)mIKEvICTORpAPAsIERRA.oSCARrOMEOgOLF> wrote in message
news:#Rh7IUxtKHA.3408(a)TK2MSFTNGP06.phx.gbl...
> Ronx,
>
> I suppose that I can make this work, but it seems combersome to work with.
> Is is possible to insert the text area as you have shown but then be able
> to paste in text while I am in designe mode? As it is, I am putting in
> the text using the code view:
>
>
> Ronx wrote:
>> The text area can be made read-only:
>>
>> <textarea name="TextArea1" style="width: 600px; padding: 5px;"
>> readonly="readonly" rows="10">code goes here</textarea>
>>
>>
>>
>> "Ronx" <ronx917(a)hotmail.com> wrote in message
>> news:edsURSvtKHA.3360(a)TK2MSFTNGP06.phx.gbl...
>>> Use a text-area - but why bother to lock it?
>>> If the text area is not within a form changing the contents is only
>>> going to affect the user - not your website. Users can change the
>>> code after they paste it into their applications anyway.
>>>
>>> When inserting the text area into the page remove the <form ...> and
>>> </form> tags that go with it to disable any chance of submitting the
>>> field back to the website.
>>> --
>>> Ron Symonds
>>> Microsoft MVP (Expression Web)
>>> http://www.rxs-enterprises.org/fp
>>>
>>> Reply only to group - emails will be deleted unread.
>>>
>>>
>>>
>>> "Greg Maxey" <gmaxey(a)mIKEvICTORpAPAsIERRA.oSCARrOMEOgOLF> wrote in
>>> message news:uzMK5iutKHA.4568(a)TK2MSFTNGP05.phx.gbl...
>>>> I am not sure if this is the correct forum or not.
>>>>
>>>> I use FrontPage to manage my personal website and I am one step
>>>> above a novice. On several of my pages I post rather lengthy clips
>>>> of VBA code. I would like to display this code in some sort of
>>>> fixed sized text field where visitors could scroll to read or
>>>> select and copy the text. I have found on the Insert menu a Form>Insert
>>>> Text Area control that
>>>> almost suit the bill if I could only figure out how "lock" it so
>>>> that the content cannot be altered by visitors. Can this be done or
>>>> is there a more appropriate type of control to use for my purpose.
>>>>
>>>> Thank you.
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> --
>>>> Greg Maxey
>>>>
>>>> See my web site http://gregmaxey.mvps.org
>>>> for an eclectic collection of Word Tips.
>>>>
>>>> Arrogance is a weed that grows mostly on a dunghill (Arabic proverb)
>
>
From: Greg Maxey on
Ronx,

Ok thanks. I will make one or the other work.

Ronx wrote:
> No - A form field area can only be pre-populated in Code view.
> You could try a scrollable HTML container instead, for example:
>
> <pre style="height: 300px; border: 1px solid red; width: 600px;
> overflow: scroll;">
> Code goes here
> </pre>
> The CSS would be best placed in an external style sheet which can be
> accessed by multiple pages.
> The border is only for decoration.
>
> I use a similar method on my pages , for example:
> http://www.rxs-enterprises.org/fp/articles/2008/01/03/02/Validating_Email_Addresses.aspx
>
> "Greg Maxey" <gmaxey(a)mIKEvICTORpAPAsIERRA.oSCARrOMEOgOLF> wrote in
> message news:#Rh7IUxtKHA.3408(a)TK2MSFTNGP06.phx.gbl...
>> Ronx,
>>
>> I suppose that I can make this work, but it seems combersome to work
>> with. Is is possible to insert the text area as you have shown but
>> then be able to paste in text while I am in designe mode? As it is,
>> I am putting in the text using the code view:
>>
>>
>> Ronx wrote:
>>> The text area can be made read-only:
>>>
>>> <textarea name="TextArea1" style="width: 600px; padding: 5px;"
>>> readonly="readonly" rows="10">code goes here</textarea>
>>>
>>>
>>>
>>> "Ronx" <ronx917(a)hotmail.com> wrote in message
>>> news:edsURSvtKHA.3360(a)TK2MSFTNGP06.phx.gbl...
>>>> Use a text-area - but why bother to lock it?
>>>> If the text area is not within a form changing the contents is only
>>>> going to affect the user - not your website. Users can change the
>>>> code after they paste it into their applications anyway.
>>>>
>>>> When inserting the text area into the page remove the <form ...>
>>>> and </form> tags that go with it to disable any chance of
>>>> submitting the field back to the website.
>>>> --
>>>> Ron Symonds
>>>> Microsoft MVP (Expression Web)
>>>> http://www.rxs-enterprises.org/fp
>>>>
>>>> Reply only to group - emails will be deleted unread.
>>>>
>>>>
>>>>
>>>> "Greg Maxey" <gmaxey(a)mIKEvICTORpAPAsIERRA.oSCARrOMEOgOLF> wrote in
>>>> message news:uzMK5iutKHA.4568(a)TK2MSFTNGP05.phx.gbl...
>>>>> I am not sure if this is the correct forum or not.
>>>>>
>>>>> I use FrontPage to manage my personal website and I am one step
>>>>> above a novice. On several of my pages I post rather lengthy
>>>>> clips of VBA code. I would like to display this code in some sort of
>>>>> fixed sized text field where visitors could scroll to read or
>>>>> select and copy the text. I have found on the Insert menu a
>>>>> Form>Insert Text Area control that
>>>>> almost suit the bill if I could only figure out how "lock" it so
>>>>> that the content cannot be altered by visitors. Can this be done
>>>>> or is there a more appropriate type of control to use for my purpose.
>>>>>
>>>>> Thank you.
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Greg Maxey
>>>>>
>>>>> See my web site http://gregmaxey.mvps.org
>>>>> for an eclectic collection of Word Tips.
>>>>>
>>>>> Arrogance is a weed that grows mostly on a dunghill (Arabic
>>>>> proverb)


From: Greg Maxey on
Ronx,

One more question. If I elect to go with the scrollable HTML container how
do I modify the border color, weight, style, etc.? I mean where do I go to
learned how and what to type in the code to define this sort of thing?


Ronx wrote:
> No - A form field area can only be pre-populated in Code view.
> You could try a scrollable HTML container instead, for example:
>
> <pre style="height: 300px; border: 1px solid red; width: 600px;
> overflow: scroll;">
> Code goes here
> </pre>
> The CSS would be best placed in an external style sheet which can be
> accessed by multiple pages.
> The border is only for decoration.
>
> I use a similar method on my pages , for example:
> http://www.rxs-enterprises.org/fp/articles/2008/01/03/02/Validating_Email_Addresses.aspx
>
> "Greg Maxey" <gmaxey(a)mIKEvICTORpAPAsIERRA.oSCARrOMEOgOLF> wrote in
> message news:#Rh7IUxtKHA.3408(a)TK2MSFTNGP06.phx.gbl...
>> Ronx,
>>
>> I suppose that I can make this work, but it seems combersome to work
>> with. Is is possible to insert the text area as you have shown but
>> then be able to paste in text while I am in designe mode? As it is,
>> I am putting in the text using the code view:
>>
>>
>> Ronx wrote:
>>> The text area can be made read-only:
>>>
>>> <textarea name="TextArea1" style="width: 600px; padding: 5px;"
>>> readonly="readonly" rows="10">code goes here</textarea>
>>>
>>>
>>>
>>> "Ronx" <ronx917(a)hotmail.com> wrote in message
>>> news:edsURSvtKHA.3360(a)TK2MSFTNGP06.phx.gbl...
>>>> Use a text-area - but why bother to lock it?
>>>> If the text area is not within a form changing the contents is only
>>>> going to affect the user - not your website. Users can change the
>>>> code after they paste it into their applications anyway.
>>>>
>>>> When inserting the text area into the page remove the <form ...>
>>>> and </form> tags that go with it to disable any chance of
>>>> submitting the field back to the website.
>>>> --
>>>> Ron Symonds
>>>> Microsoft MVP (Expression Web)
>>>> http://www.rxs-enterprises.org/fp
>>>>
>>>> Reply only to group - emails will be deleted unread.
>>>>
>>>>
>>>>
>>>> "Greg Maxey" <gmaxey(a)mIKEvICTORpAPAsIERRA.oSCARrOMEOgOLF> wrote in
>>>> message news:uzMK5iutKHA.4568(a)TK2MSFTNGP05.phx.gbl...
>>>>> I am not sure if this is the correct forum or not.
>>>>>
>>>>> I use FrontPage to manage my personal website and I am one step
>>>>> above a novice. On several of my pages I post rather lengthy
>>>>> clips of VBA code. I would like to display this code in some sort of
>>>>> fixed sized text field where visitors could scroll to read or
>>>>> select and copy the text. I have found on the Insert menu a
>>>>> Form>Insert Text Area control that
>>>>> almost suit the bill if I could only figure out how "lock" it so
>>>>> that the content cannot be altered by visitors. Can this be done
>>>>> or is there a more appropriate type of control to use for my purpose.
>>>>>
>>>>> Thank you.
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> --
>>>>> Greg Maxey
>>>>>
>>>>> See my web site http://gregmaxey.mvps.org
>>>>> for an eclectic collection of Word Tips.
>>>>>
>>>>> Arrogance is a weed that grows mostly on a dunghill (Arabic
>>>>> proverb)


From: "Trevor Lawrence" Trevor on
"Greg Maxey" <gmaxey(a)mIKEvICTORpAPAsIERRA.oSCARrOMEOgOLF> wrote in message
news:%23xyaeLytKHA.4752(a)TK2MSFTNGP04.phx.gbl...
> Ronx,
>
> One more question. If I elect to go with the scrollable HTML container
> how do I modify the border color, weight, style, etc.? I mean where do I
> go to learned how and what to type in the code to define this sort of
> thing?
>

http://www.w3schools.com/

--
Trevor Lawrence
Canberra
Web Site http://trevorl.mvps.org


From: Greg Maxey on
Thanks. I'll check it out.

Trevor Lawrence wrote:
> "Greg Maxey" <gmaxey(a)mIKEvICTORpAPAsIERRA.oSCARrOMEOgOLF> wrote in
> message news:%23xyaeLytKHA.4752(a)TK2MSFTNGP04.phx.gbl...
>> Ronx,
>>
>> One more question. If I elect to go with the scrollable HTML
>> container how do I modify the border color, weight, style, etc.? I
>> mean where do I go to learned how and what to type in the code to
>> define this sort of thing?
>>
>
> http://www.w3schools.com/