Click here to Skip to main content
15,921,371 members
Home / Discussions / C#
   

C#

 
GeneralRe: Preview Panel Pin
Christian Graus12-Jun-08 8:36
protectorChristian Graus12-Jun-08 8:36 
Question[C# 2.0]Rename file on FTP Pin
mcaos12-Jun-08 7:35
professionalmcaos12-Jun-08 7:35 
AnswerRe: [C# 2.0]Rename file on FTP Pin
Anthony Mushrow12-Jun-08 7:38
professionalAnthony Mushrow12-Jun-08 7:38 
AnswerRe: [C# 2.0]Rename file on FTP Pin
Giorgi Dalakishvili12-Jun-08 8:11
mentorGiorgi Dalakishvili12-Jun-08 8:11 
GeneralRe: [C# 2.0]Rename file on FTP Pin
mcaos12-Jun-08 10:50
professionalmcaos12-Jun-08 10:50 
QuestionEnter Valued in Combobox from database Pin
sam1287412-Jun-08 7:34
sam1287412-Jun-08 7:34 
AnswerRe: Enter Valued in Combobox from database Pin
Christian Graus12-Jun-08 7:40
protectorChristian Graus12-Jun-08 7:40 
GeneralRe: Enter Valued in Combobox from database Pin
sam1287412-Jun-08 8:18
sam1287412-Jun-08 8:18 
Thanks Christian but I tried doing what you said let me just copy paste my code

DataSet ComboboxLicencegrpID;

ComboboxLicencegrpID = CombolicencegrpID();
this.LicensegrpIDBox.DataSource = ComboboxLicencegrpID.Tables["comboLicenseGroupID"];


public DataSet CombolicencegrpID()
{
SqlCommand cmd = new SqlCommand();
DataSet ds = new DataSet();
SqlDataAdapter da = new SqlDataAdapter();

cmd.CommandType = CommandType.Text;
cmd.CommandText = "select Name,LicenseGroupID from webqa_state.dbo.METADATA_LicenseGroups";
cmd.Connection = DBConnection.getConnection();
da.SelectCommand = cmd;
da.Fill(ds, "comboLicenseGroupID");
return ds;
}




Its giving me an outputlike this :-

In the Combobox all values are the same and its "System.Data.DataRowView"

What can be the problem ???
GeneralRe: Enter Valued in Combobox from database Pin
Christian Graus12-Jun-08 8:37
protectorChristian Graus12-Jun-08 8:37 
AnswerRe: Enter Valued in Combobox from database Pin
sam1287412-Jun-08 8:27
sam1287412-Jun-08 8:27 
GeneralRe: Enter Valued in Combobox from database Pin
Christian Graus12-Jun-08 8:37
protectorChristian Graus12-Jun-08 8:37 
GeneralRe: Enter Valued in Combobox from database Pin
sam1287412-Jun-08 9:30
sam1287412-Jun-08 9:30 
GeneralRe: Enter Valued in Combobox from database Pin
Christian Graus12-Jun-08 9:46
protectorChristian Graus12-Jun-08 9:46 
GeneralRe: Enter Valued in Combobox from database Pin
sam1287412-Jun-08 10:12
sam1287412-Jun-08 10:12 
GeneralRe: Enter Valued in Combobox from database Pin
sam1287412-Jun-08 10:29
sam1287412-Jun-08 10:29 
Questionusing property how to get a value from one page and get in another page(sample code) Pin
senpriya12-Jun-08 7:31
senpriya12-Jun-08 7:31 
AnswerRe: using property how to get a value from one page and get in another page(sample code) Pin
Christian Graus12-Jun-08 7:40
protectorChristian Graus12-Jun-08 7:40 
QuestionHosting IE in a windows application Pin
Christian Graus12-Jun-08 6:36
protectorChristian Graus12-Jun-08 6:36 
AnswerRe: Hosting IE in a windows application Pin
Anthony Mushrow12-Jun-08 7:36
professionalAnthony Mushrow12-Jun-08 7:36 
GeneralRe: Hosting IE in a windows application Pin
Christian Graus12-Jun-08 7:39
protectorChristian Graus12-Jun-08 7:39 
GeneralRe: Hosting IE in a windows application Pin
Anthony Mushrow12-Jun-08 7:44
professionalAnthony Mushrow12-Jun-08 7:44 
GeneralRe: Hosting IE in a windows application Pin
Christian Graus12-Jun-08 8:10
protectorChristian Graus12-Jun-08 8:10 
GeneralRe: Hosting IE in a windows application Pin
Giorgi Dalakishvili12-Jun-08 8:14
mentorGiorgi Dalakishvili12-Jun-08 8:14 
GeneralRe: Hosting IE in a windows application Pin
Christian Graus12-Jun-08 8:16
protectorChristian Graus12-Jun-08 8:16 
QuestionAMATEUR PROGRAMMER NEEDS HELP WITH SERIALIZATION Pin
bigchump12-Jun-08 6:29
bigchump12-Jun-08 6:29 

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.