Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How should I code this?
Message
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Environment versions
Environment:
C# 3.0
OS:
Windows XP
Network:
Windows 2003 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01398722
Message ID:
01398741
Views:
90
This message has been marked as the solution to the initial question of the thread.
>Hi everybody,
>
>Sorry, how can I convert this
>
> _dtOrder = biz.Find(this.txtOrderNo.Text, this.dtgStartDate.Value, this.dtgEndDate.Value);
>
>My biz object has this signature Find(int? OrderNo, datetime? StartDate, datetime? EndDate)
>
>I tried to add (int?) and (int) in front of the OrderNo.Text, but it doesn't compile.
>
>Thanks a lot in advance.
>
>UPDATE. This seems to compile
>
>_dtOrder = biz.Find(Convert.ToInt32(this.txtOrderNo.Text), this.dtgStartDate.Value, this.dtgEndDate.Value);
>
>Am I right?

That's what I was going to suggest, Naomi.
Linda Harmes
HiBit Technologies, Inc.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform