// MyListBox.cpp : implementation file
//

#include "stdafx.h"
#include "WebCapture2.h"
#include "MyListBox.h"


// CMyListBox

IMPLEMENT_DYNAMIC(CMyListBox, CListBox)

CMyListBox::CMyListBox()
{

}

CMyListBox::~CMyListBox()
{
}


BEGIN_MESSAGE_MAP(CMyListBox, CListBox)
END_MESSAGE_MAP()

void CMyListBox::AddStrings(CStringArray &sa)
{
	int i = 0;
	ResetContent();
	while  (i < sa.GetCount())
	{
		AddString(sa.ElementAt(i));
		i++;
	}
}


// CMyListBox message handlers


