README.md
December 4, 2022 ยท View on GitHub
Description
Nothing special, just a scrolling graph. I just wanted to see if I could make one, and I did. I'm sure there are other ways of doing it, but this seems to work fine. Enjoy
More Info
| Submitted On | 2004-02-21 19:35:10 |
| By | MJOsborn |
| Level | Beginner |
| User Rating | 5.0 (25 globes from 5 users) |
| Compatibility | VB 6.0 |
| Category | Graphics |
| World | Visual Basic |
| Archive File | Scrolling_1711742212004.zip |
API Declarations
Private Declare Function SetPixelV Lib "gdi32" (ByVal hdc As Long, ByVal X As Long, ByVal Y As Long, ByVal crColor As Long) As Long
Private Declare Function LineTo Lib "gdi32" (ByVal hdc As Long, ByVal X As Long, ByVal Y As Long) As Long
Private Declare Function MoveToEx Lib "gdi32" (ByVal hdc As Long, ByVal X As Long, ByVal Y As Long, lpPoint As POINTAPI) As Long