Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. sushmithagowda

    show multiple selections on a parameter in header

    public static string ConvertArrayToString(object[] values) { var result = new StringBuilder(values[0].ToString(),values.Length); for (int i = 1; i < values.Length; i++ ) { result.AppendFormat(", {0}", values[i]); } return result.ToString(); }...

Part and Inventory Search

Back
Top