Click here to Skip to main content
15,893,668 members
Home / Discussions / C#
   

C#

 
AnswerRe: SFTP, Tamir Pin
Ravi Bhavnani13-Aug-07 2:14
professionalRavi Bhavnani13-Aug-07 2:14 
GeneralRe: SFTP, Tamir Pin
GeorgeBerry14-Aug-07 1:13
GeorgeBerry14-Aug-07 1:13 
QuestionData Grid problem Pin
Janu_M13-Aug-07 0:14
Janu_M13-Aug-07 0:14 
AnswerRe: Data Grid problem Pin
Christian Graus13-Aug-07 0:28
protectorChristian Graus13-Aug-07 0:28 
GeneralRe: Data Grid problem Pin
blakey40413-Aug-07 3:30
blakey40413-Aug-07 3:30 
GeneralRe: Data Grid problem Pin
Janu_M14-Aug-07 1:21
Janu_M14-Aug-07 1:21 
Questionhow to change connection string of crystal report. Pin
monuSaini13-Aug-07 0:06
monuSaini13-Aug-07 0:06 
AnswerRe: how to change connection string of crystal report. Pin
Colin Angus Mackay13-Aug-07 0:34
Colin Angus Mackay13-Aug-07 0:34 
GeneralRe: how to change connection string of crystal report. Pin
monuSaini13-Aug-07 0:56
monuSaini13-Aug-07 0:56 
GeneralRe: how to change connection string of crystal report. Pin
sathish s13-Aug-07 2:31
sathish s13-Aug-07 2:31 
GeneralRe: how to change connection string of crystal report. Pin
Colin Angus Mackay13-Aug-07 2:46
Colin Angus Mackay13-Aug-07 2:46 
Questioncombo box Pin
costavo12-Aug-07 23:19
costavo12-Aug-07 23:19 
AnswerRe: combo box Pin
Keith Barrow12-Aug-07 23:35
professionalKeith Barrow12-Aug-07 23:35 
AnswerRe: combo box Pin
Michael Sync12-Aug-07 23:38
Michael Sync12-Aug-07 23:38 
GeneralRe: combo box Pin
Michael Sync12-Aug-07 23:40
Michael Sync12-Aug-07 23:40 
AnswerRe: combo box Pin
Nouman Bhatti12-Aug-07 23:56
Nouman Bhatti12-Aug-07 23:56 
GeneralRe: combo box Pin
costavo13-Aug-07 0:02
costavo13-Aug-07 0:02 
GeneralRe: combo box Pin
Michael Sync13-Aug-07 16:49
Michael Sync13-Aug-07 16:49 
costavo wrote:
please would u give a code example


As I replied here,[^]

<br />
SqlConnection dbConn = new SqlConnection(connectionString);<br />
<br />
dbConn.Open();<br />
<br />
SqlDataAdapter da = new SqlDataAdapter("SELECT town,postal FROM table1", dbConn);<br />
DataSet ds = new DataSet();<br />
da.Fill(ds);<br />
<br />
dbConn.Close();<br />
<br />
DropDownList1.DataSource = ds.Tables[0];<br />
DropDownList1.DataTextField = "town";<br />
DropDownList1.DataValueField = "postalcode";<br />
DropDownList1.DataBind();




Thanks and Regards,
Michael Sync ( Blog: http://michaelsync.net)

If you want to thank me for my help, please vote my message by clicking one of numbers beside "Rate this message". Why vote? Plz Read it here. Thank you. Smile | :)

QuestionWPF Top level exception handling problem Pin
Keith Barrow12-Aug-07 23:09
professionalKeith Barrow12-Aug-07 23:09 
QuestionC# directX how to getit up? Pin
mercenary0112-Aug-07 22:58
mercenary0112-Aug-07 22:58 
AnswerRe: C# directX how to getit up? Pin
stancrm12-Aug-07 23:09
stancrm12-Aug-07 23:09 
AnswerRe: C# directX how to getit up? Pin
Talal Sultan12-Aug-07 23:11
Talal Sultan12-Aug-07 23:11 
QuestionUPnP AV Client in C# Pin
N-O-R-B-E-R-T12-Aug-07 22:37
N-O-R-B-E-R-T12-Aug-07 22:37 
AnswerRe: UPnP AV Client in C# Pin
leppie12-Aug-07 23:39
leppie12-Aug-07 23:39 
AnswerRe: UPnP AV Client in C# Pin
leppie12-Aug-07 23:40
leppie12-Aug-07 23:40 

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.