|
|
|
การค้นหาข้อมูลรายละเอียดที่อยู่ในไฟล์ .PDF หรือ .WORD ภาษา c#.net winApp |
|
|
|
|
|
|
|
ทำได้ครับ ไล่อ่านทีละบรรทัดเลยครับ ถ้า ใช้ก็ ไฮไลท์ไว้ก็ได้ครับ ที่นิยมทำกัน
|
|
|
|
|
Date :
2011-08-17 22:47:43 |
By :
13crowns |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอ Link ตัวอย่างได้ไหมครับ ภาษาอะไรก็ได้ครับ
ถ้าเป็น C# จะดีมากครับ
ขอบคุณมาครับ คุณ Herriken
|
|
|
|
|
Date :
2011-08-17 23:17:27 |
By :
กิติพงษ์ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (C#)
object mis = Type.Missing;
object strFileName = (Object)"C:\\WordC\\Doc\\GenWord.doc";
object fileFormat = 1;
Object oTrue = true;
Object oFalse = false;
Word.Application oWord = new Word.Application();
Word.Document oWordDoc = new Word.Document();
oWord.Visible = true;
oWordDoc = oWord.Documents.Add(ref mis, ref mis, ref mis, ref mis);
oWord.Selection.TypeText("Welcome To www.ThaiCreate.Com");
oWordDoc.SaveAs(ref strFileName, ref fileFormat, ref mis, ref mis,
ref mis, ref mis, ref mis, ref mis, ref mis,
ref mis, ref mis, ref mis, ref mis, ref mis,
ref mis, ref mis);
oWordDoc.Close(ref oFalse, ref mis, ref mis);
oWord.Quit(ref mis, ref mis, ref mis);
GC.Collect();
Go to : C# .NET Create Word Document (Windows 7 and Office 2003 , Office Word 2007)
|
|
|
|
|
Date :
2011-09-08 22:31:24 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|