Click here to Skip to main content
15,920,596 members
Home / Discussions / C#
   

C#

 
Questiondynamic web proxy using c#? Pin
gunganesh19825-Mar-08 18:57
gunganesh19825-Mar-08 18:57 
GeneralGraphical XML designer [modified] Pin
Maddie from Dartford5-Mar-08 18:39
Maddie from Dartford5-Mar-08 18:39 
GeneralRe: Graphical XML designer Pin
Christian Graus5-Mar-08 21:38
protectorChristian Graus5-Mar-08 21:38 
GeneralRe: Graphical XML designer Pin
Maddie from Dartford5-Mar-08 23:42
Maddie from Dartford5-Mar-08 23:42 
Generalproblem with System.Threading.Timer Pin
saikiran5-Mar-08 17:57
saikiran5-Mar-08 17:57 
GeneralRe: problem with System.Threading.Timer Pin
Guffa5-Mar-08 20:32
Guffa5-Mar-08 20:32 
GeneralRe: problem with System.Threading.Timer Pin
PIEBALDconsult6-Mar-08 7:17
mvePIEBALDconsult6-Mar-08 7:17 
GeneralInserting blank line into a spreadsheet file with code Pin
BraveKnightFSJ5-Mar-08 17:20
BraveKnightFSJ5-Mar-08 17:20 
Hello,

I have created an excel spreadsheet file using the ole database engine. I have it populating the file without a problem. I am now trying to insert a blank lines into the file to make the transition look better. The way I am currently doing it is

string InsertStatement;
InsertStatement = "Insert into [tabname$] (";
for(int i = 0; i < ExcelColumns; i++)
{
InsertStatement += "null";
if(i < ExcelColumns-1)
InsertStatement += ",";
}
InsertStatement += ")";

then I put that into a oledbcommand and my connection to the excel file. The the rest of it works fine. But the blank line does not.

Any help would be greatly appreciated.
GeneralConsole.WriteLine in color Pin
Imtiaz Murtaza5-Mar-08 14:59
Imtiaz Murtaza5-Mar-08 14:59 
GeneralRe: Console.WriteLine in color Pin
darkelv5-Mar-08 16:36
darkelv5-Mar-08 16:36 
GeneralRe: Console.WriteLine in color Pin
Anthony Mushrow5-Mar-08 21:24
professionalAnthony Mushrow5-Mar-08 21:24 
Questionplz tell me how i can develope backup server using C# and MS Sql Pin
saiftanoli5-Mar-08 14:50
saiftanoli5-Mar-08 14:50 
GeneralRe: plz tell me how i can develope backup server using C# and MS Sql Pin
Christian Graus5-Mar-08 14:55
protectorChristian Graus5-Mar-08 14:55 
GeneralRe: plz tell me how i can develope backup server using C# and MS Sql Pin
Pete O'Hanlon5-Mar-08 22:03
mvePete O'Hanlon5-Mar-08 22:03 
GeneralRichtextbox questions/problems.. Pin
Jacob Dixon5-Mar-08 13:31
Jacob Dixon5-Mar-08 13:31 
GeneralRe: Richtextbox questions/problems.. Pin
Jacob Dixon5-Mar-08 15:23
Jacob Dixon5-Mar-08 15:23 
GeneralRe: Richtextbox questions/problems.. Pin
W Balboos, GHB6-Mar-08 9:46
W Balboos, GHB6-Mar-08 9:46 
GeneralRe: Richtextbox questions/problems.. Pin
Jacob Dixon6-Mar-08 12:29
Jacob Dixon6-Mar-08 12:29 
GeneralRe: Richtextbox questions/problems.. Pin
Jacob Dixon6-Mar-08 12:53
Jacob Dixon6-Mar-08 12:53 
GeneralRe: Richtextbox questions/problems.. Pin
W Balboos, GHB7-Mar-08 2:31
W Balboos, GHB7-Mar-08 2:31 
GeneralRe: Richtextbox questions/problems.. Pin
Jacob Dixon7-Mar-08 12:45
Jacob Dixon7-Mar-08 12:45 
GeneralRe: Richtextbox questions/problems.. Pin
Jacob Dixon7-Mar-08 13:29
Jacob Dixon7-Mar-08 13:29 
GeneralRe: Richtextbox questions/problems.. Pin
W Balboos, GHB10-Mar-08 1:11
W Balboos, GHB10-Mar-08 1:11 
QuestionArchitecture Question! Pin
Jammer5-Mar-08 10:41
Jammer5-Mar-08 10:41 
GeneralRe: Architecture Question! Pin
Christian Graus5-Mar-08 10:56
protectorChristian Graus5-Mar-08 10:56 

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.