RE: web form editor

2002-11-12 Thread Tillman, James
> Im much interested in this topic but all i got with this code 
> was a "missing object" image in IE. I tried to download a 
> bunch of files like Richtx32.ocx and msxml3.cab that i found 
> on my way to making it work but nothing seemed to make the difference.
> 
> Can anyone please explain this code further, installation 
> instructions, or direct me to some page covering this topic 
> (i've tried ASPN, MSDN, Google with no luck!).

Don't bother with ActiveX controls and other nonsense if you're using IE5 or
higher.  This capability is built into IE5+.  This web site explains it
adequately:

http://www.devarticles.com/art/1/90

I've seen a few "editor" javascript files you can download off the net for
free that enable this functionality, but it will pay dividends to learn how
it works for yourself.

jpt
___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs



RE: web form editor

2002-11-12 Thread Perl Mail

Hi!

Im much interested in this topic but all i got with this code was a "missing object" 
image in IE. I tried to download a bunch of files like Richtx32.ocx and msxml3.cab 
that i found on my way to making it work but nothing seemed to make the difference.

Can anyone please explain this code further, installation instructions, or direct me 
to some page covering this topic (i've tried ASPN, MSDN, Google with no luck!).

Thanks / Magnus

-- Original Message --
From: "Joseph Youngquist" <[EMAIL PROTECTED]>
Date: Mon, 11 Nov 2002 14:17:51 -0500

>Found what I was talking about.
>
>height=240>
>
>
>placing that in an html file will add a richedit control 6.0 to the page.
>
>Burak Gürsoy's e-mail is what your looking for though.
>
>JY


___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs



RE: web form editor

2002-11-11 Thread Joseph Youngquist
Found what I was talking about.




placing that in an html file will add a richedit control 6.0 to the page.

Burak Gürsoy's e-mail is what your looking for though.

JY

-Original Message-
From: [EMAIL PROTECTED]
[mailto:perl-win32-users-admin@;listserv.ActiveState.com]On Behalf Of
George Harris
Sent: Monday, November 11, 2002 1:31 PM
To: [EMAIL PROTECTED]
Subject: Re: web form editor



2nd try:

Does anybody know how these inline editors are created
into a web page form, and if there are any perl
modules to support this?

Thanks.

--- George Harris <[EMAIL PROTECTED]> wrote:
> Hi All,
>
> I do all of my CGI form handling in perl.
>
> But I've noticed that there is a way to put a small
> rich text editor into a web page input form. For
> example, this is done with yahoo mail. I've also
> seen
> it done with .NET stuff.
>
> I'm wondering if anyone knows how to do this?
>
> And of course, how to handle the output that these
> browser editors generate, maybe using cgi.pm?
>
> Thanks!
>
> __
> Do you Yahoo!?
> U2 on LAUNCH - Exclusive greatest hits videos
> http://launch.yahoo.com/u2
> ___
> Perl-Win32-Users mailing list
> [EMAIL PROTECTED]
> To unsubscribe:
http://listserv.ActiveState.com/mailman/mysubs


__
Do You Yahoo!?
Yahoo! Autos - Get free new car price quotes
http://autos.yahoo.com
___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs



Re: web form editor

2002-11-11 Thread steve silvers
I know what your talking about. Cold Fusion does this really nicely with a 
bold and underline, italics, ect interface... But I don't think that perl 
has a module to do this. If your looking to send "html" email use the 
Mime::Lite module.


From: George Harris <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Re: web form editor
Date: Mon, 11 Nov 2002 10:31:00 -0800 (PST)


2nd try:

Does anybody know how these inline editors are created
into a web page form, and if there are any perl
modules to support this?

Thanks.

--- George Harris <[EMAIL PROTECTED]> wrote:
> Hi All,
>
> I do all of my CGI form handling in perl.
>
> But I've noticed that there is a way to put a small
> rich text editor into a web page input form. For
> example, this is done with yahoo mail. I've also
> seen
> it done with .NET stuff.
>
> I'm wondering if anyone knows how to do this?
>
> And of course, how to handle the output that these
> browser editors generate, maybe using cgi.pm?
>
> Thanks!
>
> __
> Do you Yahoo!?
> U2 on LAUNCH - Exclusive greatest hits videos
> http://launch.yahoo.com/u2
> ___
> Perl-Win32-Users mailing list
> [EMAIL PROTECTED]
> To unsubscribe:
http://listserv.ActiveState.com/mailman/mysubs


__
Do You Yahoo!?
Yahoo! Autos - Get free new car price quotes
http://autos.yahoo.com
___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs



_
The new MSN 8: advanced junk mail protection and 2 months FREE* 
http://join.msn.com/?page=features/junkmail

___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


RE: web form editor

2002-11-11 Thread Joseph Youngquist
If it's a richedit control, then I would have to assume that there is an
activeX thingy running it in IE.
I'm almost 100% sure that this is not an html element.

Check the win32::Ole::Browser (for some reason it's not willing to run on my
box at the moment).  I was playing around about 6 months ago, and ran across
placing activeX controls in IE html pages.
I'll see if I can find my test page that I was using.

The thing that I remember thinking is wow this is cool, then wow, this would
only work if people have this registered on their local box.  If you are not
providing the wrapper activeX and want to use this over the web for the
general public, it's not a good idea if this is mission critical...but for
an Intranet, would be cool.

hth,
JY

-Original Message-
From: [EMAIL PROTECTED]
[mailto:perl-win32-users-admin@;listserv.ActiveState.com]On Behalf Of
George Harris
Sent: Monday, November 11, 2002 1:31 PM
To: [EMAIL PROTECTED]
Subject: Re: web form editor



2nd try:

Does anybody know how these inline editors are created
into a web page form, and if there are any perl
modules to support this?

Thanks.

--- George Harris <[EMAIL PROTECTED]> wrote:
> Hi All,
>
> I do all of my CGI form handling in perl.
>
> But I've noticed that there is a way to put a small
> rich text editor into a web page input form. For
> example, this is done with yahoo mail. I've also
> seen
> it done with .NET stuff.
>
> I'm wondering if anyone knows how to do this?
>
> And of course, how to handle the output that these
> browser editors generate, maybe using cgi.pm?
>
> Thanks!
>
> __
> Do you Yahoo!?
> U2 on LAUNCH - Exclusive greatest hits videos
> http://launch.yahoo.com/u2
> ___
> Perl-Win32-Users mailing list
> [EMAIL PROTECTED]
> To unsubscribe:
http://listserv.ActiveState.com/mailman/mysubs


__
Do You Yahoo!?
Yahoo! Autos - Get free new car price quotes
http://autos.yahoo.com
___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs



RE: web form editor

2002-11-11 Thread Burak Gürsoy
http://webfx.eae.net/dhtml/richedit/richedit.html

no module needed I believe... evething happens on the client side...

-Original Message-
From: [EMAIL PROTECTED]
[mailto:perl-win32-users-admin@;listserv.ActiveState.com]On Behalf Of George
Harris
Sent: Monday, November 11, 2002 8:31 PM
To: [EMAIL PROTECTED]
Subject: Re: web form editor



2nd try:

Does anybody know how these inline editors are created
into a web page form, and if there are any perl
modules to support this?

Thanks.

--- George Harris <[EMAIL PROTECTED]> wrote:
> Hi All,
>
> I do all of my CGI form handling in perl.
>
> But I've noticed that there is a way to put a small
> rich text editor into a web page input form. For
> example, this is done with yahoo mail. I've also
> seen
> it done with .NET stuff.
>
> I'm wondering if anyone knows how to do this?
>
> And of course, how to handle the output that these
> browser editors generate, maybe using cgi.pm?
>
> Thanks!
>
> __
> Do you Yahoo!?
> U2 on LAUNCH - Exclusive greatest hits videos
> http://launch.yahoo.com/u2
> ___
> Perl-Win32-Users mailing list
> [EMAIL PROTECTED]
> To unsubscribe:
http://listserv.ActiveState.com/mailman/mysubs


__
Do You Yahoo!?
Yahoo! Autos - Get free new car price quotes
http://autos.yahoo.com
___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs



Re: web form editor

2002-11-11 Thread George Harris

2nd try:

Does anybody know how these inline editors are created
into a web page form, and if there are any perl
modules to support this?

Thanks.

--- George Harris <[EMAIL PROTECTED]> wrote:
> Hi All,
> 
> I do all of my CGI form handling in perl.
> 
> But I've noticed that there is a way to put a small
> rich text editor into a web page input form. For
> example, this is done with yahoo mail. I've also
> seen
> it done with .NET stuff.
> 
> I'm wondering if anyone knows how to do this?
> 
> And of course, how to handle the output that these
> browser editors generate, maybe using cgi.pm?
> 
> Thanks!
> 
> __
> Do you Yahoo!?
> U2 on LAUNCH - Exclusive greatest hits videos
> http://launch.yahoo.com/u2
> ___
> Perl-Win32-Users mailing list
> [EMAIL PROTECTED]
> To unsubscribe:
http://listserv.ActiveState.com/mailman/mysubs


__
Do You Yahoo!?
Yahoo! Autos - Get free new car price quotes
http://autos.yahoo.com
___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs