Click here to Skip to main content
15,890,438 members

Comments by upup7 (Top 3 by date)

upup7 16-Nov-12 5:43am View    
I already install crystal report and its runtime, but still, when I add new item -> reporting -> crystal report -> no template dialog window appears, which came out just binery...
upup7 4-Dec-11 6:26am View    
then how if I want to edit one of its value. eg want to edit the name or address only. I've tried but its value changed all.

public void editValueName(string tel, string add)
{
string address = add;
string telp = tel;

if (phoneBook.ContainsKey(tel))
{
phoneBook[tel] = address;
getDetails();
}
}
upup7 4-Dec-11 1:03am View    
then how to display in the listbox. when i want to display in the ListBox it's appear an error. for its key can appear, but for its value would not appear.


foreach (DictionaryEntry val in phoneBook)
{
listBox1.Items.Add("key :" + val.Keys + "and value : " + val.Values);
}


appear in the listbox like this:

key : 1 and value : System.Collections.Generic.List[System.String]