Click here to Skip to main content
16,015,641 members
Home / Discussions / C#
   

C#

 
GeneralRe: when to use Point to screen Pin
yonitgil24-Oct-04 4:43
yonitgil24-Oct-04 4:43 
GeneralEditing a winforms DataGrid Pin
bartwinsimpson23-Oct-04 22:01
bartwinsimpson23-Oct-04 22:01 
GeneralRe: Editing a winforms DataGrid Pin
Ghazi H. Wadi24-Oct-04 0:49
Ghazi H. Wadi24-Oct-04 0:49 
GeneralRe: Editing a winforms DataGrid Pin
DougW4824-Oct-04 5:36
DougW4824-Oct-04 5:36 
GeneralC# remoting for interprocess communication Pin
ting66823-Oct-04 17:54
ting66823-Oct-04 17:54 
GeneralRe: C# remoting for interprocess communication Pin
Alex Korchemniy24-Oct-04 9:31
Alex Korchemniy24-Oct-04 9:31 
GeneralRe: C# remoting for interprocess communication Pin
ting66824-Oct-04 15:50
ting66824-Oct-04 15:50 
QuestionEdit MP3 ID3 Tags in C#? Pin
ethanwa23-Oct-04 17:22
ethanwa23-Oct-04 17:22 
Anyone know a good place to find a DLL/Project that I can import into my Solution that allows me to edit an ID3 tag in an MP3?

Currently out there the pickings are slim for anything that updates version 2 tags. I want something simple that I can reference like this:

using ID3Edit;

private void Get()
{
ID3Tag id3Tag = new ID3Tag();
id3Tag.GetV2andV1Tag("C:\\test.mp3");
txtTitleV2.Text = id3Tag.TitleV2;
txtTitleV1.Text = id3Tag.TitleV1;
}

private void Save()
{
id3Tag.TitleV2 = txtTitle.Text;
id3Tag.UpdateV2Tag("C:\\test.mp3");
}

I would be willing to pay $100 or so if someone could create a DLL like this for me within the next few days. I bet many other people out there are willing to pay for it as well. If you know of something that's already created in C# that is as easy to use as my above code, email me right away. I just don't have the time or knowledge to put something like that together.

Email me for details if you want the job or if you have a DLL like this:

Ethan
ethanwa@comcast.net
AnswerRe: Edit MP3 ID3 Tags in C#? Pin
Nick Parker24-Oct-04 4:06
protectorNick Parker24-Oct-04 4:06 
QuestionInstall problem? Pin
Yulianto.23-Oct-04 16:51
Yulianto.23-Oct-04 16:51 
GeneralHelp please Pin
Yulianto.23-Oct-04 16:48
Yulianto.23-Oct-04 16:48 
GeneralRe: Help please Pin
Alex Korchemniy24-Oct-04 9:22
Alex Korchemniy24-Oct-04 9:22 
GeneralClone a copy of System.WIndows.Forms.Panel Pin
hoho_leung23-Oct-04 13:16
hoho_leung23-Oct-04 13:16 
GeneralRe: Clone a copy of System.WIndows.Forms.Panel Pin
Alex Korchemniy23-Oct-04 13:32
Alex Korchemniy23-Oct-04 13:32 
General.net style Pin
tom_dx23-Oct-04 11:35
tom_dx23-Oct-04 11:35 
GeneralRe: .net style Pin
Alex Korchemniy23-Oct-04 13:39
Alex Korchemniy23-Oct-04 13:39 
QuestionDisposing a form in another thread? Pin
Carl Mercier23-Oct-04 7:11
Carl Mercier23-Oct-04 7:11 
AnswerRe: Disposing a form in another thread? Pin
Carl Mercier23-Oct-04 7:30
Carl Mercier23-Oct-04 7:30 
GeneralRe: Disposing a form in another thread? Pin
Dennis C. Dietrich23-Oct-04 9:19
Dennis C. Dietrich23-Oct-04 9:19 
QuestionHow to get absolute value of the pixel cordinates using mouse position Pin
Anonymous23-Oct-04 6:48
Anonymous23-Oct-04 6:48 
AnswerRe: How to get absolute value of the pixel cordinates using mouse position Pin
Alex Korchemniy23-Oct-04 12:33
Alex Korchemniy23-Oct-04 12:33 
GeneralRefresh DataGrid question Pin
markdbd23-Oct-04 6:21
markdbd23-Oct-04 6:21 
GeneralRe: Refresh DataGrid question Pin
Alex Korchemniy23-Oct-04 12:40
Alex Korchemniy23-Oct-04 12:40 
GeneralRe: Refresh DataGrid question Pin
markdbd24-Oct-04 2:13
markdbd24-Oct-04 2:13 
GeneralRe: Refresh DataGrid question Pin
Alex Korchemniy24-Oct-04 9:08
Alex Korchemniy24-Oct-04 9:08 

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.