send form results to specific network computers

  • Thread starter Thread starter Joey Joe Josepher
  • Start date Start date
J

Joey Joe Josepher

create a form (with excel or word or something else) and
have the user push a button once the form is completed and
the results of that form go to 2 specific people on the
network...

How to do this?!!?
 
:
: create a form (with excel or word or something else) and
: have the user push a button once the form is completed and
: the results of that form go to 2 specific people on the
: network...

go to 2 specific people in what way?

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Online Support for IT Professionals -
http://support.microsoft.com/servicedesks/technet/default.asp?fr=0&sd=tech
How-to: Windows 2000 DNS:
http://support.microsoft.com/default.aspx?scid=kb;EN-US;308201
 
Roland... I don't really know what way is best...
I just want these people to recieve the data from these
forms... but I want to do it without the need of an
internet connection.
 
: Roland... I don't really know what way is best...
: I just want these people to recieve the data from these
: forms... but I want to do it without the need of an
: internet connection.

Ok, then what are we dealing with?
LAN?
WAN?
Intranet Web Server?
Internal Mail Server?
Protocols used?

Please respond with yes or no for the first four and fill in the blank on
the last one and we'll go from there.

--
Roland Hall
/* This information is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of merchantability
or fitness for a particular purpose. */
Online Support for IT Professionals -
http://support.microsoft.com/servicedesks/technet/default.asp?fr=0&sd=tech
How-to: Windows 2000 DNS:
http://support.microsoft.com/default.aspx?scid=kb;EN-US;308201
 
The following VB code sends e-mail to (e-mail address removed) with subject from
Textbox1 and body from Textbox2

Set NewMail = myOlApp.CreateItem(olMailItem)
Set receiverOFMyMail = NewMail.Recipients.Add([email protected])
NewMail.Subject = TextBox1.Value
NewMail.Body = TextBox2.Value
NewMail.Send

Hope this will help
 
Ok, then what are we dealing with?
LAN? YES
WAN? NO
Intranet Web Server? NO
Internal Mail Server? NO
Protocols used? YES not really sure what
protocols are... but we have a public drive that everyone
can access
 
Back
Top