Click here to Skip to main content
15,889,281 members
Home / Discussions / C#
   

C#

 
GeneralRe: Send Program Over eMail Pin
Christian Graus5-Dec-07 16:13
protectorChristian Graus5-Dec-07 16:13 
GeneralRe: Send Program Over eMail Pin
MasterSharp6-Dec-07 10:39
MasterSharp6-Dec-07 10:39 
GeneralCatch Specific exception in SqlClient Pin
Skanless5-Dec-07 13:18
Skanless5-Dec-07 13:18 
GeneralRe: Catch Specific exception in SqlClient Pin
Colin Angus Mackay5-Dec-07 14:23
Colin Angus Mackay5-Dec-07 14:23 
GeneralRe: Catch Specific exception in SqlClient Pin
Skanless5-Dec-07 14:44
Skanless5-Dec-07 14:44 
GeneralRe: Catch Specific exception in SqlClient Pin
Ennis Ray Lynch, Jr.5-Dec-07 16:16
Ennis Ray Lynch, Jr.5-Dec-07 16:16 
GeneralRe: Catch Specific exception in SqlClient [modified] Pin
Skanless5-Dec-07 18:03
Skanless5-Dec-07 18:03 
GeneralRe: Catch Specific exception in SqlClient Pin
Skanless5-Dec-07 22:34
Skanless5-Dec-07 22:34 
Thanks for the help guys. I got it working with the following lines of code. I will simplify my code later but just need to get it working.

SqlParameter paramReturnValue = new SqlParameter();
paramReturnValue.ParameterName = "@return_value";
paramReturnValue.SqlDbType = SqlDbType.Int;
paramReturnValue.Direction = ParameterDirection.ReturnValue;

cmd.Parameters.Add(paramReturnValue); 


Skan

If you knew it would not compile why didn't you tell me?!?!?!

GeneralRe: Catch Specific exception in SqlClient Pin
PIEBALDconsult7-Dec-07 12:36
mvePIEBALDconsult7-Dec-07 12:36 
QuestionPerformance in PictureBox playing an animated Gif Pin
RodiGarcia5-Dec-07 12:22
RodiGarcia5-Dec-07 12:22 
GeneralRe: Performance in PictureBox playing an animated Gif Pin
Christian Graus5-Dec-07 13:08
protectorChristian Graus5-Dec-07 13:08 
Questionhow to write code to download file Pin
uowzd015-Dec-07 12:05
uowzd015-Dec-07 12:05 
GeneralRe: how to write code to download file Pin
Christian Graus5-Dec-07 12:11
protectorChristian Graus5-Dec-07 12:11 
GeneralRe: how to write code to download file Pin
uowzd015-Dec-07 13:16
uowzd015-Dec-07 13:16 
QuestionSelectionColor in RichTextBox when minimized Pin
Johan Martensson5-Dec-07 11:45
Johan Martensson5-Dec-07 11:45 
AnswerRe: SelectionColor in RichTextBox when minimized Pin
bcool6330316-Apr-09 4:46
bcool6330316-Apr-09 4:46 
GeneralDataset rowfilter Pin
Scalee5-Dec-07 10:19
Scalee5-Dec-07 10:19 
QuestionFraming JScript Exceptions in C#? Pin
kumar.bs5-Dec-07 10:02
kumar.bs5-Dec-07 10:02 
QuestionDataGridView DoubleClick Event handler fails when CTRL key is held while DoubleClicking Pin
alanteigne5-Dec-07 10:01
alanteigne5-Dec-07 10:01 
GeneralRe: DataGridView DoubleClick Event handler fails when CTRL key is held while DoubleClicking Pin
alanteigne6-Dec-07 2:07
alanteigne6-Dec-07 2:07 
AnswerRe: DataGridView DoubleClick Event handler fails when CTRL key is held while DoubleClicking Pin
alanteigne6-Dec-07 5:24
alanteigne6-Dec-07 5:24 
QuestionHow can I get the call stack of a StackOverflowException? Pin
Dr. Spack5-Dec-07 10:00
Dr. Spack5-Dec-07 10:00 
GeneralRe: How can I save the call stack of a StackOverflowException? Pin
Robert Royall5-Dec-07 10:50
Robert Royall5-Dec-07 10:50 
GeneralRe: How can I save the call stack of a StackOverflowException? Pin
Dr. Spack5-Dec-07 23:30
Dr. Spack5-Dec-07 23:30 
Generalnavigating all nodes in a win forms treeview Pin
radi85-Dec-07 8:38
radi85-Dec-07 8:38 

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.