Using MSHFlexgrid in C#
-
I want to uses MsHFlexgrid in C#, but it don't. How I uses it in C#? Please help me. Thanks.
-
I want to uses MsHFlexgrid in C#, but it don't. How I uses it in C#? Please help me. Thanks.
Hello Hoang Dung, I think MSHFlexgrid only works with VB but not 100% positive. Try the following Link and you'll see MSHFlexgrid is listed under VB 6.0. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/mshflx98/html/vbidxMSFlexGridControlConstants.asp Khang Nguyen ;)
-
I want to uses MsHFlexgrid in C#, but it don't. How I uses it in C#? Please help me. Thanks.
-
DataGrid in C# have all the properties of MSHFlexgrid. so why to go for that???? sorry for my bad English.
you can use a flexi grid in C# , just add it to the toolbox : VB:
Private void button6_Click(Object sender, System.EventArgs e)
{
For (int i=0;i<20;i++)
{
axMSFlexGrid1.AddItem("item\t" + i,0);
}
}
hope that helps.:)
Private void ExpectingTwins(string twins)
{
switch(twins)
{
Case ("twins on the way"):
MessageBox.Show("for mr and mrs dynamic","twins on the way");
break;
}
}