if ( (( a[i] >= '0' ) && ( a[i] <= '9' )) || ( a[i] == ',' ) || ( a[i] == '#' ) )
Word.Application application = new Word.Application();
Object missing = Type.Missing;
application.Documents.Add(ref missing, ref missing, ref missing, ref missing);
Clipboard.SetImage(pictureBox1.Image);
application.ActiveDocument.Paragraphs[1].Range.Paste();
application.Visible = true;