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

C / C++ / MFC

 
GeneralRe: Beginner with VC executing command line Pin
pork chop11-Jul-04 3:35
pork chop11-Jul-04 3:35 
GeneralRe: Beginner with VC executing command line Pin
wb11-Jul-04 3:57
wb11-Jul-04 3:57 
GeneralRe: Beginner with VC executing command line Pin
pork chop12-Jul-04 3:41
pork chop12-Jul-04 3:41 
GeneralRe: Beginner with VC executing command line Pin
pork chop14-Jul-04 18:45
pork chop14-Jul-04 18:45 
GeneralCPropertySheet question Pin
hongheo7610-Jul-04 19:12
hongheo7610-Jul-04 19:12 
Generalproblem reading id3v2 tags Pin
user31610-Jul-04 16:39
user31610-Jul-04 16:39 
GeneralRe: problem reading id3v2 tags Pin
palbano10-Jul-04 17:09
palbano10-Jul-04 17:09 
GeneralRe: problem reading id3v2 tags Pin
user31611-Jul-04 18:34
user31611-Jul-04 18:34 
thanks, i forgot that flag. That helped a little bit. The problem is when i get the frame size sometimes it is incorrect. Or my loop is setup wrong?
This is how im determining the size of each frame of the id3 tag.

int frameSize = ((frameData[0] & 127) << 21) |
((frameData[1] & 127) << 14) |
((frameData[2] & 127) << 7) |
(frameData[3] & 127);

I got this code from another program and dont really understand it very much.
like ((frameData[0] & 127) why 127? and then followed by << 21 why 21?
how were these numbers were pulled out of the hat?

is this correct in determining the frame size?
GeneralOpenGL &amp; GDI+ Pin
mostafa_pasha10-Jul-04 10:50
mostafa_pasha10-Jul-04 10:50 
GeneralOpenGL &amp; GDI+ Pin
mostafa_pasha10-Jul-04 10:48
mostafa_pasha10-Jul-04 10:48 
GeneralSerial &amp; Parrallel Communication! Pin
mostafa_pasha10-Jul-04 10:38
mostafa_pasha10-Jul-04 10:38 
GeneralRe: Serial &amp; Parrallel Communication! Pin
palbano10-Jul-04 17:00
palbano10-Jul-04 17:00 
GeneralDebug Vs. Release Pin
Neelesh K J Jain10-Jul-04 10:30
Neelesh K J Jain10-Jul-04 10:30 
GeneralRe: Debug Vs. Release Pin
palbano10-Jul-04 10:34
palbano10-Jul-04 10:34 
GeneralRe: Debug Vs. Release Pin
Gary R. Wheeler10-Jul-04 13:57
Gary R. Wheeler10-Jul-04 13:57 
Questionhow to get #322776(Dialog) class 's handle Pin
GflPower10-Jul-04 8:51
GflPower10-Jul-04 8:51 
AnswerRe: how to get #322776(Dialog) class 's handle Pin
GflPower10-Jul-04 8:52
GflPower10-Jul-04 8:52 
GeneralRe: how to get #322776(Dialog) class 's handle Pin
PJ Arends10-Jul-04 9:19
professionalPJ Arends10-Jul-04 9:19 
GeneralRe: how to get #322776(Dialog) class 's handle Pin
Johan Rosengren10-Jul-04 9:21
Johan Rosengren10-Jul-04 9:21 
Generalwindow without a caption bar Pin
rezbipul10-Jul-04 8:39
rezbipul10-Jul-04 8:39 
GeneralRe: window without a caption bar Pin
PJ Arends10-Jul-04 9:13
professionalPJ Arends10-Jul-04 9:13 
GeneralRe: window without a caption bar Pin
ThatsAlok10-Jul-04 20:01
ThatsAlok10-Jul-04 20:01 
GeneralTab control clips its children Pin
Jörgen Sigvardsson10-Jul-04 7:18
Jörgen Sigvardsson10-Jul-04 7:18 
GeneralRe: Tab control clips its children Pin
PJ Arends10-Jul-04 9:11
professionalPJ Arends10-Jul-04 9:11 
GeneralRe: Tab control clips its children Pin
Jörgen Sigvardsson10-Jul-04 11:05
Jörgen Sigvardsson10-Jul-04 11:05 

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.