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

C#

 
GeneralRe: Operator '==' cannot be applied to operands of type 'string' and 'int' Pin
harold aptroot12-Jan-12 10:56
harold aptroot12-Jan-12 10:56 
AnswerRe: Operator '==' cannot be applied to operands of type 'string' and 'int' Pin
Luc Pattyn12-Jan-12 15:48
sitebuilderLuc Pattyn12-Jan-12 15:48 
GeneralRe: Operator '==' cannot be applied to operands of type 'string' and 'int' Pin
BillWoodruff12-Jan-12 16:14
professionalBillWoodruff12-Jan-12 16:14 
AnswerRe: Operator '==' cannot be applied to operands of type 'string' and 'int' Pin
Abhinav S12-Jan-12 17:48
Abhinav S12-Jan-12 17:48 
AnswerRe: Operator '==' cannot be applied to operands of type 'string' and 'int' Pin
V.12-Jan-12 20:44
professionalV.12-Jan-12 20:44 
GeneralRe: Operator '==' cannot be applied to operands of type 'string' and 'int' Pin
bigphish12-Jan-12 23:03
bigphish12-Jan-12 23:03 
GeneralRe: Operator '==' cannot be applied to operands of type 'string' and 'int' Pin
BobJanova12-Jan-12 23:17
BobJanova12-Jan-12 23:17 
AnswerRe: Operator '==' cannot be applied to operands of type 'string' and 'int' Pin
V.12-Jan-12 23:18
professionalV.12-Jan-12 23:18 
Better Smile | :)
My guess is that you need to check before you have the 'int leqseq' value.

Here are some things to look at:
- Can the value leqseq be null ? if so a nullable int (int?) or checking agains DBNull.Value is the best way to go.

then you can do this:
for int?
if(leqseq.HasValue){
//value is not null, you can get the value with leqseq.Value safely.
}
else{
//value is null, handle here
}


for checking against DBull.Value
- do you have a datatable, dataset, resultset somewhere?
in that case you can compare the database value against DBNull.Value.
if(mytable.Rows[rowindex]["columnname"] != DBNull.Value){
//value is not null
}
else{
//value is null, handle here
}


If the value leqseq cannot be null in the database
you need to test if has an invalid 'value' like 0 or -1 or something, but this is bad database design. In that case you don't need a string either, but just compare against the 'fake' value.

Hope this helps.
V.

GeneralRe: Operator '==' cannot be applied to operands of type 'string' and 'int' Pin
Wayne Gaylard12-Jan-12 23:19
professionalWayne Gaylard12-Jan-12 23:19 
GeneralRe: Operator '==' cannot be applied to operands of type 'string' and 'int' Pin
bigphish13-Jan-12 8:35
bigphish13-Jan-12 8:35 
AnswerRe: Operator '==' cannot be applied to operands of type 'string' and 'int' Pin
Mc_Topaz13-Jan-12 4:07
Mc_Topaz13-Jan-12 4:07 
QuestionHow to auto scroll listbox on selection? Pin
GubiD12-Jan-12 5:52
GubiD12-Jan-12 5:52 
AnswerRe: How to auto scroll listbox on selection? Pin
Luc Pattyn12-Jan-12 6:45
sitebuilderLuc Pattyn12-Jan-12 6:45 
AnswerRe: How to auto scroll listbox on selection? Pin
BobJanova12-Jan-12 23:21
BobJanova12-Jan-12 23:21 
QuestionIs there a way to wrap a file into my dll and then copy it out to a directory during an event? Pin
turbosupramk312-Jan-12 4:45
turbosupramk312-Jan-12 4:45 
AnswerRe: Is there a way to wrap a file into my dll and then copy it out to a directory during an event? Pin
Richard MacCutchan12-Jan-12 4:58
mveRichard MacCutchan12-Jan-12 4:58 
GeneralRe: Is there a way to wrap a file into my dll and then copy it out to a directory during an event? Pin
turbosupramk312-Jan-12 6:29
turbosupramk312-Jan-12 6:29 
GeneralRe: Is there a way to wrap a file into my dll and then copy it out to a directory during an event? Pin
Richard MacCutchan12-Jan-12 6:48
mveRichard MacCutchan12-Jan-12 6:48 
GeneralRe: Is there a way to wrap a file into my dll and then copy it out to a directory during an event? Pin
turbosupramk312-Jan-12 8:42
turbosupramk312-Jan-12 8:42 
GeneralRe: Is there a way to wrap a file into my dll and then copy it out to a directory during an event? Pin
jschell12-Jan-12 13:04
jschell12-Jan-12 13:04 
GeneralRe: Is there a way to wrap a file into my dll and then copy it out to a directory during an event? Pin
turbosupramk312-Jan-12 13:07
turbosupramk312-Jan-12 13:07 
GeneralRe: Is there a way to wrap a file into my dll and then copy it out to a directory during an event? Pin
jschell13-Jan-12 8:48
jschell13-Jan-12 8:48 
GeneralRe: Is there a way to wrap a file into my dll and then copy it out to a directory during an event? Pin
turbosupramk313-Jan-12 9:07
turbosupramk313-Jan-12 9:07 
GeneralRe: Is there a way to wrap a file into my dll and then copy it out to a directory during an event? Pin
Richard MacCutchan12-Jan-12 21:43
mveRichard MacCutchan12-Jan-12 21:43 
GeneralRe: Is there a way to wrap a file into my dll and then copy it out to a directory during an event? Pin
BobJanova12-Jan-12 23:29
BobJanova12-Jan-12 23: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.