473,583 Members | 3,114 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How do you e-mail a complete form not just the data

I want to create a web-based form or page that consists of a series of
formatted questions and answers. The form will resemble an existing paper
form. When the form is filled in, I want the user to submit the form via
e-mail and have the complete form with answers sent, not just the data. That
is, the recipient should be able to open the attachment and see (and print)
the complete, formatted form.

It seems to me that solutions simply transmit data (e.g. xml) to post in
some type of database. Not what I want. I tried looking into Adobe forms, but
in order to do this, every user has to have at least the "Standard" version
of the product, or I have to invest in expensive back-end software.

Thanks for any help!
Mar 15 '06 #1
7 2160
You need Microsoft Infopath. This is part of the MS Office suite and has
been for some years now, although few people know much about it.

Infopath is a forms tool. Unlike Adobe forms, it was designed with XML in
mind. The newer version (in Office 12) adds some pretty slick improvements
in the display and use of the form as well. You can do basic validation in
the form (through rules without code, if you want) or you can create an
assembly in .Net and attach it to the form so that code will run on the
client while the form is being filled out. Pretty slick.

Infopath must be installed on both ends. In Office 12, you will be able to
use Infopath server which will automatically convert forms to web forms, so
that a client that doesn't have Infopath can still fill out the form.

It's pretty cool.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"GeorgeAtki ns" <Ge**********@d iscussions.micr osoft.com> wrote in message
news:05******** *************** ***********@mic rosoft.com...
I want to create a web-based form or page that consists of a series of
formatted questions and answers. The form will resemble an existing paper
form. When the form is filled in, I want the user to submit the form via
e-mail and have the complete form with answers sent, not just the data.
That
is, the recipient should be able to open the attachment and see (and
print)
the complete, formatted form.

It seems to me that solutions simply transmit data (e.g. xml) to post in
some type of database. Not what I want. I tried looking into Adobe forms,
but
in order to do this, every user has to have at least the "Standard"
version
of the product, or I have to invest in expensive back-end software.

Thanks for any help!

Mar 16 '06 #2
Thanks for the response, Nick! I have a follow-up:

Will I be able to e-mail the ENTIRE form, including the questions and the
form layout, rather than just the responses?

Also, I believe I need to set up an Infopath Server, correct?
George

"Nick Malik [Microsoft]" wrote:
You need Microsoft Infopath. This is part of the MS Office suite and has
been for some years now, although few people know much about it.

Infopath is a forms tool. Unlike Adobe forms, it was designed with XML in
mind. The newer version (in Office 12) adds some pretty slick improvements
in the display and use of the form as well. You can do basic validation in
the form (through rules without code, if you want) or you can create an
assembly in .Net and attach it to the form so that code will run on the
client while the form is being filled out. Pretty slick.

Infopath must be installed on both ends. In Office 12, you will be able to
use Infopath server which will automatically convert forms to web forms, so
that a client that doesn't have Infopath can still fill out the form.

It's pretty cool.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"GeorgeAtki ns" <Ge**********@d iscussions.micr osoft.com> wrote in message
news:05******** *************** ***********@mic rosoft.com...
I want to create a web-based form or page that consists of a series of
formatted questions and answers. The form will resemble an existing paper
form. When the form is filled in, I want the user to submit the form via
e-mail and have the complete form with answers sent, not just the data.
That
is, the recipient should be able to open the attachment and see (and
print)
the complete, formatted form.

It seems to me that solutions simply transmit data (e.g. xml) to post in
some type of database. Not what I want. I tried looking into Adobe forms,
but
in order to do this, every user has to have at least the "Standard"
version
of the product, or I have to invest in expensive back-end software.

Thanks for any help!


Mar 16 '06 #3
Hello George,

You can e-mail the entire form.
If you do, you will not need to set up any server software at all.

That said, if you set up Sharepoint services (a free download), you get a
few extra benefits because of the rather nice integration between these
tools. However, I do not know if Sharepoint is appropriate in your
situation. I normally would not use Sharepoint if you are sending forms back
and forth between trading partners, which is how I'm reading your problem
(correct me if I am wrong).

