VB implementation of BOM table query

Source: Internet
Author: User
For more information, click here.
Implementation Using VB code
Reference: None, part: None
Design: add a CommandButton in the lower right corner of Form1. The default name is Command1, and the AutoRedraw attribute of the form is set to True.
Form file 1: Form1
Option Explicit
Private mBom As Collection 'this is the Collection of entries
Private mBomReturn As Collection 'this is the exit set, not processed
Private mBomReturnLast As Collection 'this is the set of egress, which has been processed
Private Sub AddBomRecord ()
'Here, I want to add the original content in the database to mBom. For convenience, I don't want to connect to the database.
'Write records directly into it. If necessary, you can directly connect to the database and analyze
'Code, and then write records into mBom
'Fg SA1 2.0000
'Fg SA2 3.0000
'Sa1 PT1 4.0000
'Sa1 PT2 5.0000
'Sa2 PT1 6.0000
'Sa2 PT3 7.0000
Dim mBomValue As cBomValue
Set mBomValue = New cBomValue
MBomValue. AssBom = "FG"
MBomValue. BomPoint = "SA1"
MBomValue. Quantity = 2
MBom. Add mBomValue
Set mBomValue = New cBomValue
MBomValue. AssBom = "FG"
MBomValue. BomPoint = "SA2"
MBomValue. Quantity = 3
MBom. Add mBomValue
Set mBomValue = New cBomValue
MBomValue. AssBom = "SA1"
MBomValue. BomPoint = "PT1"

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.