473,385 Members | 2,028 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,385 software developers and data experts.

Would this be easy to do??

I am not an access expert, could anyone tell me if the following would be
easy to do??

I receive emails from a specific email address, that advise me if a specific
piece of equipment my company maintains has failed. I also then get emails
telling me when this equipment is back working again.

All of this information is held within the body of the email.

I would like to make this more graphical instead of filtering through
emails. Since it is the same piece of equipment but at numerous locations,
I would like to create an access form with buttons for all of these
locations on, but for the colour of these buttons to change dependent upon
its status. e.g an email arrives saying equipment at location A has
failed - the button goes red - email arrives saing equipment at location A
is now working again, button goes green.

Is there an easy wav to do this?

many thanks for an advice you can give

Rick

--
visit www.east4adventure.org.uk/snorkel
Mar 14 '08 #1
4 1752
Only way I can imagine doing this is with coding, VBA. I am guessing
you use Outlook for email. You would need to establish a connection
between Outlook and Access. Maybe you can make a rule in the Outlook
rules wizard that sends those emails to a folder, and have the VBA
code trigger anytime an email goes to that folder. They are probably
a couple of ways to do this, but I don't see anything that doesn't
involve coding such as VBA. Hence, not easy to do.

On Mar 14, 10:59 am, "Rick Stevens" <rick-stev...@ntlworld.comwrote:
I am not an access expert, could anyone tell me if the following would be
easy to do??

I receive emails from a specific email address, that advise me if a specific
piece of equipment my company maintains has failed. I also then get emails
telling me when this equipment is back working again.

All of this information is held within the body of the email.

I would like to make this more graphical instead of filtering through
emails. Since it is the same piece of equipment but at numerous locations,
I would like to create an access form with buttons for all of these
locations on, but for the colour of these buttons to change dependent upon
its status. e.g an email arrives saying equipment at location A has
failed - the button goes red - email arrives saing equipment at location A
is now working again, button goes green.

Is there an easy wav to do this?

many thanks for an advice you can give

Rick

--
visitwww.east4adventure.org.uk/snorkel
Mar 14 '08 #2
Thanks for that Julio , I thought it didnt sound like beginners stuff.

Anyone have any ideas how this scenario could be easily accomplished? It
doesnt have to be in access, could be a webpage or anything

cheers

Rick

--
visit www.east4adventure.org.uk/snorkel
"Julio" <sd******@gmail.comwrote in message
news:95**********************************@m44g2000 hsc.googlegroups.com...
Only way I can imagine doing this is with coding, VBA. I am guessing
you use Outlook for email. You would need to establish a connection
between Outlook and Access. Maybe you can make a rule in the Outlook
rules wizard that sends those emails to a folder, and have the VBA
code trigger anytime an email goes to that folder. They are probably
a couple of ways to do this, but I don't see anything that doesn't
involve coding such as VBA. Hence, not easy to do.

On Mar 14, 10:59 am, "Rick Stevens" <rick-stev...@ntlworld.comwrote:
>I am not an access expert, could anyone tell me if the following would be
easy to do??

I receive emails from a specific email address, that advise me if a
specific
piece of equipment my company maintains has failed. I also then get
emails
telling me when this equipment is back working again.

All of this information is held within the body of the email.

I would like to make this more graphical instead of filtering through
emails. Since it is the same piece of equipment but at numerous
locations,
I would like to create an access form with buttons for all of these
locations on, but for the colour of these buttons to change dependent
upon
its status. e.g an email arrives saying equipment at location A has
failed - the button goes red - email arrives saing equipment at location
A
is now working again, button goes green.

Is there an easy wav to do this?

many thanks for an advice you can give

Rick

--
visitwww.east4adventure.org.uk/snorkel

Mar 14 '08 #3
"Rick Stevens" <ri**********@ntlworld.comwrote in message
news:Ip*****************@newsfe3-win.ntli.net...
I am not an access expert, could anyone tell me if the following would be
easy to do??

I receive emails from a specific email address, that advise me if a
specific
piece of equipment my company maintains has failed. I also then get
emails
telling me when this equipment is back working again.

All of this information is held within the body of the email.

I would like to make this more graphical instead of filtering through
emails. Since it is the same piece of equipment but at numerous
locations,
I would like to create an access form with buttons for all of these
locations on, but for the colour of these buttons to change dependent upon
its status. e.g an email arrives saying equipment at location A has
failed - the button goes red - email arrives saing equipment at location A
is now working again, button goes green.

Is there an easy wav to do this?

many thanks for an advice you can give
There is plenty of info on connecting Access to email programs and
processing messages. It depends on what program you use - if it's webmail
then I wouldn't have a clue but else you can definitely parse emails with
some code. It should be fairly straightforward if the data is consistent
and the code to change the buttons is trivial.
It would be worth thinking of what fields you want to capture, then you
might expand the program with a few useful reports e.g failure over time
etc.
Mar 14 '08 #4
DFS
Rick Stevens wrote:
I am not an access expert, could anyone tell me if the following
would be easy to do??

I receive emails from a specific email address, that advise me if a
specific piece of equipment my company maintains has failed. I also
then get emails telling me when this equipment is back working again.

All of this information is held within the body of the email.

I would like to make this more graphical instead of filtering through
emails. Since it is the same piece of equipment but at numerous
locations, I would like to create an access form with buttons for all
of these locations on, but for the colour of these buttons to change
dependent upon its status. e.g an email arrives saying equipment at
location A has failed - the button goes red - email arrives saing
equipment at
location A is now working again, button goes green.

