SlideShare una empresa de Scribd logo
1 de 11
Descargar para leer sin conexión
บทปฏิบัติการวิชา 204204 การออกแบบและพัฒนาฐานขอมูล
                         เรื่องการพัฒนาฐานขอมูลโดยการใชโปรแกรม Microsoft Visual Basic 2005 Express Edition

                 วัตถุประสงค
                          1. นักศึกษาสามารถใชงานโปรแกรม Microsoft Visual Basic 2005 Express Edition ได
                          2. นักศึกษาสามารถประยุกตและใชงาน Microsoft Visual Basic 2005 Express Edition รวมกับ
                              ฐานขอมูล SQL 2005 ได

                 ขั้นตอนการปฏิบัติ
                         1. สรางฐานขอมูล dbsutstore.mdb จากโปรแกรม SQL Server Management Studio Express
                         2. ประยุกตใชเครื่องมือตางๆในโปรแกรมและเชื่อมตอฐานขอมูล
                         3. เพิ่ม ลบ และเรียกดูขอมูลในฐานขอมูล
                         4. ออกแบบหนาจอแสดงรายการสั่งซื้อสินคา และสามารถสั่งซื้อสินคาโดยเชื่อมตอกับฐานขอมูลได

                 1. สรางฐานขอมูล dbsutstore.mdb จากโปรแกรม SQL Server Management Studio Express
                           1.1 นํา SQL Statement ดานลางไปสรางฐานขอมูล dbsutstore.mdb

                 CREATE DATABASE dbsutstore
                 ON PRIMARY
                 (
                   NAME=dbsutstore_DAT,
                   FILENAME='C:SQLdbsutstore.mdf',
                   SIZE=4,
                   MAXSIZE=20,
                   FILEGROWTH=1
                 )
                 LOG ON
                 (
                   NAME= dbsutstore_LOG,
                   FILENAME='C:SQLdbsutstore.ldf',
                   SIZE=2,
                   MAXSIZE=5,
                   FILEGROWTH=1
                 )




PDF created with pdfFactory trial version www.pdffactory.com
CREATE TABLE CUSTOMER
                 (
                       custID char(4) NOT NULL,
                       custName nvarchar(50) NOT NULL,
                       cusAddress nvarchar(50) NOT NULL,
                       cusZipCode char(5) NOT NULL,
                       cusTel char(13) NOT NULL,
                       constraint CUSTOMER_custID_pk primary key (custID)
                 )
                 CREATE TABLE PRODUCT
                 (
                       proID char(4) NOT NULL,
                       ProName nchar(30) NOT NULL,
                       proPrice int NOT NULL,
                       proDes ntext NULL,
                       constraint PRODUCT_proID_pk primary key (proID)
                 )
                 CREATE TABLE EMPLOYEE
                 (
                       emID char(4) NOT NULL,
                       emName nvarchar(50) NOT NULL,
                       emPosition varchar(50) NOT NULL,
                       emAddress nvarchar(50) NOT NULL,
                       emZipCode char(5) NOT NULL,
                       emTel char(13) NOT NULL,
                       emSalary int NOT NULL,
                       constraint EMPLOYEE_emID_pk primary key (emID)
                 )
                 CREATE TABLE ORDERS
                 (
                       proID char(4) NOT NULL,
                       proName nchar(30) NOT NULL,
                       proPrice int NOT NULL,
                       proCount int not null,
                       sumPrice int NOT NULL,
                       constraint proID_fk foreign key (proID)references product(proID)
                 )




PDF created with pdfFactory trial version www.pdffactory.com
insert into customer(custID,custName,cusAddress,cusZipCode,cusTel)
                 values('0001','aree','213 maung nakhorn-ratsrima','30000','044224597')
                 insert into customer(custID,custName,cusAddress,cusZipCode,cusTel)
                 values('0002','somchai','111 suranaree','31000','0854789999')
                 insert into customer(custID,custName,cusAddress,cusZipCode,cusTel)
                 values('0003','nakhon','99 phayathai bangkok','10110','0814789652')
                 insert into customer(custID,custName,cusAddress,cusZipCode,cusTel)
                 values('0004','satidchock','123 silom bangrak bangkok','10500','0894567899')
                 insert into customer(custID,custName,cusAddress,cusZipCode,cusTel)
                 values('0005','varinth','455 maung nakhorn-ratsrima','30000','0874123654')

                 insert into product(proID,proName,proPrice,proDes)
                 values ('100','tata young mai      ',' 600','hot concert very sexy')
                 insert into product(proID,proName,proPrice,proDes)
                 values ('200','academy fantasia3',' 500','mix all af3')
                 insert into product(proID,proName,proPrice,proDes)
                 values ('300','princess hours ','1200','very cute')
                 insert into product(proID,proName,proPrice,proDes)
                 values ('400','clash clash clash ',' 300','new album')

                 insert into employee(emID,emName,emPosition,emAddress,emZipCode,emTel,emSalary)
                 values ('1111','vasanchai','salesman','145 maung nakhorn-ratsrima','30000','0845253322','12000')
                 insert into employee(emID,emName,emPosition,emAddress,emZipCode,emTel,emSalary)
                 values ('2222','pattra','salesman','123 maung khonkan','40000','0877745687','18000')
                 insert into employee(emID,emName,emPosition,emAddress,emZipCode,emTel,emSalary)
                 values ('3333','sutthida','manager','11 sukumvit bangkok','10200','0811145622','35000')




