iGuest 3 Report post Posted March 8, 2012 I been trying a hard time working on constructing an application using VB6 and my problem is how to add the data and values of different text box. What codes and controls will be needed?Example: Creating a weekly profit app. Everyday, different earnings will be listed and save and the application will solve it automatically at week end. Can you please hep me ? Thanks ! Share this post Link to post Share on other sites
iGuest 3 Report post Posted June 3, 2013 This barcode control for VB.NET may be helpful, and here is a detailed totorial of how to use it. Here is a sample code: Dim barcode As KeepAutomation.Barcode.Bean.BarCode = New KeepAutomation.Barcode.Bean.BarCodebarcode.Symbology = KeepAutomation.Barcode.Symbology.Code39barcode.CodeToEncode = "123456789"barcode.generateBarcodeToStream("Stream Object") Share this post Link to post Share on other sites
susan123 0 Report post Posted June 3, 2013 This barcode control for VB.NET may be helpful, and here is a detailed totorial of how to use it. Here is a sample code: Dim barcode As KeepAutomation.Barcode.Bean.BarCode = New KeepAutomation.Barcode.Bean.BarCode barcode.Symbology = KeepAutomation.Barcode.Symbology.Code39 barcode.CodeToEncode = "123456789" barcode.generateBarcodeToStream("Stream Object") Share this post Link to post Share on other sites