473,386 Members | 1,817 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,386 software developers and data experts.

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 2147
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.
--
"GeorgeAtkins" <Ge**********@discussions.microsoft.com> wrote in message
news:05**********************************@microsof t.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.
--
"GeorgeAtkins" <Ge**********@discussions.microsoft.com> wrote in message
news:05**********************************@microsof t.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.
--
"GeorgeAtkins" <Ge**********@discussions.microsoft.com> wrote in message
news:D3**********************************@microsof t.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.
--
"GeorgeAtkins" <Ge**********@discussions.microsoft.com> wrote in message
news:05**********************************@microsof t.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.
--
"GeorgeAtkins" <Ge**********@discussions.microsoft.com> wrote in message
news:D3**********************************@microsof t.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.
--
"GeorgeAtkins" <Ge**********@discussions.microsoft.com> wrote in message
news:05**********************************@microsof t.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.
--
"GeorgeAtkins" <Ge**********@discussions.microsoft.com> wrote in message
news:D3**********************************@microsof t.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.
--
"GeorgeAtkins" <Ge**********@discussions.microsoft.com> wrote in message
news:05**********************************@microsof t.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.
--
"GeorgeAtkins" <Ge**********@discussions.microsoft.com> wrote in message
news:BE**********************************@microsof t.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.
--
"GeorgeAtkins" <Ge**********@discussions.microsoft.com> wrote in message
news:D3**********************************@microsof t.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.
>> --
>> "GeorgeAtkins" <Ge**********@discussions.microsoft.com> wrote in
>> message
>> news:05**********************************@microsof t.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.
--
"GeorgeAtkins" <Ge**********@discussions.microsoft.com> wrote in message
news:BE**********************************@microsof t.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.
--
"GeorgeAtkins" <Ge**********@discussions.microsoft.com> wrote in message
news:D3**********************************@microsof t.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.
>> --
>> "GeorgeAtkins" <Ge**********@discussions.microsoft.com> wrote in
>> message
>> news:05**********************************@microsof t.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
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....
3
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)...
7
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...
5
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...
3
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. ...
1
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...
2
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...
1
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...
12
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...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
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,...
0
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...

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.