Click here to Skip to main content
15,891,372 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I'm doing project that asking me to display my list of words in table like a puzzle game after loading the data .
this is example of my data
HORIZONTAL,1,2,ROBERT
VERTICAL,2,11,CHARLES
VERTICAL,2,15,WENDY

What I have tried:

i create a table :
private void showpMenuItem_Click(object sender, EventArgs e)
{
String headerHTML = @"<!DOCTYPE html>
<html>
<head>
<style>
table {
width:360px;
}
table, td {
border: 1px solid black;
border-collapse: collapse;
}
td {
width:24px;
text-align: center;
}
</style>
</head>
<body>





</body>
</html>";




webBrowser1.DocumentText = headerHTML;
}
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900