Is there an easy wav to do this?
Won't be easy if you're inexperienced with Access/Outlook/VBA. But
straightforward enough.

First, it would be nice if the email had a standardized subject line, such
as "Equipment Status: <Location# or Location Name>:<Equipment Status>". If
not you'll have a much harder time parsing the data.

Depending on how many locations you have, a button for each location on a
form may be a lot of trouble to write and maintain. So you might just use a
database table with location name, equipment status, status change date,
comments, etc. Then display this data in a datasheet view.

Loc1 Operational 3/12/08 12:23:35pm
Loc2 Operational 3/13/08 1:21:22pm
Loc3 Failed 3/14/08 19:03:03pm
Loc4 Operational 3/10/08 01:01:03am
Now you just need to write some code to read from an Outlook inbox, look for
items with "Equipment Status" as the first 16 characters of the Subject
line, get the location and status right from the subject, and update your
table and refresh the screen.

In your code module, set a Reference to the Microsoft Outlook 11 Object
Library (that's for Outlook 2003).

=================================================
Attach code like this to a form

Public Sub checkEquipStatus()

'OUTLOOK OBJECTS AND VARS
Dim olApp As New Outlook.Application
Dim olMailbox As Object, olSourceFolder As Object
Dim olItems As Outlook.Items
Dim subjectStr As String, subjectLen As Byte
Dim i As Integer, j As Integer, k As Integer
Dim location As String, equipStatus As String

'REFERENCES TO OUTLOOK FOLDERS
Set olMailbox = olApp.GetNamespace("MAPI").Folders("Mailbox - Stevens,
Rick")
Set olSourceFolder = olMailbox.Folders("Inbox")

'ITERATE FOLDER CONTENTS
Set olItems = olSourceFolder.Items
k = olItems.Count
For j = 1 To k

'ENSURE OUTLOOK EMAIL SUBJECT MATCHES ENTRY FROM TABLE
If Left(olItems(j).Subject, 16) <"Equipment Status" Then GoTo
nextEmail

'PARSE LOCATION AND STATUS FROM EMAIL SUBJECT LINE
'example: Equipment Status: Atlanta - Failed
'NOTE: you'll have to figure this out how to use Mid and InStr
location = Mid(olItems(j).Subject,19,7)
equipStatus = Mid(olItems(j).Subject,29,6)

'UPDATE YOUR TABLE
db.Execute("UPDATE Table SET Status = '" & equipStatus & "' WHERE
Location = '" & location & "';")

'NEXT EMAIL IN INBOX
nextEmail:
Next j
'CLOSE OUTLOOK OBJECTS
Set olItems = Nothing
Set olMailbox = Nothing
Set olSourceFolder = Nothing

'IN A Text FIELD ON THE FORM YOU CAN RECORD THE LAST TIME YOU CHECKED EMAILS
Me.txtStatusUpdate = Now()

'UPDATE THE SCREEN TO SHOW LATEST STATUS
Me.datasheetName.Requery

End Sub
=================================================

You could leave the Access system running, with your status form that has
settings in the TimerInterval and OnTimer event, and have it run that code
to check for emails every 5, 10, 20, 30 minutes, etc. Whatever time period
you need.

Set the TimerInterval = 1000x the number of seconds, so a 5 minute interval
= 300000
The pseudocode for the OnTimer event might look like this:

If Now - Me.txtStatusUpdate 15 minutes Then
call checkEquipStatus
End If

Enjoy!

Mar 15 '08 #5

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

Similar topics

24
by: Charif Lakchiri | last post by:
Okay, here's what I know so far about Python: It's an object-oriented scripting language, supported on many platforms. Now here are my questions: It is easy to learn? Does it support GUI...
39
by: Antoon Pardon | last post by:
I was wondering how people would feel if the cmp function and the __cmp__ method would be a bit more generalised. The problem now is that the cmp protocol has no way to indicate two objects are...
4
by: lkrubner | last post by:
I'd like to write a PHP script to be used from the command line on a Unix machine. I'd like for the script to put together a string, turn it into a web page, print it, then return control the...
19
by: Mountain | last post by:
I would like opinions on whether this solution could be important and whether anyone knows if it is already solved. (I would also like to know if anyone thinks it cannot be solved.) First, we...
7
by: Brave | last post by:
I am hoping for a code example of how to do this, and hopefully it will help me to see an easy way to code what seems to be a huge monster. I need to create a form that has two pulldown menues...
111
by: Enteng | last post by:
Hi I'm thinking about learning C as my first programming language. Would you recommend it? Also how do you suggest that I learn it?What books/tutorials should I read for someone like me? Thanks...
5
by: Ronald S. Cook | last post by:
I need ideas on how to best design a Windows form for my particular situation. On a cattle feeding yard there will be between about 300 and 600 pens. On my "Pen Feeding Sequence" form, I want...
4
by: Sanoski | last post by:
I'm pretty new to programming. I've just been studying a few weeks off and on. I know a little, and I'm learning as I go. Programming is so much fun! I really wish I would have gotten into it years...
7
by: adfghergaer | last post by:
First of all, I'm not a programmer. I'm here because I had an idea for a software program that my employer may hire someone to design, and I'm wondering what kind of investment it would take to hire...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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,...

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.