PDF created with pdfFactory trial version www.pdffactory.com
2. การเชื่อมตอฐานขอมูล
                            2.1 เรียกใชโปรแกรม Microsoft Visual Basic 2005 Express Edition
                          ใหทําการสราง Project ใหมโดย ไปเลือกที่เมนู File >> New Projects และเลือกที่ Windows
                 Application ตั้งชื่อโปรเจคใหมเปน SUTSTORE_B487XXXX ในชอง Name




                          2.2 ออกแบบฟอรมแสดงขอมูลดังนี้




PDF created with pdfFactory trial version www.pdffactory.com
2.3 ทําการเขียน Code เชื่อมตอฐานขอมูล โดย ดับเบิ้ลคลิก ที่ form




                       2.4 ดับเบิ้ลคลิกที่ปุม add เพื่อเคลียรคาใน TextBox และรับคา ขอมูลใหม




PDF created with pdfFactory trial version www.pdffactory.com
2.5 ดับเบิ้ลคลิกที่ปุม Save เพื่อบันทึกขอมูลใหมลงในฐานขอมูล




                       2.6 ดับเบิ้ลคลิกที่ปุม Delete เพื่อลบขอมูลออกจากฐานขอมูล




PDF created with pdfFactory trial version www.pdffactory.com
2.7 ดับเบิ้ลคลิกที่ปุม > เพื่อเลื่อนดูขอมูลใน record ถัดไป




                       2.8 ดับเบิ้ลคลิกที่ปุม Order> เพื่อไปยังฟอรมการสั่งซื้อสินคา
                 Private Sub ButtonOrder_Click(ByVal sender As System.Object, ByVal e
                 As System.EventArgs) Handles ButtonOrder.Click
                         Form2.Show()
                 End Sub


                       2.9 ปดการเชื่อมตอฐานขอมูล ที่ event > form closed
                 Private Sub Form1_FormClosed(ByVal sender As System.Object, ByVal e
                 As System.Windows.Forms.FormClosedEventArgs) Handles
                 MyBase.FormClosed
                         ' call Close when exit.
                         sqlReader.Close()

                         ' Close the connection when done with it.
                         sqlConnection.Close()
                     End Sub




PDF created with pdfFactory trial version www.pdffactory.com
3. ออกแบบหนาจอแสดงรายการสั่งซื้อสินคา และสามารถสั่งซื้อสินคาโดยเชื่อมตอกับฐานขอมูล
                         3.1 ออกแบบหนาจอแสดงรายการสั่งซื้อสินคา




                        3.2 เขียนโปรแกรมสั่งซื้อสินคา- เมื่อปอน รหัสสินคา และจํานวนการสั่งสินคา จากนั้นคลิกที่ป ุม
                 Check จะแสดงขอมูลชื่อสินคา ราคาตอหนวย และ ราคาสุท ธิ ของสินคาแตละรายการ




PDF created with pdfFactory trial version www.pdffactory.com
- เมื่อลูกคาตกลงที่จะซื้อสินคา ใหคลิกที่ปุม Add Order เพื่อเพิ่มรายการการสั่งซื้อลงไปใน
                 listbox1




                        - จากนั้นยืนยันการสั่งซื้อโดยคลิกที่ป ุม Insert Order to table เปนการบันทึกขอมูลการสั่งซื้อลง
                 ในฐานขอมูล ตาราง Order




PDF created with pdfFactory trial version www.pdffactory.com
PDF created with pdfFactory trial version www.pdffactory.com
PDF created with pdfFactory trial version www.pdffactory.com

Más contenido relacionado

Destacado

Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Applitools
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at WorkGetSmarter
 
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...DevGAMM Conference
 
