Click here to Skip to main content
15,897,704 members
Home / Discussions / C#
   

C#

 
GeneralCheckedListBox Pin
myNameIsRon15-May-05 14:37
myNameIsRon15-May-05 14:37 
GeneralRe: CheckedListBox Pin
Yulianto.15-May-05 14:52
Yulianto.15-May-05 14:52 
GeneralRe: CheckedListBox Pin
myNameIsRon18-May-05 20:16
myNameIsRon18-May-05 20:16 
GeneralRe: CheckedListBox Pin
Yulianto.18-May-05 20:27
Yulianto.18-May-05 20:27 
GeneralRe: CheckedListBox Pin
myNameIsRon19-May-05 5:36
myNameIsRon19-May-05 5:36 
GeneralRe: CheckedListBox Pin
Yulianto.19-May-05 14:18
Yulianto.19-May-05 14:18 
GeneralStore multiple values Pin
Bahadir Cambel15-May-05 12:21
Bahadir Cambel15-May-05 12:21 
GeneralRe: Store multiple values Pin
Marc Clifton15-May-05 14:13
mvaMarc Clifton15-May-05 14:13 
Bahadir Cambel wrote:
How could I store these values in a SqlColumn ?

Well, it seems to me you want more than one column. If you want to put all the fields of a checked item in the ListBox control into one column, then you should probably put them into a comma delimited string first.

In either case, put your data into SqlParameters, like:

SqlParameter param=new SqlParameter("@foo", myFooValue);


Then add the parameter:

cmd.Parameters.Add(param);


Then do the ExecuteNonQuery call.

Of course, I'm leaving out the creation of the SqlCommand cmd variable and some other stuff, but that's not relevant to your question.

Marc

MyXaml
Advanced Unit Testing
YAPO
GeneralRe: Store multiple values Pin
Bahadir Cambel16-May-05 11:39
Bahadir Cambel16-May-05 11:39 
GeneralRe: Store multiple values Pin
Marc Clifton16-May-05 12:20
mvaMarc Clifton16-May-05 12:20 
GeneralRe: Store multiple values Pin
Bahadir Cambel16-May-05 23:59
Bahadir Cambel16-May-05 23:59 
GeneralChange html output with behind page code. Pin
nit11515-May-05 12:03
nit11515-May-05 12:03 
GeneralRe: Change html output with behind page code. Pin
Werdna16-May-05 5:02
Werdna16-May-05 5:02 
GeneralSelection Tool Pin
Moh'd Bahrani15-May-05 10:39
Moh'd Bahrani15-May-05 10:39 
GeneralRe: Selection Tool Pin
Marc Clifton15-May-05 14:08
mvaMarc Clifton15-May-05 14:08 
GeneralRe: Selection Tool Pin
Moh'd Bahrani16-May-05 5:15
Moh'd Bahrani16-May-05 5:15 
QuestionDoes anyone know a C# payroll program? Pin
diabolusgorgon15-May-05 10:11
diabolusgorgon15-May-05 10:11 
AnswerRe: Does anyone know a C# payroll program? Pin
Marc Clifton15-May-05 14:02
mvaMarc Clifton15-May-05 14:02 
GeneralRe: Does anyone know a C# payroll program? Pin
exhaulted16-May-05 4:29
exhaulted16-May-05 4:29 
Generallistbox: delete multiple selection Pin
bouli15-May-05 9:38
bouli15-May-05 9:38 
GeneralRe: listbox: delete multiple selection Pin
Marc Clifton15-May-05 13:59
mvaMarc Clifton15-May-05 13:59 
GeneralRe: listbox: delete multiple selection Pin
Gary Perkin16-May-05 2:33
Gary Perkin16-May-05 2:33 
GeneralRe: listbox: delete multiple selection Pin
bouli16-May-05 4:38
bouli16-May-05 4:38 
GeneralAuto Update on Control Pin
RockmanHero200315-May-05 9:21
RockmanHero200315-May-05 9:21 
GeneralRe: Auto Update on Control Pin
John Arlen116-May-05 15:29
John Arlen116-May-05 15: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.