First we'll set up some convenient variables. One will determine
the gap between our columns and the other will contain the text
we want to display.
[C#]
int theID = 0;
string theText = "Gallia est omnis divisa in partes tres, quarum
unam incolunt Belgae, aliam Aquitani, tertiam qui ipsorum lingua
Celtae, nostra Galli appellantur. Hi omnes..."; // truncated
for clarity
[Visual Basic]
Dim theID As Integer = 0
Dim theText As String = "Gallia est omnis divisa in partes
tres, quarum unam incolunt Belgae, aliam Aquitani, tertiam qui ipsorum
lingua Celtae, nostra Galli appellantur. Hi omnes..." ' truncated
for clarity
|
|
|