C/C++
faison.asc
Associated article: Horizontally Scrollable Listboxes
Tags: Web Development C/C++
_HORIZONTALLY SCROLLABLE LISTBOXES_
by Ted Faison
[LISTING ONE]
#ifndef __HLBOX_HPP
#define __HLBOX_HPP
#include <arrays.h>
#include <owl.h>
#include <listbox.h>
class THorizontalListBox: public TListBox {
class Extent {
int value;
public:
Extent(int ...


