Visual Basic

Using RFID in VB6

Submitted by emond on
Im back again this time i will show how to use RFID Reader in VB6 Currently im developing Loadable E-Pass System for a confidential client and i want to share some of of codes regarding RFID and VB6. These is pretty straight forward i used MSCOMM (serial library in .NET) component in order to read /write buffer connected to PC's serial/usb port. This is done by using the oncomm() event in order to

How to Display the MS Chart to data Report!

Submitted by janzell on
' This code will make the MS chart converted to an image and load it to the data report.. MSChart1.EditCopy Picture1.Picture = Clipboard.GetData(vbCFMetafile) SavePicture Picture1.Picture, App.Path & "\Image1.wmf" Set animal.DataSource = recordset Set animal.Sections("section2").Controls.Item("Image1").Picture = LoadPicture((App.Path & "\Image1.wmf")) animal.Show