blah blah blah is here! blah blah » Close

0
votes
0 answers

How to Log result of bcp command to a .txt file

I am using bcp from C# asp.net web application. savefilepath = @"C:\Validations\Bcp6.txt"; System.Diagnostics.Process proc = new System.Diagnostics.Process(); proc.StartInfo.FileName ="bcp"; proc.StartInf ...

0
votes
1 answers

C# programming issue "A project with an output type of class library cant be started directly".

Hello! I am using Microsoft Visual C# 2008 Express edition. I recently downloaded the C# code from link: http://www.florian-leitner.de/index.php/projects/usb-hid-driver-library/ After compiling the code I got no error nor warning mess ...

1
votes
1 answers

Formatting a string to a output in a decimal format

Hi, I have a program that calculates the average of three test scores. The test scores are entered into text boxes, I convert the text to uint and the result into a double. I then am converting the final result back into a string to disp ...

Feedback