Online Reference |
Microsoft Reference |
|
|
DeleteControl, DeleteReportControl StatementAccess Statement, คำสั่ง DeleteControl Statement ใช้ลบตัว control บนฟอร์มที่ระบุ Access Statement, คำสั่ง DeleteReportControl Statement ใช้ลบตัว control บนรายงานที่ระบุ เช่น การกำหนด Procedure ให้ทำงานครั้งแรกเมื่อผู้ใช้ log on เข้าสู่ฐานข้อมูล โดยตั้งค่าคุณสมบัติ OnClick ให้กับปุ่มบนฟอร์มให้ Procedure เมื่อผู้ใช้ log on เข้ามาและ Procedure ทำงานแล้ว จะสามารถใช้คำสั่ง DeleteControl ลบปุ่มคำสั่งจากฟอร์มได้เมื่อปุ่มที่กำหนดไว้ ไวยากรณ์DeleteControl formname, controlname DeleteReportControl reportname, controlname อากิวเมนต์ของคำสั่ง CreateControl และ CreateReportControl มีรายละเอียด คือ
ลักษณะการประยุกต์คำสั่ง CreateControl และ CreateReportControl ใช้ได้เฉพาะด้าน Design view ของฟอร์ม หรือรายงาน ดูเพิ่มเติมฟังก์ชัน CreateControl, ฟังก์ชัน CreateReportControl ตัวอย่างตัวอย่างการใช้คำสั่ง CreateControl และ CreateReportControl โดยการสร้างฟอร์มที่มีปุ่มคำสั่ง และให้แสดงข้อความถามผู้ใช้ ถ้าต้องการลบปุ่มคำสั่ง เมื่อผู้ใช้คลิก Yes จะทำการลบปุ่มคำสั่ง Sub DeleteCommandButton() Dim frm As Form, ctlNew As Control ' สร้างฟอร์มใหม่และดึง pointer ไป ' สร้างปุ่มคำสั่งใหม่ ' ฟอร์มขนาดปกติ ' กำหนด caption ' ขนาดตัว Control ' ข้อความให้ผู้ใช้ลบตัว control ' กำหนด ปุ่มให้ปรากฏใน dialog box If intResponse = vbYes Then End Sub
|
||||||||||