Click here to Skip to main content
15,910,773 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Shell Execute Not Working Pin
kerr_forever20-Jun-06 22:49
kerr_forever20-Jun-06 22:49 
QuestionRe: Shell Execute Not Working Pin
Hamid_RT20-Jun-06 22:23
Hamid_RT20-Jun-06 22:23 
QuestionFormated output Pin
eusto20-Jun-06 21:14
eusto20-Jun-06 21:14 
QuestionHow could i get start? Pin
Syouki_kou20-Jun-06 20:38
Syouki_kou20-Jun-06 20:38 
QuestionHeader files unistd.h and sys/file.h Pin
Programmer Anju20-Jun-06 20:35
Programmer Anju20-Jun-06 20:35 
AnswerRe: Header files unistd.h and sys/file.h Pin
Viorel.20-Jun-06 22:03
Viorel.20-Jun-06 22:03 
GeneralRe: Header files unistd.h and sys/file.h [modified] Pin
Programmer Anju21-Jun-06 18:47
Programmer Anju21-Jun-06 18:47 
Questionmove a control on dialog box [modified] Pin
yogendra kaushik20-Jun-06 20:28
yogendra kaushik20-Jun-06 20:28 
AnswerRe: move a control on dialog box Pin
Naveen20-Jun-06 20:33
Naveen20-Jun-06 20:33 
GeneralRe: move a control on dialog box Pin
yogendra kaushik20-Jun-06 20:39
yogendra kaushik20-Jun-06 20:39 
GeneralRe: move a control on dialog box Pin
Anilkumar K V20-Jun-06 20:41
Anilkumar K V20-Jun-06 20:41 
GeneralRe: move a control on dialog box Pin
yogendra kaushik20-Jun-06 21:59
yogendra kaushik20-Jun-06 21:59 
GeneralRe: move a control on dialog box Pin
Hamid_RT20-Jun-06 22:22
Hamid_RT20-Jun-06 22:22 
AnswerRe: move a control on dialog box Pin
_AnsHUMAN_ 20-Jun-06 20:47
_AnsHUMAN_ 20-Jun-06 20:47 
GeneralRe: move a control on dialog box Pin
yogendra kaushik20-Jun-06 20:54
yogendra kaushik20-Jun-06 20:54 
GeneralRe: move a control on dialog box Pin
_AnsHUMAN_ 20-Jun-06 21:04
_AnsHUMAN_ 20-Jun-06 21:04 
AnswerRe: move a control on dialog box Pin
Hamid_RT20-Jun-06 20:54
Hamid_RT20-Jun-06 20:54 
QuestionHelp on WinInet Programming Pin
Girish60120-Jun-06 20:09
Girish60120-Jun-06 20:09 
QuestionReading from Excel Pin
Anu_Bala20-Jun-06 19:55
Anu_Bala20-Jun-06 19:55 
AnswerRe: Reading from Excel Pin
Hamid_RT20-Jun-06 20:27
Hamid_RT20-Jun-06 20:27 
AnswerRe: Reading from Excel Pin
zeus_master20-Jun-06 22:59
zeus_master20-Jun-06 22:59 
Questionneed .lib file Pin
trinadh_t20-Jun-06 18:47
trinadh_t20-Jun-06 18:47 
Hi All,

I am unable to find which library file(.lib) need to use for this program.

Here i am including my code.

#include <stdio.h>
#include <fileref.h>
#include "tag.h"

using namespace std;
using namespace TagLib;

int main(int argc, char *argv[])
{
TagLib::FileRef f("DEV.mp3");
if(!f.isNull() && f.tag()) {

TagLib::Tag *tag = f.tag();
cout << "-- TAG --" << endl;
cout << "title - \"" << tag->title() << "\"" << endl;
cout << "artist - \"" << tag->artist() << "\"" << endl;
cout << "album - \"" << tag->album() << "\"" << endl;
cout << "year - \"" << tag->year() << "\"" << endl;
cout << "comment - \"" << tag->comment() << "\"" << endl;
cout << "track - \"" << tag->track() << "\"" << endl;
cout << "genre - \"" << tag->genre() << "\"" << endl;
}
return 0;
}

can anyone please help me for this problem.

waiting 4 ur earlier reply

bye
Trinadh
AnswerRe: need .lib file Pin
Steve Echols20-Jun-06 19:39
Steve Echols20-Jun-06 19:39 
GeneralRe: need .lib file Pin
trinadh_t20-Jun-06 20:21
trinadh_t20-Jun-06 20:21 
GeneralRe: need .lib file Pin
Cedric Moonen20-Jun-06 20:26
Cedric Moonen20-Jun-06 20:26 

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.