Plz help me
-
hi, i want design a windows application where i'll give a word document as input. from that document i have to separate only the email ids and store it in a separate file. how to start? anybody give me a clue or a skeleton of this task David Boon
-
hi, i want design a windows application where i'll give a word document as input. from that document i have to separate only the email ids and store it in a separate file. how to start? anybody give me a clue or a skeleton of this task David Boon
Hi, You will have to create temporary Word document object in your project. Then on some event like button click write code to attach the word document to this temporary object and use the object to send commands to word document. Now for the email addresses part, you can use the regular expression class Regex for that. just search for it in msdn. Anant Y. Kulkarni