Click here to Skip to main content
15,896,487 members
Home / Discussions / C#
   

C#

 
GeneralRe: Printer fonts Pin
Mazdak26-Jun-03 22:32
Mazdak26-Jun-03 22:32 
GeneralRe: Printer fonts Pin
berylius26-Jun-03 22:42
berylius26-Jun-03 22:42 
GeneralTabControl,TabPage and Context Menu Pin
Anonymous26-Jun-03 21:16
Anonymous26-Jun-03 21:16 
QuestionData-bind Windows Forms Treeview? Pin
J. Dunlap26-Jun-03 18:13
J. Dunlap26-Jun-03 18:13 
GeneralConvert to C# code Pin
Steve McLenithan26-Jun-03 18:06
Steve McLenithan26-Jun-03 18:06 
GeneralRe: Convert to C# code Pin
Nick Seng26-Jun-03 18:19
Nick Seng26-Jun-03 18:19 
GeneralRe: Convert to C# code Pin
Steve McLenithan26-Jun-03 20:03
Steve McLenithan26-Jun-03 20:03 
GeneralRe: Convert to C# code Pin
J. Dunlap26-Jun-03 18:32
J. Dunlap26-Jun-03 18:32 
Steve McLenithan wrote:
Does that mean I have to makie a bunch of overloads of this functionin C#?

Yes.
You could:
*Do lots of overloads that delegate to a single function.
*Do lots of overloads that each do the job slightly differently.
*Force people to pass null to all the values they don't use, and check for null as necessary.

Steve McLenithan wrote:
<sqlparameter(, ,="" parameterdirection.output)=""> wtf is that?

That's how VB.NET does attributes, but I thought SqlParameter was a regular class, not an attribute.

Steve McLenithan wrote:
How do I get around the IIf thing (does that mean if and only if?

In C#, this:
IIf(ExpiryDate <> "", ExpiryDate, SqlInt16.Null)

becomes this:
(ExpiryDate != "" ? ExpiryDate : SqlInt16.Null)



"Blessed are the peacemakers, for they shall be called sons of God." - Jesus

"You must be the change you wish to see in the world." - Mahatma Gandhi







GeneralRe: Convert to C# code Pin
Steve McLenithan26-Jun-03 20:06
Steve McLenithan26-Jun-03 20:06 
GeneralRe: Convert to C# code Pin
leppie27-Jun-03 10:05
leppie27-Jun-03 10:05 
GeneralRe: Convert to C# code Pin
Steve McLenithan27-Jun-03 11:17
Steve McLenithan27-Jun-03 11:17 
GeneralRe: Convert to C# code Pin
Kant27-Jun-03 10:08
Kant27-Jun-03 10:08 
GeneralRe: Convert to C# code Pin
Steve McLenithan27-Jun-03 11:18
Steve McLenithan27-Jun-03 11:18 
GeneralOne code, two different results - C# vs C++ Pin
C. Augusto Proiete26-Jun-03 16:25
C. Augusto Proiete26-Jun-03 16:25 
GeneralRe: One code, two different results - C# vs C++ Pin
Nick Seng26-Jun-03 16:49
Nick Seng26-Jun-03 16:49 
GeneralRe: One code, two different results - C# vs C++ Pin
leppie26-Jun-03 18:03
leppie26-Jun-03 18:03 
GeneralRe: One code, two different results - C# vs C++ Pin
Nick Seng26-Jun-03 18:13
Nick Seng26-Jun-03 18:13 
GeneralRe: One code, two different results - C# vs C++ Pin
jspano27-Jun-03 6:23
jspano27-Jun-03 6:23 
GeneralRe: One code, two different results - C# vs C++ Pin
C. Augusto Proiete27-Jun-03 15:23
C. Augusto Proiete27-Jun-03 15:23 
GeneralRe: One code, two different results - C# vs C++ Pin
jspano28-Jun-03 16:26
jspano28-Jun-03 16:26 
GeneralRe: One code, two different results - C# vs C++ Pin
Bo Hunter28-Jun-03 10:54
Bo Hunter28-Jun-03 10:54 
Questionusing Byte[] in a WebService method?? Pin
Uploader26-Jun-03 12:26
Uploader26-Jun-03 12:26 
AnswerRe: using Byte[] in a WebService method?? Pin
leppie26-Jun-03 15:12
leppie26-Jun-03 15:12 
GeneralRe: using Byte[] in a WebService method?? Pin
Uploader29-Jun-03 10:13
Uploader29-Jun-03 10:13 
QuestionWhat Other Options Beside System.Data.OleDb? Critical For Me, Please! Pin
Khang Nguyen26-Jun-03 11:55
Khang Nguyen26-Jun-03 11:55 

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.