Click here to Skip to main content
15,887,135 members
Home / Discussions / C#
   

C#

 
QuestionWrting Image data in Mifare 1k card Pin
GauravKP2-Jul-09 2:43
professionalGauravKP2-Jul-09 2:43 
AnswerRe: Wrting Image data in Mifare 1k card Pin
Rajesh R Subramanian2-Jul-09 3:07
professionalRajesh R Subramanian2-Jul-09 3:07 
Questionwhat do i have to do next Pin
j4ck1we2-Jul-09 2:20
j4ck1we2-Jul-09 2:20 
AnswerRe: what do i have to do next Pin
dojohansen2-Jul-09 2:27
dojohansen2-Jul-09 2:27 
JokeRe: what do i have to do next Pin
musefan2-Jul-09 2:34
musefan2-Jul-09 2:34 
AnswerRe: what do i have to do next Pin
musefan2-Jul-09 2:30
musefan2-Jul-09 2:30 
AnswerRe: what do i have to do next Pin
j4ck1we2-Jul-09 7:32
j4ck1we2-Jul-09 7:32 
QuestionIOException and Number formatting Pin
Megidolaon2-Jul-09 1:55
Megidolaon2-Jul-09 1:55 
I'm writing a small program to help me sort my thousands of images.
But whenever I want to rename a file, I get the following error:
The process cannot access the file because it is being used by another process.

I use the following code for it
private void B_Rename_Click(object sender, EventArgs e)
        {
            L_Status.Text = "";
            File.Move(Path.GetFullPath(images[current]), Path.GetFullPath(TB_New_Name.Text));
            L_Status.Text = "image '" + images[current] + "." + extension + 
            "'\r\nhas been renamed to\r\n'" +
            TB_New_Name.Text + "." + extension + "'";
            images[current] = TB_New_Name.Text;
        }
images is the string list holding the file names, current is the current index and extension is the file extension.

My other problem is the number formatting.
The images should be named with numbers, but since windows sorting is strictly text based, 2 would come after 10.
So, I tried the string.Format method to name the images 001, 002, etc., but it doesn't quite work.
public F_Main()
        {
            InitializeComponent();
            files = Directory.GetFiles(dir);
            this.Text = string.Format("{0:00}", 1);
            this.Text += " - ";
            this.Text = string.Format("{0:00}", 12);
            this.Text += " - ";
            this.Text += string.Format("{0:00}", 120);
         }
I thought this code would display "001 - 012 - 120" in the form title, but instead it onlydisplays "12 - 120"

Thanks.
AnswerRe: IOException and Number formatting Pin
Luc Pattyn2-Jul-09 2:02
sitebuilderLuc Pattyn2-Jul-09 2:02 
AnswerRe: IOException and Number formatting Pin
stancrm2-Jul-09 2:06
stancrm2-Jul-09 2:06 
GeneralRe: IOException and Number formatting Pin
musefan2-Jul-09 2:21
musefan2-Jul-09 2:21 
AnswerRe: IOException and Number formatting Pin
musefan2-Jul-09 2:11
musefan2-Jul-09 2:11 
AnswerRe: IOException and Number formatting Pin
Henry Minute2-Jul-09 2:13
Henry Minute2-Jul-09 2:13 
GeneralRe: IOException and Number formatting Pin
musefan2-Jul-09 2:17
musefan2-Jul-09 2:17 
GeneralRe: IOException and Number formatting Pin
Henry Minute2-Jul-09 2:20
Henry Minute2-Jul-09 2:20 
GeneralRe: IOException and Number formatting Pin
musefan2-Jul-09 2:23
musefan2-Jul-09 2:23 
AnswerRe: IOException and Number formatting Pin
Megidolaon2-Jul-09 11:27
Megidolaon2-Jul-09 11:27 
QuestionMifare RFID reader with GNET Plus protocol Pin
GerritdL2-Jul-09 1:43
GerritdL2-Jul-09 1:43 
AnswerRe: Mifare RFID reader with GNET Plus protocol Pin
Henry Minute2-Jul-09 2:17
Henry Minute2-Jul-09 2:17 
AnswerRe: Mifare RFID reader with GNET Plus protocol Pin
GerritdL6-Jul-09 20:17
GerritdL6-Jul-09 20:17 
GeneralRe: Mifare RFID reader with GNET Plus protocol Pin
Muhammad Yousuf Maher16-Jul-14 3:04
Muhammad Yousuf Maher16-Jul-14 3:04 
Questionexception trying to insert a range to an Excelsheet Pin
Harry6662-Jul-09 1:23
Harry6662-Jul-09 1:23 
AnswerRe: exception trying to insert a range to an Excelsheet Pin
padmanabhan N2-Jul-09 1:44
padmanabhan N2-Jul-09 1:44 
GeneralRe: exception trying to insert a range to an Excelsheet Pin
Harry6662-Jul-09 5:04
Harry6662-Jul-09 5:04 
AnswerRe: exception trying to insert a range to an Excelsheet Pin
MumbleB2-Jul-09 1:47
MumbleB2-Jul-09 1:47 

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.