Barbie - Brand Strategy Presentation
Barbie - Brand Strategy PresentationBarbie - Brand Strategy Presentation
Barbie - Brand Strategy PresentationErica Santiago
 
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them wellGood Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them wellSaba Software
 

Destacado (20)

Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 
ChatGPT webinar slides
ChatGPT webinar slidesChatGPT webinar slides
ChatGPT webinar slides
 
More than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike RoutesMore than Just Lines on a Map: Best Practices for U.S Bike Routes
More than Just Lines on a Map: Best Practices for U.S Bike Routes
 
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
Ride the Storm: Navigating Through Unstable Periods / Katerina Rudko (Belka G...
 
Barbie - Brand Strategy Presentation
Barbie - Brand Strategy PresentationBarbie - Brand Strategy Presentation
Barbie - Brand Strategy Presentation
 
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them wellGood Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
Good Stuff Happens in 1:1 Meetings: Why you need them and how to do them well
 

Connect SQL via VisualStudio2005 part1

  • 1. บทปฏิบัติการวิชา 204204 การออกแบบและพัฒนาฐานขอมูล เรื่องการพัฒนาฐานขอมูลโดยการใชโปรแกรม Microsoft Visual Basic 2005 Express Edition วัตถุประสงค 1. นักศึกษาสามารถใชงานโปรแกรม Microsoft Visual Basic 2005 Express Edition ได 2. นักศึกษาสามารถประยุกตและใชงาน Microsoft Visual Basic 2005 Express Edition รวมกับ ฐานขอมูล SQL 2005 ได ขั้นตอนการปฏิบัติ 1. สรางฐานขอมูล dbsutstore.mdb จากโปรแกรม SQL Server Management Studio Express 2. ประยุกตใชเครื่องมือตางๆในโปรแกรมและเชื่อมตอฐานขอมูล 3. เพิ่ม ลบ และเรียกดูขอมูลในฐานขอมูล 4. ออกแบบหนาจอแสดงรายการสั่งซื้อสินคา และสามารถสั่งซื้อสินคาโดยเชื่อมตอกับฐานขอมูลได 1. สรางฐานขอมูล dbsutstore.mdb จากโปรแกรม SQL Server Management Studio Express 1.1 นํา SQL Statement ดานลางไปสรางฐานขอมูล dbsutstore.mdb CREATE DATABASE dbsutstore ON PRIMARY ( NAME=dbsutstore_DAT, FILENAME='C:SQLdbsutstore.mdf', SIZE=4, MAXSIZE=20, FILEGROWTH=1 ) LOG ON ( NAME= dbsutstore_LOG, FILENAME='C:SQLdbsutstore.ldf', SIZE=2, MAXSIZE=5, FILEGROWTH=1 ) PDF created with pdfFactory trial version www.pdffactory.com
  • 2. CREATE TABLE CUSTOMER ( custID char(4) NOT NULL, custName nvarchar(50) NOT NULL, cusAddress nvarchar(50) NOT NULL, cusZipCode char(5) NOT NULL, cusTel char(13) NOT NULL, constraint CUSTOMER_custID_pk primary key (custID) ) CREATE TABLE PRODUCT ( proID char(4) NOT NULL, ProName nchar(30) NOT NULL, proPrice int NOT NULL, proDes ntext NULL, constraint PRODUCT_proID_pk primary key (proID) ) CREATE TABLE EMPLOYEE ( emID char(4) NOT NULL, emName nvarchar(50) NOT NULL, emPosition varchar(50) NOT NULL, emAddress nvarchar(50) NOT NULL, emZipCode char(5) NOT NULL, emTel char(13) NOT NULL, emSalary int NOT NULL, constraint EMPLOYEE_emID_pk primary key (emID) ) CREATE TABLE ORDERS ( proID char(4) NOT NULL, proName nchar(30) NOT NULL, proPrice int NOT NULL, proCount int not null, sumPrice int NOT NULL, constraint proID_fk foreign key (proID)references product(proID) ) PDF created with pdfFactory trial version www.pdffactory.com
  • 3. insert into customer(custID,custName,cusAddress,cusZipCode,cusTel) values('0001','aree','213 maung nakhorn-ratsrima','30000','044224597') insert into customer(custID,custName,cusAddress,cusZipCode,cusTel) values('0002','somchai','111 suranaree','31000','0854789999') insert into customer(custID,custName,cusAddress,cusZipCode,cusTel) values('0003','nakhon','99 phayathai bangkok','10110','0814789652') insert into customer(custID,custName,cusAddress,cusZipCode,cusTel) values('0004','satidchock','123 silom bangrak bangkok','10500','0894567899') insert into customer(custID,custName,cusAddress,cusZipCode,cusTel) values('0005','varinth','455 maung nakhorn-ratsrima','30000','0874123654') insert into product(proID,proName,proPrice,proDes) values ('100','tata young mai ',' 600','hot concert very sexy') insert into product(proID,proName,proPrice,proDes) values ('200','academy fantasia3',' 500','mix all af3') insert into product(proID,proName,proPrice,proDes) values ('300','princess hours ','1200','very cute') insert into product(proID,proName,proPrice,proDes) values ('400','clash clash clash ',' 300','new album') insert into employee(emID,emName,emPosition,emAddress,emZipCode,emTel,emSalary) values ('1111','vasanchai','salesman','145 maung nakhorn-ratsrima','30000','0845253322','12000') insert into employee(emID,emName,emPosition,emAddress,emZipCode,emTel,emSalary) values ('2222','pattra','salesman','123 maung khonkan','40000','0877745687','18000') insert into employee(emID,emName,emPosition,emAddress,emZipCode,emTel,emSalary) values ('3333','sutthida','manager','11 sukumvit bangkok','10200','0811145622','35000') PDF created with pdfFactory trial version www.pdffactory.com
  • 4. 2. การเชื่อมตอฐานขอมูล 2.1 เรียกใชโปรแกรม Microsoft Visual Basic 2005 Express Edition ใหทําการสราง Project ใหมโดย ไปเลือกที่เมนู File >> New Projects และเลือกที่ Windows Application ตั้งชื่อโปรเจคใหมเปน SUTSTORE_B487XXXX ในชอง Name 2.2 ออกแบบฟอรมแสดงขอมูลดังนี้ PDF created with pdfFactory trial version www.pdffactory.com
  • 5. 2.3 ทําการเขียน Code เชื่อมตอฐานขอมูล โดย ดับเบิ้ลคลิก ที่ form 2.4 ดับเบิ้ลคลิกที่ปุม add เพื่อเคลียรคาใน TextBox และรับคา ขอมูลใหม PDF created with pdfFactory trial version www.pdffactory.com
  • 6. 2.5 ดับเบิ้ลคลิกที่ปุม Save เพื่อบันทึกขอมูลใหมลงในฐานขอมูล 2.6 ดับเบิ้ลคลิกที่ปุม Delete เพื่อลบขอมูลออกจากฐานขอมูล PDF created with pdfFactory trial version www.pdffactory.com
  • 7. 2.7 ดับเบิ้ลคลิกที่ปุม > เพื่อเลื่อนดูขอมูลใน record ถัดไป 2.8 ดับเบิ้ลคลิกที่ปุม Order> เพื่อไปยังฟอรมการสั่งซื้อสินคา Private Sub ButtonOrder_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonOrder.Click Form2.Show() End Sub 2.9 ปดการเชื่อมตอฐานขอมูล ที่ event > form closed Private Sub Form1_FormClosed(ByVal sender As System.Object, ByVal e As System.Windows.Forms.FormClosedEventArgs) Handles MyBase.FormClosed ' call Close when exit. sqlReader.Close() ' Close the connection when done with it. sqlConnection.Close() End Sub PDF created with pdfFactory trial version www.pdffactory.com
  • 8. 3. ออกแบบหนาจอแสดงรายการสั่งซื้อสินคา และสามารถสั่งซื้อสินคาโดยเชื่อมตอกับฐานขอมูล 3.1 ออกแบบหนาจอแสดงรายการสั่งซื้อสินคา 3.2 เขียนโปรแกรมสั่งซื้อสินคา- เมื่อปอน รหัสสินคา และจํานวนการสั่งสินคา จากนั้นคลิกที่ป ุม Check จะแสดงขอมูลชื่อสินคา ราคาตอหนวย และ ราคาสุท ธิ ของสินคาแตละรายการ PDF created with pdfFactory trial version www.pdffactory.com
  • 9. - เมื่อลูกคาตกลงที่จะซื้อสินคา ใหคลิกที่ปุม Add Order เพื่อเพิ่มรายการการสั่งซื้อลงไปใน listbox1 - จากนั้นยืนยันการสั่งซื้อโดยคลิกที่ป ุม Insert Order to table เปนการบันทึกขอมูลการสั่งซื้อลง ในฐานขอมูล ตาราง Order PDF created with pdfFactory trial version www.pdffactory.com
  • 10. PDF created with pdfFactory trial version www.pdffactory.com
  • 11. PDF created with pdfFactory trial version www.pdffactory.com