A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook - Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Complete Noob Here - Outlook Form - Concept



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old March 10th 06, 09:39 AM posted to microsoft.public.outlook.program_forms
SFC Charlie Cox
external usenet poster
 
Posts: 6
Default Complete Noob Here - Outlook Form - Concept

Here in Kuwait, we are moving all kinds of cargo in and out of theater (as
you might imagine).

I took over this post a few months ago and found that I was quickly mired in
paper (creating, processing, storing, etc...)

One aspect of what I'm trying to change seems like a wonderful candidate for
a custom outlook message form.

Here's the parameters:
1. The email body contains several defined fields that I have already set
up and it works ok.
2. Clients need to be able to attach a few files of different types to the
email - I've been able to get that to work as well.

Here's where it gets weird:

3. I have a command button that needs to do the following:
a. Open a file picker type control that lists only those files attached
to the email.
b. Once the file is selected, the targeted file is opened and parsed
according to logic already developed (though tremendously inefficient I'm
betting), with the data from each of the fields on the email form appended to
each line of the parsed file.
c. Once done, the file needs to be saved as a Tab delimited text file and
attached to the message form.

I can provide samples of the text files, the forms as they exist to date,
and the parsing logic - whatever you need.

To someone who can help me with this I can offer only my thanks and probably
a Certificate of Appreciation from my Col and a Command Coin.

--
SFC Charlie Cox
595th/1189th Call Forward NCOIC
"Ex Chaos Ordo"
  #2  
Old March 10th 06, 01:10 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Complete Noob Here - Outlook Form - Concept

There are some prerequisites to making a custom message form work. Before you start designing, work down this check list:

1) All people using the form -- both senders and recipients -- work inside the same organization and use Outlook for mail, not Outlook Web Access, but the Outlook that comes with Office.

2) You have permission to publish a message form to the Organizational Forms library on the Exchange mail server. Or, you are dealing with a small enough group of users that you can get each of them to publish your form to their own Personal Forms library.

If you have those, then you can tackle your task #3. I'd do it by putting come in the form's Open event handler to populate a list or combo box with the names of the file attachments. You can then have a command button on the form to do whatever you need to do with the file that the user selects. Remember that the only thing you can do with an attachment in Outlook is save it as a file. Once you save it as a file, you can use techniques appropriate to that type of file to work with its data. For a text file, a good choice is the FileSystemObject library; see http://www.outlookcode.com/d/vbscript.htm#fso .
--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"SFC Charlie Cox" wrote in message ...
Here in Kuwait, we are moving all kinds of cargo in and out of theater (as
you might imagine).

I took over this post a few months ago and found that I was quickly mired in
paper (creating, processing, storing, etc...)

One aspect of what I'm trying to change seems like a wonderful candidate for
a custom outlook message form.

Here's the parameters:
1. The email body contains several defined fields that I have already set
up and it works ok.
2. Clients need to be able to attach a few files of different types to the
email - I've been able to get that to work as well.

Here's where it gets weird:

3. I have a command button that needs to do the following:
a. Open a file picker type control that lists only those files attached
to the email.
b. Once the file is selected, the targeted file is opened and parsed
according to logic already developed (though tremendously inefficient I'm
betting), with the data from each of the fields on the email form appended to
each line of the parsed file.
c. Once done, the file needs to be saved as a Tab delimited text file and
attached to the message form.

I can provide samples of the text files, the forms as they exist to date,
and the parsing logic - whatever you need.

To someone who can help me with this I can offer only my thanks and probably
a Certificate of Appreciation from my Col and a Command Coin.

--
SFC Charlie Cox
595th/1189th Call Forward NCOIC
"Ex Chaos Ordo"

  #3  
Old March 12th 06, 07:35 AM posted to microsoft.public.outlook.program_forms
SFC Charlie Cox
external usenet poster
 
Posts: 6
Default Complete Noob Here - Outlook Form - Concept

1. Thank you so much for your time, if we can get this to go, it will save
us much time and headaches.

2. On your points 1 and 2, I have checked with our S-6 (thats Army slang
for the Command Staff Combat Geeks) and verified that item your item 1 is
satisfied. On item 2, I have to present buy-in from the players and our
Commander, plus a project file containing samples, functional specs, and
source code for their security inspection and approval. This is not a
problem, I can do that.

3. On your point three, I'm not certain if you intended this - but you
caused me to rethink part of my flow process. Instead of having the TC/AIMS
personnel (those who would create the message and actually attach the files
and send the message) fire the code that would process the file, I can have
the code on the read page and have the recipients do that processing.

Additionally, you mentioned that the only thing Outlook can do with a file
is save it as a file. Does that mean code embedded in the form cannot open
the file, parse it with the additional data from the form and then save the
file with a different (user specified) name?
  #4  
Old March 13th 06, 12:20 AM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Complete Noob Here - Outlook Form - Concept

No, it just means that the code to process the file isn't Outlook automation code. It may be code running behind an Outlook form, but it's using programming libraries other than Outlook.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"SFC Charlie Cox" wrote in message ...

Additionally, you mentioned that the only thing Outlook can do with a file
is save it as a file. Does that mean code embedded in the form cannot open
the file, parse it with the additional data from the form and then save the
file with a different (user specified) name?

  #5  
Old March 14th 06, 09:46 AM posted to microsoft.public.outlook.program_forms
SFC Charlie Cox
external usenet poster
 
Posts: 6
Default Complete Noob Here - Outlook Form - Concept

Ok, I just wanted to be certain of the implication.

