Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,037

HOME > .NET Framework > Forum > vb.net ช่วยสอนทำ report หน่อยครับ ทำรายงาน report ใช้ฐานข้อมูล sql server 2005 อ่ะครับ คืออยากจะทำรายงานให้แสดงผมไปที่ word พอจะมีใครช่วยได้ไหมครับ



 

vb.net ช่วยสอนทำ report หน่อยครับ ทำรายงาน report ใช้ฐานข้อมูล sql server 2005 อ่ะครับ คืออยากจะทำรายงานให้แสดงผมไปที่ word พอจะมีใครช่วยได้ไหมครับ

 



Topic : 061093

Guest




ทำรายงาน report ใช้ฐานข้อมูล sql server 2005 อ่ะครับ คืออยากจะทำรายงานให้แสดงผมไปที่ word พอจะมีใครช่วยได้ไหมครับ



Tag : .NET, Ms SQL Server 2005, VB.NET







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2011-06-02 13:59:53 By : samurai View : 1119 Reply : 1
 

 

No. 1



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook

Code (VB.NET)
Imports Microsoft.Office.Interop.Word
Imports System.Data
Imports System.Data.OleDb
Public Class AspNetWordReport
Inherits System.Web.UI.Page

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

Const wdAlignParagraphCenter = 1
Const wdAlignParagraphRight = 2

Dim Wrd As New Microsoft.Office.Interop.Word.Application
Dim WrdDoc As Microsoft.Office.Interop.Word.Document
Dim MyRange1, MyRange2, MyRange3 As Microsoft.Office.Interop.Word.Range
Dim objTable As Microsoft.Office.Interop.Word.Table
Dim DocName As String = "MyDoc/MyWord.doc"
Dim intRows As Integer
Wrd.Application.Visible = False

WrdDoc = Wrd.Documents.Open(Server.MapPath("thaicreate.dot"))

MyRange1 = WrdDoc.Paragraphs.Add.Range
With MyRange1
.ParagraphFormat.Alignment = wdAlignParagraphCenter
.Font.Name = "Verdana"
.Font.Size = "20"
.Font.Bold = True
.InsertBefore("Customer Report" & vbCrLf)
End With

'*** DataTable ***'
Dim objConn As OleDbConnection
Dim objCmd As OleDbCommand
Dim dtAdapter As OleDbDataAdapter
Dim dt As New DataTable
Dim strConnString As String
strConnString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.MapPath("database/mydatabase.mdb") & ";Jet OLEDB:Database Password=;"
objConn = New OleDbConnection(strConnString)
objConn.Open()

Dim strSQL As String
strSQL = "SELECT * FROM customer"
dtAdapter = New OleDbDataAdapter(strSQL, objConn)
dtAdapter.Fill(dt)
dtAdapter = Nothing
objConn.Close()
objConn = Nothing
'*** (End) DataTable ***'

MyRange2 = WrdDoc.Paragraphs.Add.Range
With MyRange2
.Font.Size = "10"
End With
objTable = Wrd.ActiveDocument.Tables.Add(MyRange2, dt.Rows.Count, 6, 1, 2) '** Range,Rows,Column **'

'*** Header ***'
objTable.Cell(1, 1).Range.InsertAfter("CustomerID")
objTable.Cell(1, 1).Range.Bold = True
objTable.Cell(1, 1).Range.ParagraphFormat.Alignment = 1

objTable.Cell(1, 2).Range.InsertAfter("Name")
objTable.Cell(1, 2).Range.Bold = True
objTable.Cell(1, 2).Range.ParagraphFormat.Alignment = 1

objTable.Cell(1, 3).Range.InsertAfter("Email")
objTable.Cell(1, 3).Range.Bold = True
objTable.Cell(1, 3).Range.ParagraphFormat.Alignment = 1

objTable.Cell(1, 4).Range.InsertAfter("CountryCode")
objTable.Cell(1, 4).Range.Bold = True
objTable.Cell(1, 4).Range.ParagraphFormat.Alignment = 1

objTable.Cell(1, 5).Range.InsertAfter("Budget")
objTable.Cell(1, 5).Range.Bold = True
objTable.Cell(1, 5).Range.ParagraphFormat.Alignment = 1

objTable.Cell(1, 6).Range.InsertAfter("Used")
objTable.Cell(1, 6).Range.Bold = True
objTable.Cell(1, 6).Range.ParagraphFormat.Alignment = 1

'*** Detail ***
For intRows = 0 To dt.Rows.Count - 1
objTable.Cell(intRows + 2, 1).Range.InsertAfter(dt.Rows(intRows)("CustomerID"))
objTable.Cell(intRows + 2, 1).Range.ParagraphFormat.Alignment = 1

objTable.Cell(intRows + 2, 2).Range.InsertAfter(dt.Rows(intRows)("Name"))
objTable.Cell(intRows + 2, 2).Range.ParagraphFormat.Alignment = 0

objTable.Cell(intRows + 2, 3).Range.InsertAfter(dt.Rows(intRows)("Email"))
objTable.Cell(intRows + 2, 3).Range.ParagraphFormat.Alignment = 0

objTable.Cell(intRows + 2, 4).Range.InsertAfter(dt.Rows(intRows)("CountryCode"))
objTable.Cell(intRows + 2, 4).Range.ParagraphFormat.Alignment = 1

objTable.Cell(intRows + 2, 5).Range.InsertAfter(FormatNumber(dt.Rows(intRows)("Budget"), 2))
objTable.Cell(intRows + 2, 5).Range.ParagraphFormat.Alignment = 2

objTable.Cell(intRows + 2, 6).Range.InsertAfter(FormatNumber(dt.Rows(intRows)("Used"), 2))
objTable.Cell(intRows + 2, 6).Range.ParagraphFormat.Alignment = 2
Next


MyRange3 = WrdDoc.Paragraphs.Add.Range
With MyRange3
.ParagraphFormat.Alignment = wdAlignParagraphRight
.Font.Name = "Verdana"
.Font.Size = "10"
.InsertBefore(vbCrLf & vbCrLf & vbCrLf & "................................Manager" & vbCrLf & Now())
End With

WrdDoc.SaveAs(Server.MapPath(DocName))
Wrd.Application.Quit()
Wrd = Nothing 
End Sub
End Class



Go to : ASP.NET and Word (Word Application) - Word Document Sample Report






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2011-06-02 16:10:38 By : webmaster
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : vb.net ช่วยสอนทำ report หน่อยครับ ทำรายงาน report ใช้ฐานข้อมูล sql server 2005 อ่ะครับ คืออยากจะทำรายงานให้แสดงผมไปที่ word พอจะมีใครช่วยได้ไหมครับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 04
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่