url name(varchar)、urlID(int)、およびそのEnabled status(bit)をデータベースから取得し、その結果をforeachループのCheckedListBoxに入力するメソッドがあります。私が抱えている問題は、チェックボックスリストが名前とそのチェックステータスしか取得していないように見えることです。私ができる必要があるのは、ユーザーがボタンイベントの選択を終えたときに、CheckedListBoxを読み取り、URL IDと有効なステータスを取得して、これをデータベースに書き戻すことができるようにすることです。
これは私が使用しているコードです:
/// <summary>
/// Create url names in check box list.
/// </summary>
/// <param name="rows"></param>
private void CreateURLCheckBoxes(DataRowCollection rows)
{
try
{
int i = 0;
foreach (DataRow row in rows)
{
//Gets the url name and path when the status is enabled. The status of Enabled / Disabled is setup in the users option page
string URLName = row["URLName"].ToString();
int URLID = Convert.ToInt32(row["URLID"]);
bool enabled = Convert.ToBoolean(row["Enabled"]);
//Adds the returned to rows to the check box list
CBLUrls.Items.Add(URLName, enabled);
}
i++;
}
catch (Exception ex)
{
//Log error
Functionality func = new Functionality();
func.LogError(ex);
//Error message the user will see
string FriendlyError = "There has been populating checkboxes with the urls ";
Classes.ShowMessageBox.MsgBox(FriendlyError, "There has been an Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}