BTW, Mr. Kevin Lundquist says hello. He says you helped a few years ago
when he was in the Army and working on a form.
--
SFC Charlie Cox
595th/1189th Call Forward NCOIC
"Ex Chaos Ordo"


"Sue Mosher [MVP-Outlook]" wrote:

No, it just means that the code to process the file isn't Outlook automation code. It may be code running behind an Outlook form, but it's using programming libraries other than Outlook.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"SFC Charlie Cox" wrote in message ...

Additionally, you mentioned that the only thing Outlook can do with a file
is save it as a file. Does that mean code embedded in the form cannot open
the file, parse it with the additional data from the form and then save the
file with a different (user specified) name?


  #6  
Old March 14th 06, 03:41 PM posted to microsoft.public.outlook.program_forms
SFC Charlie Cox
external usenet poster
 
Posts: 6
Default Complete Noob Here - Outlook Form - Concept

Ok, this is now officially kicking my bahawmpuss (a southern term unique to
Down-Easters in North Carolina.

Anyway...I'm thinkng my logic for all this is fouled up and that's why I
can't figure out how to do what I want to do. (Dismissing of course the very
real possibility that when it comes to stuff like this I'm little more than a
babbling idiot - perhaps not even babbling)

Let me try a different tack.

I can select the attachment and save that where I want, no problem.

I can save the email itself as a text file where I want, no problem.

How difficult would it be to get outlook to combine the two (appending the
text version of the email data to the attachment file) and then save the
combined file?

Does that make any sense to you? Then I can use the Excel logic I've
already developed to parse the data.


"Sue Mosher [MVP-Outlook]" wrote:

No, it just means that the code to process the file isn't Outlook automation code. It may be code running behind an Outlook form, but it's using programming libraries other than Outlook.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"SFC Charlie Cox" wrote in message ...

Additionally, you mentioned that the only thing Outlook can do with a file
is save it as a file. Does that mean code embedded in the form cannot open
the file, parse it with the additional data from the form and then save the
file with a different (user specified) name?


  #7  
Old March 14th 06, 05:11 PM posted to microsoft.public.outlook.program_forms
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Complete Noob Here - Outlook Form - Concept

Gee, I never heard that one in all the time I spent in Morehead City/Beaufort. g Say hey to Kevin for me.

Back to your attachments issue: The devil is in the details, and the details in this case are -- what kind of file is the attachment? If it's a text file, it's a pretty simple operation to use FileSystemObject methods (http://www.microsoft.com/technet/scr..._scr_xfxi.mspx) to append to a text file. In other words, it's not Outlook that has methods for combining text data, it's FileSystemObject. And you can automate FSO in Outlook code just as you can automate Outlook or Excel or any other application with a programming library.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"SFC Charlie Cox" wrote in message ...
Ok, this is now officially kicking my bahawmpuss (a southern term unique to
Down-Easters in North Carolina.

Let me try a different tack.

I can select the attachment and save that where I want, no problem.

I can save the email itself as a text file where I want, no problem.

How difficult would it be to get outlook to combine the two (appending the
text version of the email data to the attachment file) and then save the
combined file?

Does that make any sense to you? Then I can use the Excel logic I've
already developed to parse the data.


"Sue Mosher [MVP-Outlook]" wrote:

No, it just means that the code to process the file isn't Outlook automation code. It may be code running behind an Outlook form, but it's using programming libraries other than Outlook.

"SFC Charlie Cox" wrote in message ...

Additionally, you mentioned that the only thing Outlook can do with a file
is save it as a file. Does that mean code embedded in the form cannot open
the file, parse it with the additional data from the form and then save the
file with a different (user specified) name?


  #8  
Old March 14th 06, 03:42 PM posted to microsoft.public.outlook.program_forms
SFC Charlie Cox
external usenet poster
 
Posts: 6
Default Complete Noob Here - Outlook Form - Concept

Ok, this is now officially kicking my bahawmpuss (a southern term unique to
Down-Easters in North Carolina.

Anyway...I'm thinkng my logic for all this is fouled up and that's why I
can't figure out how to do what I want to do. (Dismissing of course the very
real possibility that when it comes to stuff like this I'm little more than a
babbling idiot - perhaps not even babbling)

Let me try a different tack.

I can select the attachment and save that where I want, no problem.

I can save the email itself as a text file where I want, no problem.

How difficult would it be to get outlook to combine the two (appending the
text version of the email data to the attachment file) and then save the
combined file?

Does that make any sense to you? Then I can use the Excel logic I've
already developed to parse the data.


"Sue Mosher [MVP-Outlook]" wrote:

No, it just means that the code to process the file isn't Outlook automation code. It may be code running behind an Outlook form, but it's using programming libraries other than Outlook.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


"SFC Charlie Cox" wrote in message ...

Additionally, you mentioned that the only thing Outlook can do with a file
is save it as a file. Does that mean code embedded in the form cannot open
the file, parse it with the additional data from the form and then save the
file with a different (user specified) name?


 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Checking a TASK to complete Richard Edwards Outlook - General Queries 2 February 28th 06 10:25 AM
business contact manager for outlook could not complete your last. Mike Outlook - Using Contacts 0 February 2nd 06 03:28 PM
Proof of concept question for Outlook customization [email protected] Outlook - Using Forms 1 February 1st 06 11:41 PM
Complete Outlook 2003 Uninstall jbelyea Outlook - Installation 2 January 24th 06 08:38 PM
Find complete path for Outlook 2003 address book Russell Resweber Outlook - Using Contacts 1 January 14th 06 05:02 PM


All times are GMT +1. The time now is 07:24 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.