Hello!
I'm a starter developer in c#, and I want to make a windows application in .net, c#. Iwant to use a form to select an application to run, and i want use radio buttons for this. But I've got problems, because I dont't know, what control can I use in windows form, like the table in the web form. In a web form i can solve my problem, cause I get the data from a database, and I do this:
Response.Write("<TABLE width=195 height=30%><TR><TD height=48%><TR><TD height=48% valign=top></TABLE>");
for(int i=0;i<dsGetMenu1.Tables[0].Rows.Count;i++)
{
Response.Write("<TABLE width=190>");
Response.Write("<TR><TD height=27><A href=" + dsGetMenu1.Tables[0].Rows["menu_link"].ToString() + " target=mainframe ><b>" + dsGetMenu1.Tables[0].Rows["menu_name"].ToString() + "</b></A>");
Response.Write("</TABLE>");
}
but here I can't use tables. What can I use?
I'm a starter developer in c#, and I want to make a windows application in .net, c#. Iwant to use a form to select an application to run, and i want use radio buttons for this. But I've got problems, because I dont't know, what control can I use in windows form, like the table in the web form. In a web form i can solve my problem, cause I get the data from a database, and I do this:
Response.Write("<TABLE width=195 height=30%><TR><TD height=48%><TR><TD height=48% valign=top></TABLE>");
for(int i=0;i<dsGetMenu1.Tables[0].Rows.Count;i++)
{
Response.Write("<TABLE width=190>");
Response.Write("<TR><TD height=27><A href=" + dsGetMenu1.Tables[0].Rows["menu_link"].ToString() + " target=mainframe ><b>" + dsGetMenu1.Tables[0].Rows["menu_name"].ToString() + "</b></A>");
Response.Write("</TABLE>");
}
but here I can't use tables. What can I use?