If you'd prefer, you can use Infopath to Submit data, instead of mailing the
form itself. If you do this, then only the XML is transmitted. It sounds
like you are not interested in that option. This path does require that you
write some code to catch the XML and run it on an IIS server (no 'Infopath
server' components).

Note that Office 12 Infopath Server is a beta product and I cannot say much
more about it. However, you do not need Office 12 to do the things I have
mentioned. The product you need, Office 2003 Infopath, is already installed
on a large number of (mostly corporate) machines. Note: if you are using
the current version of Infopath, and the person filling out the form doesn't
have Infopath, that person will not be able to fill out the form. There is
no free forms tool. This problem is not solved until Office 12 comes out.

HTH,
--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"GeorgeAtki ns" <Ge**********@d iscussions.micr osoft.com> wrote in message
news:D3******** *************** ***********@mic rosoft.com...
Thanks for the response, Nick! I have a follow-up:

Will I be able to e-mail the ENTIRE form, including the questions and the
form layout, rather than just the responses?

Also, I believe I need to set up an Infopath Server, correct?
George

"Nick Malik [Microsoft]" wrote:
You need Microsoft Infopath. This is part of the MS Office suite and has
been for some years now, although few people know much about it.

Infopath is a forms tool. Unlike Adobe forms, it was designed with XML
in
mind. The newer version (in Office 12) adds some pretty slick
improvements
in the display and use of the form as well. You can do basic validation
in
the form (through rules without code, if you want) or you can create an
assembly in .Net and attach it to the form so that code will run on the
client while the form is being filled out. Pretty slick.

Infopath must be installed on both ends. In Office 12, you will be able
to
use Infopath server which will automatically convert forms to web forms,
so
that a client that doesn't have Infopath can still fill out the form.

It's pretty cool.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"GeorgeAtki ns" <Ge**********@d iscussions.micr osoft.com> wrote in message
news:05******** *************** ***********@mic rosoft.com...
>I want to create a web-based form or page that consists of a series of
> formatted questions and answers. The form will resemble an existing
> paper
> form. When the form is filled in, I want the user to submit the form
> via
> e-mail and have the complete form with answers sent, not just the data.
> That
> is, the recipient should be able to open the attachment and see (and
> print)
> the complete, formatted form.
>
> It seems to me that solutions simply transmit data (e.g. xml) to post
> in
> some type of database. Not what I want. I tried looking into Adobe
> forms,
> but
> in order to do this, every user has to have at least the "Standard"
> version
> of the product, or I have to invest in expensive back-end software.
>
> Thanks for any help!


Mar 17 '06 #4
Thanks for the info, Nick.
Well, the forms will be filled in by engineers and sent in a one-way trip to
a single mailbox where the supervisor will print and file them (physically).
It sounds like I can do this with InfoPath (Office) 2003, without having to
have Sharepoint Services set up. All users have Office 2003, so there will be
no licensing issues. Thanks, I'll get right on this.

"Nick Malik [Microsoft]" wrote:
Hello George,

You can e-mail the entire form.
If you do, you will not need to set up any server software at all.

That said, if you set up Sharepoint services (a free download), you get a
few extra benefits because of the rather nice integration between these
tools. However, I do not know if Sharepoint is appropriate in your
situation. I normally would not use Sharepoint if you are sending forms back
and forth between trading partners, which is how I'm reading your problem
(correct me if I am wrong).

If you'd prefer, you can use Infopath to Submit data, instead of mailing the
form itself. If you do this, then only the XML is transmitted. It sounds
like you are not interested in that option. This path does require that you
write some code to catch the XML and run it on an IIS server (no 'Infopath
server' components).

Note that Office 12 Infopath Server is a beta product and I cannot say much
more about it. However, you do not need Office 12 to do the things I have
mentioned. The product you need, Office 2003 Infopath, is already installed
on a large number of (mostly corporate) machines. Note: if you are using
the current version of Infopath, and the person filling out the form doesn't
have Infopath, that person will not be able to fill out the form. There is
no free forms tool. This problem is not solved until Office 12 comes out.

HTH,
--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"GeorgeAtki ns" <Ge**********@d iscussions.micr osoft.com> wrote in message
news:D3******** *************** ***********@mic rosoft.com...
Thanks for the response, Nick! I have a follow-up:

Will I be able to e-mail the ENTIRE form, including the questions and the
form layout, rather than just the responses?

Also, I believe I need to set up an Infopath Server, correct?
George

"Nick Malik [Microsoft]" wrote:
You need Microsoft Infopath. This is part of the MS Office suite and has
been for some years now, although few people know much about it.

Infopath is a forms tool. Unlike Adobe forms, it was designed with XML
in
mind. The newer version (in Office 12) adds some pretty slick
improvements
in the display and use of the form as well. You can do basic validation
in
the form (through rules without code, if you want) or you can create an
assembly in .Net and attach it to the form so that code will run on the
client while the form is being filled out. Pretty slick.

Infopath must be installed on both ends. In Office 12, you will be able
to
use Infopath server which will automatically convert forms to web forms,
so
that a client that doesn't have Infopath can still fill out the form.

It's pretty cool.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"GeorgeAtki ns" <Ge**********@d iscussions.micr osoft.com> wrote in message
news:05******** *************** ***********@mic rosoft.com...
>I want to create a web-based form or page that consists of a series of
> formatted questions and answers. The form will resemble an existing
> paper
> form. When the form is filled in, I want the user to submit the form
> via
> e-mail and have the complete form with answers sent, not just the data.
> That
> is, the recipient should be able to open the attachment and see (and
> print)
> the complete, formatted form.
>
> It seems to me that solutions simply transmit data (e.g. xml) to post
> in
> some type of database. Not what I want. I tried looking into Adobe
> forms,
> but
> in order to do this, every user has to have at least the "Standard"
> version
> of the product, or I have to invest in expensive back-end software.
>
> Thanks for any help!


Mar 18 '06 #5
We use GroupWise e-mail at our school district, but that is not supported by
InfoPath (go figure). Do you have any code that would permit me to enable
sending the form using another MAPI-compliant e-mail program?

Thanks!

"Nick Malik [Microsoft]" wrote:
Hello George,

You can e-mail the entire form.
If you do, you will not need to set up any server software at all.

That said, if you set up Sharepoint services (a free download), you get a
few extra benefits because of the rather nice integration between these
tools. However, I do not know if Sharepoint is appropriate in your
situation. I normally would not use Sharepoint if you are sending forms back
and forth between trading partners, which is how I'm reading your problem
(correct me if I am wrong).

If you'd prefer, you can use Infopath to Submit data, instead of mailing the
form itself. If you do this, then only the XML is transmitted. It sounds
like you are not interested in that option. This path does require that you
write some code to catch the XML and run it on an IIS server (no 'Infopath
server' components).

Note that Office 12 Infopath Server is a beta product and I cannot say much
more about it. However, you do not need Office 12 to do the things I have
mentioned. The product you need, Office 2003 Infopath, is already installed
on a large number of (mostly corporate) machines. Note: if you are using
the current version of Infopath, and the person filling out the form doesn't
have Infopath, that person will not be able to fill out the form. There is
no free forms tool. This problem is not solved until Office 12 comes out.

HTH,
--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"GeorgeAtki ns" <Ge**********@d iscussions.micr osoft.com> wrote in message
news:D3******** *************** ***********@mic rosoft.com...
Thanks for the response, Nick! I have a follow-up:

Will I be able to e-mail the ENTIRE form, including the questions and the
form layout, rather than just the responses?

Also, I believe I need to set up an Infopath Server, correct?
George

"Nick Malik [Microsoft]" wrote:
You need Microsoft Infopath. This is part of the MS Office suite and has
been for some years now, although few people know much about it.

Infopath is a forms tool. Unlike Adobe forms, it was designed with XML
in
mind. The newer version (in Office 12) adds some pretty slick
improvements
in the display and use of the form as well. You can do basic validation
in
the form (through rules without code, if you want) or you can create an
assembly in .Net and attach it to the form so that code will run on the
client while the form is being filled out. Pretty slick.

Infopath must be installed on both ends. In Office 12, you will be able
to
use Infopath server which will automatically convert forms to web forms,
so
that a client that doesn't have Infopath can still fill out the form.

It's pretty cool.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"GeorgeAtki ns" <Ge**********@d iscussions.micr osoft.com> wrote in message
news:05******** *************** ***********@mic rosoft.com...
>I want to create a web-based form or page that consists of a series of
> formatted questions and answers. The form will resemble an existing
> paper
> form. When the form is filled in, I want the user to submit the form
> via
> e-mail and have the complete form with answers sent, not just the data.
> That
> is, the recipient should be able to open the attachment and see (and
> print)
> the complete, formatted form.
>
> It seems to me that solutions simply transmit data (e.g. xml) to post
> in
> some type of database. Not what I want. I tried looking into Adobe
> forms,
> but
> in order to do this, every user has to have at least the "Standard"
> version
> of the product, or I have to invest in expensive back-end software.
>
> Thanks for any help!


Mar 21 '06 #6
Hi George,

OK... I assume that, because you are posting on a developers forum, that you
are a developer. Is that right? If you dig in to the Infopath SDK, you
will see that you can do some pretty incredible things with respect to
extending the tool. You can write a C# assembly that you connect to your
form template and provides functionality like the one you are describing.

On the other hand, this is a nice-to-have. Your users can simply download
an empty form FILE, fill it out, save it, close it, open GroupWise, and send
the file. No reason to automate that. I would start there and see if folks
feel that this solution isn't easy enough before you try to "automate" the
e-mail part.

Lastly, I'm not particularly familiar with GroupWise. Can an application
use the SMTP protocol to send e-mail via GroupWise? (You can with
Exchange). If so, then there are built-in classes in .Net that will do 95%
of the work for you to send the form. I hope that is the case. If not, it
may be cheaper to get an adapter (a program that runs on the GroupWise
server that provides the ability to read and handle the SMTP protocol). I
don't know for sure, but it's an option that I wouldn't ignore. Talk to
your e-mail administrator.

Good luck.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"GeorgeAtki ns" <Ge**********@d iscussions.micr osoft.com> wrote in message
news:BE******** *************** ***********@mic rosoft.com...
We use GroupWise e-mail at our school district, but that is not supported
by
InfoPath (go figure). Do you have any code that would permit me to enable
sending the form using another MAPI-compliant e-mail program?

Thanks!

"Nick Malik [Microsoft]" wrote:
Hello George,

You can e-mail the entire form.
If you do, you will not need to set up any server software at all.

That said, if you set up Sharepoint services (a free download), you get a
few extra benefits because of the rather nice integration between these
tools. However, I do not know if Sharepoint is appropriate in your
situation. I normally would not use Sharepoint if you are sending forms
back
and forth between trading partners, which is how I'm reading your problem
(correct me if I am wrong).

If you'd prefer, you can use Infopath to Submit data, instead of mailing
the
form itself. If you do this, then only the XML is transmitted. It
sounds
like you are not interested in that option. This path does require that
you
write some code to catch the XML and run it on an IIS server (no
'Infopath
server' components).

Note that Office 12 Infopath Server is a beta product and I cannot say
much
more about it. However, you do not need Office 12 to do the things I
have
mentioned. The product you need, Office 2003 Infopath, is already
installed
on a large number of (mostly corporate) machines. Note: if you are using
the current version of Infopath, and the person filling out the form
doesn't
have Infopath, that person will not be able to fill out the form. There
is
no free forms tool. This problem is not solved until Office 12 comes
out.

HTH,
--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"GeorgeAtki ns" <Ge**********@d iscussions.micr osoft.com> wrote in message
news:D3******** *************** ***********@mic rosoft.com...
> Thanks for the response, Nick! I have a follow-up:
>
> Will I be able to e-mail the ENTIRE form, including the questions and
> the
> form layout, rather than just the responses?
>
> Also, I believe I need to set up an Infopath Server, correct?
>
>
> George
>
> "Nick Malik [Microsoft]" wrote:
>
>> You need Microsoft Infopath. This is part of the MS Office suite and
>> has
>> been for some years now, although few people know much about it.
>>
>> Infopath is a forms tool. Unlike Adobe forms, it was designed with
>> XML
>> in
>> mind. The newer version (in Office 12) adds some pretty slick
>> improvements
>> in the display and use of the form as well. You can do basic
>> validation
>> in
>> the form (through rules without code, if you want) or you can create
>> an
>> assembly in .Net and attach it to the form so that code will run on
>> the
>> client while the form is being filled out. Pretty slick.
>>
>> Infopath must be installed on both ends. In Office 12, you will be
>> able
>> to
>> use Infopath server which will automatically convert forms to web
>> forms,
>> so
>> that a client that doesn't have Infopath can still fill out the form.
>>
>> It's pretty cool.
>>
>> --
>> --- Nick Malik [Microsoft]
>> MCSD, CFPS, Certified Scrummaster
>> http://blogs.msdn.com/nickmalik
>>
>> Disclaimer: Opinions expressed in this forum are my own, and not
>> representative of my employer.
>> I do not answer questions on behalf of my employer. I'm just a
>> programmer helping programmers.
>> --
>> "GeorgeAtki ns" <Ge**********@d iscussions.micr osoft.com> wrote in
>> message
>> news:05******** *************** ***********@mic rosoft.com...
>> >I want to create a web-based form or page that consists of a series
>> >of
>> > formatted questions and answers. The form will resemble an existing
>> > paper
>> > form. When the form is filled in, I want the user to submit the form
>> > via
>> > e-mail and have the complete form with answers sent, not just the
>> > data.
>> > That
>> > is, the recipient should be able to open the attachment and see (and
>> > print)
>> > the complete, formatted form.
>> >
>> > It seems to me that solutions simply transmit data (e.g. xml) to
>> > post
>> > in
>> > some type of database. Not what I want. I tried looking into Adobe
>> > forms,
>> > but
>> > in order to do this, every user has to have at least the "Standard"
>> > version
>> > of the product, or I have to invest in expensive back-end software.
>> >
>> > Thanks for any help!
>>
>>
>>


Mar 21 '06 #7
Thanks for the information. I had forgotten about the SDK, so I just d/l'd
it. Yes, GW uses SMTP. I'll look through the SDK documentation this week. I
must have forgotten to mark this thread for notification so I didn't catch
your reply right away.

George
"Nick Malik [Microsoft]" wrote:
Hi George,

OK... I assume that, because you are posting on a developers forum, that you
are a developer. Is that right? If you dig in to the Infopath SDK, you
will see that you can do some pretty incredible things with respect to
extending the tool. You can write a C# assembly that you connect to your
form template and provides functionality like the one you are describing.

On the other hand, this is a nice-to-have. Your users can simply download
an empty form FILE, fill it out, save it, close it, open GroupWise, and send
the file. No reason to automate that. I would start there and see if folks
feel that this solution isn't easy enough before you try to "automate" the
e-mail part.

Lastly, I'm not particularly familiar with GroupWise. Can an application
use the SMTP protocol to send e-mail via GroupWise? (You can with
Exchange). If so, then there are built-in classes in .Net that will do 95%
of the work for you to send the form. I hope that is the case. If not, it
may be cheaper to get an adapter (a program that runs on the GroupWise
server that provides the ability to read and handle the SMTP protocol). I
don't know for sure, but it's an option that I wouldn't ignore. Talk to
your e-mail administrator.

Good luck.

--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"GeorgeAtki ns" <Ge**********@d iscussions.micr osoft.com> wrote in message
news:BE******** *************** ***********@mic rosoft.com...
We use GroupWise e-mail at our school district, but that is not supported
by
InfoPath (go figure). Do you have any code that would permit me to enable
sending the form using another MAPI-compliant e-mail program?

Thanks!

"Nick Malik [Microsoft]" wrote:
Hello George,

You can e-mail the entire form.
If you do, you will not need to set up any server software at all.

That said, if you set up Sharepoint services (a free download), you get a
few extra benefits because of the rather nice integration between these
tools. However, I do not know if Sharepoint is appropriate in your
situation. I normally would not use Sharepoint if you are sending forms
back
and forth between trading partners, which is how I'm reading your problem
(correct me if I am wrong).

If you'd prefer, you can use Infopath to Submit data, instead of mailing
the
form itself. If you do this, then only the XML is transmitted. It
sounds
like you are not interested in that option. This path does require that
you
write some code to catch the XML and run it on an IIS server (no
'Infopath
server' components).

Note that Office 12 Infopath Server is a beta product and I cannot say
much
more about it. However, you do not need Office 12 to do the things I
have
mentioned. The product you need, Office 2003 Infopath, is already
installed
on a large number of (mostly corporate) machines. Note: if you are using
the current version of Infopath, and the person filling out the form
doesn't
have Infopath, that person will not be able to fill out the form. There
is
no free forms tool. This problem is not solved until Office 12 comes
out.

HTH,
--
--- Nick Malik [Microsoft]
MCSD, CFPS, Certified Scrummaster
http://blogs.msdn.com/nickmalik

Disclaimer: Opinions expressed in this forum are my own, and not
representative of my employer.
I do not answer questions on behalf of my employer. I'm just a
programmer helping programmers.
--
"GeorgeAtki ns" <Ge**********@d iscussions.micr osoft.com> wrote in message
news:D3******** *************** ***********@mic rosoft.com...
> Thanks for the response, Nick! I have a follow-up:
>
> Will I be able to e-mail the ENTIRE form, including the questions and
> the
> form layout, rather than just the responses?
>
> Also, I believe I need to set up an Infopath Server, correct?
>
>
> George
>
> "Nick Malik [Microsoft]" wrote:
>
>> You need Microsoft Infopath. This is part of the MS Office suite and
>> has
>> been for some years now, although few people know much about it.
>>
>> Infopath is a forms tool. Unlike Adobe forms, it was designed with
>> XML
>> in
>> mind. The newer version (in Office 12) adds some pretty slick
>> improvements
>> in the display and use of the form as well. You can do basic
>> validation
>> in
>> the form (through rules without code, if you want) or you can create
>> an
>> assembly in .Net and attach it to the form so that code will run on
>> the
>> client while the form is being filled out. Pretty slick.
>>
>> Infopath must be installed on both ends. In Office 12, you will be
>> able
>> to
>> use Infopath server which will automatically convert forms to web
>> forms,
>> so
>> that a client that doesn't have Infopath can still fill out the form.
>>
>> It's pretty cool.
>>
>> --
>> --- Nick Malik [Microsoft]
>> MCSD, CFPS, Certified Scrummaster
>> http://blogs.msdn.com/nickmalik
>>
>> Disclaimer: Opinions expressed in this forum are my own, and not
>> representative of my employer.
>> I do not answer questions on behalf of my employer. I'm just a
>> programmer helping programmers.
>> --
>> "GeorgeAtki ns" <Ge**********@d iscussions.micr osoft.com> wrote in
>> message
>> news:05******** *************** ***********@mic rosoft.com...
>> >I want to create a web-based form or page that consists of a series
>> >of
>> > formatted questions and answers. The form will resemble an existing
>> > paper
>> > form. When the form is filled in, I want the user to submit the form
>> > via
>> > e-mail and have the complete form with answers sent, not just the
>> > data.
>> > That
>> > is, the recipient should be able to open the attachment and see (and
>> > print)
>> > the complete, formatted form.
>> >
>> > It seems to me that solutions simply transmit data (e.g. xml) to
>> > post
>> > in
>> > some type of database. Not what I want. I tried looking into Adobe
>> > forms,
>> > but
>> > in order to do this, every user has to have at least the "Standard"
>> > version
>> > of the product, or I have to invest in expensive back-end software.
>> >
>> > Thanks for any help!
>>
>>
>>


Mar 29 '06 #8

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

Similar topics

10
2770
by: Norman Bird | last post by:
I have a form i will use to register new people and when I click the submit button, the form just shows itself. It is supposed to show a message showing field errors if you leave fields blank etc. so submitting the empty form should show error message in red , then show form, but all it does is show form. I checked the variable to make shore...
3
4596
by: james | last post by:
How can I have a php script send data to a URL as form post data from within the script without creating an actual form in a web page. I am working with an affiliate program (from Affiliateshop) and the instructions are 'have your script send a form post with the name of the form fields "AID" and "BID" and their values to the following URL...
7
24784
by: Nige | last post by:
Is it possible to convert an item of form field data to uppercase using the toUpperCase() method? What I'm really asking is, how do I reference the data item? -- Nige Please replace YYYY with the current year
5
2441
by: amanatio | last post by:
I have a huge form with many data bound controls on it and 34 tables in database (and of course 34 data adapters and 34 datasets). The form is extremely slow to design (huge delay when I go to code from design mode or vice versa) and to show. I didn't design the form but I WILL redisgn it from scratch. What would you propose me to do? The...
3
1744
by: Rahul Agarwal | last post by:
Hi In our web page we use a combination of HTML and server side controls and some of them have a custom attribute based on which we need to find and replace the values once the HTML is ready. For e.g. <LABEL DICTCODE="XYZ">Some text</LABEL> At run time just before the complete HTML is sent to the client-side I want to get hold of the...
1
4770
by: NumberCruncher | last post by:
Hi All, I am struggling with setting up my first system of tables, forms,and reports, and could use your help! I am setting up a database to keep track of the production of a produced item. The item is a panel, with a specific texture. There are standard panels that are then produced in a limited number of specific textures. The number of...
2
2870
by: Certys | last post by:
Hello, I have a form where I only allow new records to be added. I enable this by setting the form property "Data Entry" to Yes. I want to access other records in the same table- to autofill the new record with a user select previous record. Dim rs As Recordset Set rs = Me.RecordsetClone
1
2707
by: steinwaygirl | last post by:
Hi all, I have been searching so hard for the answer to this, hopefully some of you all can help. I have created an HTML file with various forms - also included CSS and some javascript for checkboxes and autofill of Identical forms, as well as pulldown menus. When I fill out a form and (on the IE browser pull down menu) select: File -->...
12
10622
by: DeZZar | last post by:
Hi all, I'll explain my database first. Users input customer details that are required to complete a company document. The document merge etc is all working - the database saves the completed document to a variable directory based on form data. What I need to code into it now is a button that creates an email. The email has the same...
0
7827
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
8184
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8328
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
0
6581
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5701
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
3820
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3845
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2334
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
0
1158
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.