Click here to Skip to main content
15,896,359 members
Home / Discussions / C#
   

C#

 
GeneralRe: thread ID Pin
George_George4-Jun-08 1:53
George_George4-Jun-08 1:53 
GeneralRe: thread ID Pin
Luc Pattyn4-Jun-08 2:04
sitebuilderLuc Pattyn4-Jun-08 2:04 
GeneralRe: thread ID Pin
George_George4-Jun-08 2:06
George_George4-Jun-08 2:06 
GeneralRe: thread ID Pin
George_George4-Jun-08 2:03
George_George4-Jun-08 2:03 
GeneralRe: thread ID Pin
Luc Pattyn4-Jun-08 2:07
sitebuilderLuc Pattyn4-Jun-08 2:07 
GeneralRe: thread ID Pin
George_George4-Jun-08 2:11
George_George4-Jun-08 2:11 
QuestionNeed help with a Microsoft Word Addin Pin
Shriniwasan Viswanathan3-Jun-08 14:03
Shriniwasan Viswanathan3-Jun-08 14:03 
QuestionBinding CSV to CheckBoxList Pin
stormcandi3-Jun-08 11:39
stormcandi3-Jun-08 11:39 
I have a checkboxlist with different items. I have a comma separated values field that I need to bind to this cbl. The cbl is in a detailsview. I know that I need to loop through the dataset rows so each record in the detailsview is bound with the correct information, however I have only figured out how to bind the first row in the dataset for every record in the detailsview. I know I need to loop through the dataset but am not sure how to do it at the same time as looping through the rows in the detailsview. This below function is called onDataBinding. Can anyone assist?

Thanks in advance!

public void FillControls()
{
    //this executes when the form view is populated so the services are populated correctly
    int intSN = Convert.ToInt32(Request.QueryString["LookUp"].ToString());
    Selections db = new Selections();
    DataSet ds = db.Services(intSNo);
    int iCount = ds.Tables[0].Rows.Count;
    if (iCount != 0)
    {
        if (dvGetMoreData.CurrentMode != DetailsViewMode.Insert)
        {
            FillMultipleCheckboxesWithValue((CheckBoxList)dvGetMoreData.FindControl("cblSvcs"), ds.Tables[0].Rows[0]["Services"].ToString());
        }
    }
}


~Candi

AnswerRe: Binding CSV to CheckBoxList Pin
leppie3-Jun-08 18:31
leppie3-Jun-08 18:31 
QuestionErrorprovider in combination with tabs Pin
wilberts3-Jun-08 11:38
wilberts3-Jun-08 11:38 
QuestionDisabled keyboard and mouse Pin
hendryck3-Jun-08 11:03
hendryck3-Jun-08 11:03 
AnswerRe: Disabled keyboard and mouse Pin
DaveyM693-Jun-08 11:56
professionalDaveyM693-Jun-08 11:56 
GeneralRe: Disabled keyboard and mouse Pin
anujarya_20013-Jun-08 18:46
anujarya_20013-Jun-08 18:46 
GeneralRe: Disabled keyboard and mouse Pin
Shree3-Jun-08 19:46
Shree3-Jun-08 19:46 
AnswerRe: Disabled keyboard and mouse Pin
Nouman Bhatti3-Jun-08 19:44
Nouman Bhatti3-Jun-08 19:44 
QuestionValidating a property on Set Pin
martin_hughes3-Jun-08 9:35
martin_hughes3-Jun-08 9:35 
AnswerRe: Validating a property on Set Pin
Pete O'Hanlon3-Jun-08 9:44
mvePete O'Hanlon3-Jun-08 9:44 
GeneralRe: Validating a property on Set Pin
martin_hughes3-Jun-08 10:11
martin_hughes3-Jun-08 10:11 
GeneralRe: Validating a property on Set Pin
Pete O'Hanlon3-Jun-08 10:25
mvePete O'Hanlon3-Jun-08 10:25 
GeneralRe: Validating a property on Set Pin
anujarya_20013-Jun-08 18:21
anujarya_20013-Jun-08 18:21 
Questionhandle javaScript errors ? Pin
Rami Shareef3-Jun-08 7:12
Rami Shareef3-Jun-08 7:12 
AnswerRe: handle javaScript errors ? Pin
Scott Dorman3-Jun-08 7:16
professionalScott Dorman3-Jun-08 7:16 
GeneralRe: handle javaScript errors ? Pin
Rami Shareef3-Jun-08 7:19
Rami Shareef3-Jun-08 7:19 
GeneralRe: handle javaScript errors ? Pin
Scott Dorman3-Jun-08 7:27
professionalScott Dorman3-Jun-08 7:27 
GeneralRe: handle javaScript errors ? Pin
anujarya_20013-Jun-08 18:20
anujarya_20013-Jun-08 18:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.