Whether is it possible to draw ECG in VB6.0? As i am not that much familiar with VB any type of help will be appreciated.Please help me .thanks in advance.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The simplest method to do this is to use a picture box with the
AutoRedrawproperty set to true and theScaleModeset tovbPixels.For each point, you calculate the Y value (dependant on the minimum and maximum allowable values). To make it scan, just increment the X value for each point you draw wrapping back to 0 when it gets to the width of the picture box (
.ScaleWidth).You can use the picture box’s
.Linemethod to blank the areas behind the current X point and the.PSetmethod to draw the new point.A better method is to use an off screen picture that you update using a similar method and just update the picturebox when needed.