Friday, September 4, 2009

TScopeComponent

This easy to use component can scope your binary data.

Scoping Function:
Scope.Scoping(DataBit As Byte)

Example:
Scope1.Scoping(0)
'Control scopes Zero-Bit

ClearMonitor Function:
This method clears Scope monitor. The function does not have any parameter.

Example:
Scope1.ClearMonitor()

LineColor Property:
By the propery you can get or set Scope plotter pen color.

Example:
MsgBox(CStr(Scope1.LineColor))
'This line shows property value in message box.
Scope1.LineColor = Pens.Yellow
'The line sets Yellow as plotter pen color.

MonitorColor Property:
By the propery you can get or set Scope monitor backcolor.

Example:
MsgBox(CStr(Scope1.MonitorColor))
'This line shows property value in message box.
Scope1.MonitorColor = Color.White
'The line sets White as monitor backcolor.

MonitorImage ReadOnly Property:
By the propery you can only get Scope monitor image.

Example:
Scope1.MonitorImage.Save("C:\Monitor.bmp")
'The line saves monitor image in selected path.


.ZIP = [.DLL + VB.Net 2005 Source]

Can be used on VB.Net and VC# 2005 (or newer version) projects.
To use the control, extract the ZIP file. On extraction folder, drag TScopeComponent.dll file and drop it on Visual Studio ToolBox.

No comments: