Trimming off a little too much?
-
I wish I knew what this guy was thinking.
ddl_Operator.DataTextField = ("description").Trim
-
I wish I knew what this guy was thinking.
ddl_Operator.DataTextField = ("description").Trim
A Find and Replace gone crazy?
-
I wish I knew what this guy was thinking.
ddl_Operator.DataTextField = ("description").Trim
Probably didn't realize he could do
ddl_Operator.DataTextField = ("description").ToString() ;
nor even that the parentheses are extraneous.
-
Probably didn't realize he could do
ddl_Operator.DataTextField = ("description").ToString() ;
nor even that the parentheses are extraneous.
And why not simply
ddl_Operator.DataTextField = "description";
?
A while ago he asked me what he should have printed on my business cards. I said 'Wizard'. I read books which nobody else understand. Then I do something which nobody understands. After that the computer does something which nobody understands. When asked, I say things about the results which nobody understand. But everybody expects miracles from me on a regular basis. Looks to me like the classical definition of a wizard.
-
And why not simply
ddl_Operator.DataTextField = "description";
?
A while ago he asked me what he should have printed on my business cards. I said 'Wizard'. I read books which nobody else understand. Then I do something which nobody understands. After that the computer does something which nobody understands. When asked, I say things about the results which nobody understand. But everybody expects miracles from me on a regular basis. Looks to me like the classical definition of a wizard.
Well, sure, but then there's no fame and glory. :-D
-
Probably didn't realize he could do
ddl_Operator.DataTextField = ("description").ToString() ;
nor even that the parentheses are extraneous.
PIEBALDconsult wrote:
Probably didn't realize he could do ddl_Operator.DataTextField = ("description").ToString() ;
or maybe.. ddl_Operator.DataTextField = ("description").ToString().ToString().ToString().ToString().Trim() ; :)