Click here to Skip to main content
16,007,126 members
Home / Discussions / C#
   

C#

 
QuestionRenaming a file.......help me please Pin
Rajdeep.NET is BACK9-Apr-09 20:28
Rajdeep.NET is BACK9-Apr-09 20:28 
AnswerRe: Renaming a file.......help me please Pin
jaypatel5129-Apr-09 20:54
jaypatel5129-Apr-09 20:54 
GeneralRe: Renaming a file.......help me please Pin
Rajdeep.NET is BACK9-Apr-09 21:23
Rajdeep.NET is BACK9-Apr-09 21:23 
GeneralRe: Renaming a file.......help me please Pin
jaypatel5129-Apr-09 21:33
jaypatel5129-Apr-09 21:33 
GeneralRe: Renaming a file.......help me please Pin
Rajdeep.NET is BACK9-Apr-09 22:03
Rajdeep.NET is BACK9-Apr-09 22:03 
GeneralRe: Renaming a file.......help me please Pin
jaypatel5129-Apr-09 22:08
jaypatel5129-Apr-09 22:08 
GeneralRe: Renaming a file.......help me please Pin
Rob Philpott9-Apr-09 22:13
Rob Philpott9-Apr-09 22:13 
GeneralRe: Renaming a file.......help me please Pin
jaypatel5129-Apr-09 21:47
jaypatel5129-Apr-09 21:47 
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;

namespace Extensionchanges
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
OpenFileDialog OpenFileDialog1 = new OpenFileDialog();
OpenFileDialog1.ShowDialog();
string fl = OpenFileDialog1.FileName;
FileInfo fln = new FileInfo(fl);
string temp = fl.Split('.')[0];
fln.CopyTo(temp + ".html");

}
GeneralRe: Renaming a file.......help me please Pin
Rajdeep.NET is BACK9-Apr-09 22:08
Rajdeep.NET is BACK9-Apr-09 22:08 
GeneralRe: Renaming a file.......help me please Pin
jaypatel5129-Apr-09 22:10
jaypatel5129-Apr-09 22:10 
GeneralRe: Renaming a file.......help me please Pin
Rajdeep.NET is BACK9-Apr-09 22:22
Rajdeep.NET is BACK9-Apr-09 22:22 
GeneralRe: Renaming a file.......help me please Pin
DaveyM699-Apr-09 22:42
professionalDaveyM699-Apr-09 22:42 
GeneralRe: Renaming a file.......help me please Pin
jaypatel51210-Apr-09 0:11
jaypatel51210-Apr-09 0:11 
AnswerRe: Renaming a file.......help me please Pin
Henry Minute10-Apr-09 1:15
Henry Minute10-Apr-09 1:15 
QuestionAccess to another form's controls. Pin
Fatemeh.k9-Apr-09 19:39
Fatemeh.k9-Apr-09 19:39 
AnswerRe: Access to another form's controls. Pin
Giorgi Dalakishvili9-Apr-09 19:56
mentorGiorgi Dalakishvili9-Apr-09 19:56 
AnswerRe: Access to another form's controls. Pin
jaypatel5129-Apr-09 20:04
jaypatel5129-Apr-09 20:04 
GeneralRe: Access to another form's controls. Pin
Fatemeh.k9-Apr-09 20:16
Fatemeh.k9-Apr-09 20:16 
GeneralRe: Access to another form's controls. Pin
DaveyM699-Apr-09 22:35
professionalDaveyM699-Apr-09 22:35 
GeneralRe: Access to another form's controls. Pin
Fatemeh.k13-Apr-09 21:46
Fatemeh.k13-Apr-09 21:46 
GeneralRe: Access to another form's controls. Pin
DaveyM6914-Apr-09 9:10
professionalDaveyM6914-Apr-09 9:10 
QuestionHow to add data from multiple table to datagrid in C# Pin
aashish.saalvi9-Apr-09 18:01
aashish.saalvi9-Apr-09 18:01 
AnswerRe: How to add data from multiple table to datagrid in C# Pin
jaypatel5129-Apr-09 20:09
jaypatel5129-Apr-09 20:09 
QuestionTabIndex Order problem Pin
soulidentities9-Apr-09 17:14
soulidentities9-Apr-09 17:14 
AnswerRe: TabIndex Order problem Pin
Henry Minute10-Apr-09 1:25
Henry Minute10-Apr-09 1:25 

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.