Click here to Skip to main content
15,900,906 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C#
int ItemCount = dropdownConsignee.Items.Count;
              for (int i = 0; i < ItemCount; i++)
              {
                  dropdownConsignee.Items[i].Attributes.Add("Title", Ds.Tables[0].Rows[i]["Address"].ToString());
              }
              dropdownConsignee.Items.Insert(0, new ListItem("Select", "Address"));
              dropdownConsignee.SelectedItem.Selected = false;
              dropdownConsignee.Items.FindByText("Select").Selected = true;




I want to hilight  and Change a font size of my tooltip. 
plz any one can help me
Posted

1 solution

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