If you want to do this job connect your gmail account using Microsoft Outlook Express and then create a windows application using c# refer Microsoft.Office.Interop.Outlook.dll and the monitor your mail and display those things in your Form.
Ganesh Kumar Kaki
Posts
-
Gmail inbox retrive -
run project in networkHi everyone, I'm also facing same kind of problem. Any help would be appreciate.
-
How to communicate to a device via serial portFollowing is the general way to interact with your COM Port
try { sp.PortName = "COM1"; sp.BaudRate = 9600; sp.DataBits = 8; sp.Parity = Parity.None; sp.StopBits = StopBits.One; sp.DataReceived += new SerialDataReceivedEventHandler(read\_data);//read\_data is the method fired when ever your serailport filled with some data sp.Open(); sp.Write("AT" + Environment.NewLine); } catch (Exception ex) { MessageBox.Show(ex.Message); }
-
to close connection to database after i use or not ?Don't be expensive. Close the connection when ever your process is over!! :laugh:
-
"Client & Server"Hi, For sending any request from one computer to another you have to use socket programming. And according to the present problem you are facing you have to use IPAddress of the system to which you want to communicate :-O
-
C# WarningsHi Paste your code snippet if you have. According to the information you provided i can guess that you are forgot to refer your dll. :doh:
-
how to separate date and time from a stringIt's very easy First store the entire string in a string variable and then use the split method and assign it to a character array
split(",,")
and from that array fetch the appropriate value likestring s="+CMGR: "REC READ","+923365483536",,"10/09/15,08:16:11+20";
char[] temp=s.split(",,");
now your temp[1] consists both time and date.
if you want separate both use the same technique. -
exe giving exception while running on xpwhich exception it is throwing?
-
hi need help plzzzzzzzzzHi, For your need follow these steps. 1.create a connection with your database 2.create an sql command to fetch the values from your database 3.next, fill the values in a datatable 4.and then bind those values to your grid
-
thread.interrupt only working oncecheck out once that may be your form_load event called many times..
-
C# sessionTell me what you want to do exactly? Generally sessions are related ASP.NET Tell me exactly what type of application you wanna create.