Visual Studio 2010 - Visual Basic
Visual Basic
Visual Basic 2010 is an evolution of the Visual Basic language that is engineered for productively building type-safe and object-oriented applications. Visual Basic enables developers to target Windows, Web, and mobile devices. As with all languages targeting the Microsoft .NET Framework, programs written in Visual Basic benefit from security and language interoperability.
This generation of Visual Basic continues the tradition of giving you a fast and easy way to create .NET Framework-based applications.
In This Section
Related Sections
Community Content
S5DG
Creating a scrolling oscilloscope display in VB 2010
When using double buffering and a backbuffer, we would like to have a continuous scrolling display without flickering.
$0Any ideas on code -$0
$0$0
$0
$0currently$0
$0$0
$0
$0dim backbuffer as bitmap-$0
$0dim g as graphics to backbuffer$0
$0dim pg as graphic to picturebox$0
$0$0
$0
$0draw to g (backbuffer)$0
$0$0
$0
$0pg.drawimage(backbuffer, scrolltimervalue, 0)$0
$0$0
$0
$0when scrolltimervalue > backbuffer reset$0
$0$0
$0