TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Song Lee
NA
47
38.3k
listbox change button.
Jan 6 2015 8:27 PM
Hello, I'm trying to set up something that user can use to change listbox content, but I'm getting errors:
1) 'contactIn' is a variable but is used like a method
2) No overload for method "ChangeContact" takes 1 arguments
ContactManager Class
class
ContactManager
{
private
List<Contact>
m_contactRegistry;
//declare object of the collection
public
ContactManager()
{
m_contactRegistry =
new
List<Contact>
();
}
/// <summary>
/// Changes selected item
/// </summary>
/// <param name="index"></param>
/// <param name="contactIn"></param>
/// <returns></returns>
public bool
ChangeContact(
string
str, Contact contactIn)
{
foreach
(Contact c
in
m_contactRegistry)
{
if
(c.ToString() == str)
{
m_contactRegistry = contactIn(c);
return true;
}
}
return false;
}
/// <summary>
/// Edit/Change button
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void
chgButton_Click(
object
sender,
EventArgs
e)
{
Assignment_6_attempt_1.ContactFiles.ContactManager mngr = new Assignment_6_attempt_1.ContactFiles.
ContactManager
();
string
currContact;
try
{
currContact = listBox.SelectedItem.ToString();
bool
flg = mngr.ChangeContact(currContact);
if
(flg)
MessageBox.
Show("Successfully Changed");
}
catch
(
Exception
){
return;
}
UpdateGUI();
Thank you >.<
Reply
Answers (
1
)
Passing data from a panel to a method
assigning unique ids in all clone textboxes