Click here to Skip to main content
15,899,313 members
Home / Discussions / Article Writing
   

Article Writing

 
GeneralRe: Windows services & GUI in .NET Pin
ma.poggi-cons19-Jul-04 4:23
ma.poggi-cons19-Jul-04 4:23 
GeneralRe: Windows services & GUI in .NET Pin
Tim Kohler19-Jul-04 5:20
Tim Kohler19-Jul-04 5:20 
GeneralRe: Windows services & GUI in .NET Pin
ma.poggi-cons19-Jul-04 5:30
ma.poggi-cons19-Jul-04 5:30 
Generalarticle req Pin
Saud AKhter18-Jul-04 21:20
Saud AKhter18-Jul-04 21:20 
GeneralRe: article req Pin
Steven Campbell19-Jul-04 3:43
Steven Campbell19-Jul-04 3:43 
Generalplease write a article for "How to add Image to PDF File" using Visual C++ Pin
pubududilena15-Jul-04 18:40
pubududilena15-Jul-04 18:40 
GeneralFolder Renamer Pin
Insane99914-Jul-04 14:44
Insane99914-Jul-04 14:44 
GeneralRe: Folder Renamer Pin
Salil Khedkar24-Aug-04 0:54
Salil Khedkar24-Aug-04 0:54 
Here is the C# sample code which will help you

using System;
using System.IO;

// Read your text file with names
// Form path1 with studentname
// Form path2 with studentid
// Execute the following code in a loop

string path = "C:\xxx\xxx\" + "Studentname.txt";
string path2 = C:"\xx\xxx\" + "StudentID.txt"

if (!File.Exists(path))
{
// This statement ensures that the file is created,
// but the handle is not kept.
using (FileStream fs = File.Create(path)) {}
}

// Move the file.
File.Move(path, path2);
Console.WriteLine("{0} was moved to {1}.", path, path2);

GeneralArticle request from CP database experts Pin
pankajdaga11-Jul-04 2:13
pankajdaga11-Jul-04 2:13 
Questionhow to copy output of mschart directly to a .bmp file without using clipboard Pin
sushma nagaraj1-Jul-04 21:34
sushma nagaraj1-Jul-04 21:34 
Generalhelp me !!!!! Pin
sreejith ss nair22-Jun-04 22:29
sreejith ss nair22-Jun-04 22:29 
GeneralRe: help me !!!!! Pin
Colin Angus Mackay23-Jun-04 11:26
Colin Angus Mackay23-Jun-04 11:26 
GeneralBasic Installer Requirements Pin
tanstaafl2817-Jun-04 9:10
tanstaafl2817-Jun-04 9:10 
GeneralRe: Basic Installer Requirements Pin
Blake Miller23-Jun-04 10:13
Blake Miller23-Jun-04 10:13 
GeneralRe: Basic Installer Requirements Pin
tanstaafl2823-Jun-04 18:58
tanstaafl2823-Jun-04 18:58 
GeneralRe: Basic Installer Requirements Pin
FishFearMe.NET9-Jul-04 3:04
FishFearMe.NET9-Jul-04 3:04 
GeneralCD-ROM AutoPlay/AutoRun Pin
Blake Miller17-Jun-04 4:39
Blake Miller17-Jun-04 4:39 
GeneralRe: CD-ROM AutoPlay/AutoRun Pin
eggie523-Jun-04 8:34
eggie523-Jun-04 8:34 
GeneralRe: CD-ROM AutoPlay/AutoRun Pin
Blake Miller23-Jun-04 9:01
Blake Miller23-Jun-04 9:01 
GeneralRe: CD-ROM AutoPlay/AutoRun Pin
eggie523-Jun-04 9:52
eggie523-Jun-04 9:52 
GeneralRe: CD-ROM AutoPlay/AutoRun Pin
Blake Miller23-Jun-04 10:08
Blake Miller23-Jun-04 10:08 
GeneralRe: CD-ROM AutoPlay/AutoRun Pin
eggie523-Jun-04 10:23
eggie523-Jun-04 10:23 
Generalcom\Com+ Pin
sreejith ss nair15-Jun-04 19:46
sreejith ss nair15-Jun-04 19:46 
GeneralRe: com\Com+ Pin
Michael Dunn16-Jun-04 20:10
sitebuilderMichael Dunn16-Jun-04 20:10 
GeneralRe: com\Com+ Pin
sreejith ss nair16-Jun-04 20:35
sreejith ss nair16-Jun-04 20:35 

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.