Click here to Skip to main content
16,008,954 members
Home / Discussions / C#
   

C#

 
GeneralWant to read the values of a System.__ComObject Pin
Reinier Beeckman11-Nov-04 21:45
Reinier Beeckman11-Nov-04 21:45 
GeneralRe: Want to read the values of a System.__ComObject Pin
Richard Deeming12-Nov-04 6:36
mveRichard Deeming12-Nov-04 6:36 
GeneralRe: Want to read the values of a System.__ComObject Pin
Reinier Beeckman16-Nov-04 21:10
Reinier Beeckman16-Nov-04 21:10 
GeneralRe: Want to read the values of a System.__ComObject Pin
Richard Deeming17-Nov-04 0:57
mveRichard Deeming17-Nov-04 0:57 
GeneralRe: Want to read the values of a System.__ComObject Pin
Reinier Beeckman17-Nov-04 1:34
Reinier Beeckman17-Nov-04 1:34 
GeneralRe: Want to read the values of a System.__ComObject Pin
Richard Deeming18-Nov-04 1:35
mveRichard Deeming18-Nov-04 1:35 
Generaldatatable.select Pin
Dogan Gunay11-Nov-04 20:41
Dogan Gunay11-Nov-04 20:41 
GeneralRe: datatable.select Pin
Skynyrd11-Nov-04 22:42
Skynyrd11-Nov-04 22:42 
Your SQL WHERE command is translated to this: Lets say Id=2, address=1, record="hello":

Id=2 AND Adress=1 AND Record=hello

This is actually saying that Column [Record] should de equal to Column [hello]. That's why ur getting that error. The correct WHERE command should state that hello is a string:

Id=2 AND Adress=1 AND Record='hello'

Thus ur filter command must be:

string select = "Id = " + id + " AND Address = "+address+ " AND Record ='" + record + "'";
GeneralRe: datatable.select Pin
Dogan Gunay11-Nov-04 23:50
Dogan Gunay11-Nov-04 23:50 
GeneralUrgent: need help Pin
Jug-Head11-Nov-04 20:13
Jug-Head11-Nov-04 20:13 
GeneralRe: Urgent: need help Pin
Sebastian Schneider12-Nov-04 2:07
Sebastian Schneider12-Nov-04 2:07 
Generaldll loading Pin
ppp00111-Nov-04 19:42
ppp00111-Nov-04 19:42 
GeneralRe: dll loading Pin
manivannan.p11-Nov-04 21:00
manivannan.p11-Nov-04 21:00 
GeneralRe: dll loading Pin
Ami Bar12-Nov-04 0:54
Ami Bar12-Nov-04 0:54 
QuestionOverride methods not included in overload search???? Pin
David Wengier11-Nov-04 19:04
David Wengier11-Nov-04 19:04 
AnswerRe: Override methods not included in overload search???? Pin
manivannan.p11-Nov-04 20:21
manivannan.p11-Nov-04 20:21 
GeneralOverriding Equals and ArrayList.Contains(object) Pin
HahnTech11-Nov-04 17:19
HahnTech11-Nov-04 17:19 
GeneralRe: Overriding Equals and ArrayList.Contains(object) Pin
Daniel Turini12-Nov-04 0:49
Daniel Turini12-Nov-04 0:49 
GeneralRe: Overriding Equals and ArrayList.Contains(object) Pin
HahnTech12-Nov-04 9:55
HahnTech12-Nov-04 9:55 
Generalprint to file Pin
cmarmr11-Nov-04 15:08
cmarmr11-Nov-04 15:08 
Generalarray question Pin
Anonymous11-Nov-04 14:44
Anonymous11-Nov-04 14:44 
GeneralRe: array question Pin
Christian Graus11-Nov-04 14:55
protectorChristian Graus11-Nov-04 14:55 
GeneralRe: array question Pin
Skynyrd11-Nov-04 22:52
Skynyrd11-Nov-04 22:52 
GeneralPrinting ListView Text - Align Column Text Pin
myNameIsRon11-Nov-04 13:33
myNameIsRon11-Nov-04 13:33 
Generalremote message queue delay Pin
cchere11-Nov-04 11:47
cchere11-Nov-04 11:47 

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.