Click here to Skip to main content
15,888,521 members
Home / Discussions / C#
   

C#

 
GeneralRe: start external app, but in a sync way Pin
Justin Perez27-Aug-07 2:39
Justin Perez27-Aug-07 2:39 
AnswerRe: start external app, but in a sync way Pin
Spacix One28-Aug-07 10:19
Spacix One28-Aug-07 10:19 
Questioninserting data into a label Pin
lourensG27-Aug-07 1:10
lourensG27-Aug-07 1:10 
AnswerRe: inserting data into a label Pin
Christian Graus27-Aug-07 1:34
protectorChristian Graus27-Aug-07 1:34 
GeneralRe: inserting data into a label Pin
lourensG27-Aug-07 1:43
lourensG27-Aug-07 1:43 
GeneralRe: inserting data into a label Pin
Christian Graus27-Aug-07 1:51
protectorChristian Graus27-Aug-07 1:51 
GeneralRe: inserting data into a label Pin
Justin Perez27-Aug-07 2:14
Justin Perez27-Aug-07 2:14 
AnswerRe: inserting data into a label Pin
mihirhp27-Aug-07 2:17
mihirhp27-Aug-07 2:17 
GeneralRe: inserting data into a label Pin
lourensG27-Aug-07 2:27
lourensG27-Aug-07 2:27 
GeneralRe: inserting data into a label Pin
Justin Perez27-Aug-07 2:42
Justin Perez27-Aug-07 2:42 
QuestionMessaging between objects? Pin
MeLight27-Aug-07 0:57
MeLight27-Aug-07 0:57 
AnswerRe: Messaging between objects? Pin
Colin Angus Mackay27-Aug-07 0:59
Colin Angus Mackay27-Aug-07 0:59 
GeneralRe: Messaging between objects? Pin
MeLight27-Aug-07 3:01
MeLight27-Aug-07 3:01 
Questionmanage a data base since a user interface Pin
almora00727-Aug-07 0:41
almora00727-Aug-07 0:41 
AnswerRe: manage a data base since a user interface Pin
Colin Angus Mackay27-Aug-07 0:51
Colin Angus Mackay27-Aug-07 0:51 
GeneralRe: manage a data base since a user interface Pin
almora00727-Aug-07 0:57
almora00727-Aug-07 0:57 
GeneralRe: manage a data base since a user interface Pin
Colin Angus Mackay27-Aug-07 1:06
Colin Angus Mackay27-Aug-07 1:06 
GeneralRe: manage a data base since a user interface Pin
almora00727-Aug-07 1:08
almora00727-Aug-07 1:08 
Questioninserting data into a label Pin
lourensG26-Aug-07 23:19
lourensG26-Aug-07 23:19 
AnswerRe: inserting data into a label Pin
Vasudevan Deepak Kumar26-Aug-07 23:43
Vasudevan Deepak Kumar26-Aug-07 23:43 
GeneralRe: inserting data into a label Pin
lourensG26-Aug-07 23:57
lourensG26-Aug-07 23:57 
GeneralRe: inserting data into a label Pin
Christian Graus27-Aug-07 0:24
protectorChristian Graus27-Aug-07 0:24 
GeneralRe: inserting data into a label Pin
lourensG27-Aug-07 0:55
lourensG27-Aug-07 0:55 
GeneralRe: inserting data into a label Pin
Colin Angus Mackay27-Aug-07 1:07
Colin Angus Mackay27-Aug-07 1:07 
QuestionNew SQL question also urgent Pin
falles0126-Aug-07 22:13
falles0126-Aug-07 22:13 
I also need to write a select sql statement which searches through a number of tables. As a start I ahve this which doesn't work.

string sql = "select employees.Firstname from employees where employees.Firstname = '" + empNamecomboBox.SelectedValue.ToString() + "'"; where RoleID = '" + rolecomboBox.SelectedValue.ToString() + "'";

I've got a winform with 5 fields, either comboboxes or checkedlistboxes.
i want to find all employees where a role or/and manager and/or division is selected. In other words I want to find all employees who are a developer with certain skills.

At the moment I can only get them working one at a time but the search doesn't display employees, it just displays the data on the role itself, or the division itself if that makes sense. ?

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.