Click here to Skip to main content
15,902,492 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
GeneralRe: need .lib file Pin
trinadh_t20-Jun-06 20:34
trinadh_t20-Jun-06 20:34 
GeneralRe: need .lib file Pin
Cedric Moonen20-Jun-06 20:45
Cedric Moonen20-Jun-06 20:45 
GeneralRe: need .lib file Pin
trinadh_t20-Jun-06 20:56
trinadh_t20-Jun-06 20:56 
GeneralRe: need .lib file Pin
Steve Echols20-Jun-06 20:31
Steve Echols20-Jun-06 20:31 
GeneralRe: need .lib file Pin
trinadh_t20-Jun-06 20:41
trinadh_t20-Jun-06 20:41 
GeneralRe: need .lib file Pin
Steve Echols20-Jun-06 21:03
Steve Echols20-Jun-06 21:03 
GeneralRe: need .lib file Pin
trinadh_t20-Jun-06 21:11
trinadh_t20-Jun-06 21:11 
GeneralRe: need .lib file Pin
Steve Echols20-Jun-06 21:24
Steve Echols20-Jun-06 21:24 
AnswerRe: need .lib file Pin
Hamid_RT20-Jun-06 21:00
Hamid_RT20-Jun-06 21:00 
GeneralRe: need .lib file Pin
trinadh_t20-Jun-06 21:09
trinadh_t20-Jun-06 21:09 
GeneralRe: need .lib file Pin
Hamid_RT20-Jun-06 21:20
Hamid_RT20-Jun-06 21:20 
QuestionEditbox property change Pin
Ram Murali20-Jun-06 18:17
Ram Murali20-Jun-06 18:17 
AnswerRe: Editbox property change Pin
_AnsHUMAN_ 20-Jun-06 18:35
_AnsHUMAN_ 20-Jun-06 18:35 
AnswerRe: Editbox property change Pin
Hamid_RT20-Jun-06 18:49
Hamid_RT20-Jun-06 18:49 

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.