Click here to Skip to main content
15,886,258 members
Home / Discussions / C#
   

C#

 
GeneralRe: Syntax error: Missing operand after 'Percent' operator. Pin
Mycroft Holmes12-Feb-22 11:16
professionalMycroft Holmes12-Feb-22 11:16 
AnswerRe: Syntax error: Missing operand after 'Percent' operator. Pin
Kelly Herald11-Feb-22 11:46
Kelly Herald11-Feb-22 11:46 
GeneralRe: Syntax error: Missing operand after 'Percent' operator. Pin
Richard A Knox12-Feb-22 2:01
Richard A Knox12-Feb-22 2:01 
QuestionRe: Syntax error: Missing operand after 'Percent' operator. Pin
Eddy Vluggen11-Feb-22 12:35
professionalEddy Vluggen11-Feb-22 12:35 
AnswerRe: Syntax error: Missing operand after 'Percent' operator. Pin
OriginalGriff11-Feb-22 19:22
mveOriginalGriff11-Feb-22 19:22 
GeneralRe: Syntax error: Missing operand after 'Percent' operator. Pin
Richard A Knox12-Feb-22 2:04
Richard A Knox12-Feb-22 2:04 
GeneralRe: Syntax error: Missing operand after 'Percent' operator. Pin
OriginalGriff12-Feb-22 2:18
mveOriginalGriff12-Feb-22 2:18 
AnswerRe: Syntax error: Missing operand after 'Percent' operator. Pin
jsc4215-Feb-22 5:48
professionaljsc4215-Feb-22 5:48 
As others have already suggested enclosing the column name in brackets (which is what I was originally going to reply) and you have already used a different work around, I will make another observation.

Comparing a non-integer number for equality is liable to not give the result that you are looking for. 0.355 will probably be internally represented as something like 0.35499999999 and the value in your [40Percent] column may also be similarly held but to a different precision; so, although they may seem to be equal, they might not be exactly equal. The normal way of fixing this is to allow a level of imprecision in the comparison test, e.g. bound the expression with something like [40Percent] BETWEEN 0.35495 AND 0.35505, but, unfortunately, the BETWEEN keyword is not supported in the DataTable Select() method; so you'd have to do something like [40Percent] > 0.35495 AND [40Percent] < 0.35505
QuestionI can not see inside my phone directory branch when I plug it into my PC Pin
_Q12_9-Feb-22 22:51
_Q12_9-Feb-22 22:51 
AnswerRe: I can not see inside my phone directory branch when I plug it into my PC Pin
OriginalGriff9-Feb-22 23:09
mveOriginalGriff9-Feb-22 23:09 
GeneralRe: I can not see inside my phone directory branch when I plug it into my PC Pin
_Q12_9-Feb-22 23:33
_Q12_9-Feb-22 23:33 
GeneralRe: I can not see inside my phone directory branch when I plug it into my PC Pin
OriginalGriff10-Feb-22 0:14
mveOriginalGriff10-Feb-22 0:14 
GeneralMessage Closed Pin
10-Feb-22 0:39
_Q12_10-Feb-22 0:39 
GeneralMessage Closed Pin
10-Feb-22 0:52
_Q12_10-Feb-22 0:52 
GeneralMessage Closed Pin
10-Feb-22 0:55
_Q12_10-Feb-22 0:55 
GeneralRe: I can not see inside my phone directory branch when I plug it into my PC Pin
_Q12_10-Feb-22 1:38
_Q12_10-Feb-22 1:38 
GeneralRe: I can not see inside my phone directory branch when I plug it into my PC Pin
_Q12_10-Feb-22 3:05
_Q12_10-Feb-22 3:05 
GeneralRe: I can not see inside my phone directory branch when I plug it into my PC Pin
OriginalGriff10-Feb-22 3:58
mveOriginalGriff10-Feb-22 3:58 
GeneralRe: I can not see inside my phone directory branch when I plug it into my PC Pin
_Q12_15-Feb-22 1:46
_Q12_15-Feb-22 1:46 
GeneralRe: I can not see inside my phone directory branch when I plug it into my PC Pin
OriginalGriff15-Feb-22 2:15
mveOriginalGriff15-Feb-22 2:15 
GeneralRe: I can not see inside my phone directory branch when I plug it into my PC Pin
_Q12_9-Feb-22 23:39
_Q12_9-Feb-22 23:39 
AnswerRe: I can not see inside my phone directory branch when I plug it into my PC Pin
trønderen10-Feb-22 6:25
trønderen10-Feb-22 6:25 
GeneralRe: I can not see inside my phone directory branch when I plug it into my PC Pin
Richard Andrew x6410-Feb-22 9:25
professionalRichard Andrew x6410-Feb-22 9:25 
QuestionIt doesn't seem like resizable forms are inheritable Pin
RobertSF9-Feb-22 10:44
professionalRobertSF9-Feb-22 10:44 
AnswerRe: It doesn't seem like resizable forms are inheritable Pin
Eddy Vluggen9-Feb-22 10:59
professionalEddy Vluggen9-Feb-22 10:59 

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.