T
tomi.trescak
Hi
I'm rewriting some old vbscript to .NET (C#) and i dont understand
what does following mean:
for intVBRMode = 1 to 4
objProfile.VBRMode(WMENC_AUDIO, 0) = intVBRMode
select case intVBRMode
case WMENC_PVM_NONE
OutputInfo "CBR Mode :"
case else
OutputInfo "Unknown Mode"
end select
next
i can guest what the syntax is .. but i don't get the meaning of it.
it should extract profile from objProfile.VBRMode ... by substituting
0 by "intVbrMode" and then work with it ... object in the "case" are
actually enums type WMENC_PVM_AUDIOCODEC ... not int as i see it.
pleeeeeaaaaase help ;(((
thanks a lot
Tomi
I'm rewriting some old vbscript to .NET (C#) and i dont understand
what does following mean:
for intVBRMode = 1 to 4
objProfile.VBRMode(WMENC_AUDIO, 0) = intVBRMode
select case intVBRMode
case WMENC_PVM_NONE
OutputInfo "CBR Mode :"
case else
OutputInfo "Unknown Mode"
end select
next
i can guest what the syntax is .. but i don't get the meaning of it.
it should extract profile from objProfile.VBRMode ... by substituting
0 by "intVbrMode" and then work with it ... object in the "case" are
actually enums type WMENC_PVM_AUDIOCODEC ... not int as i see it.
pleeeeeaaaaase help ;(((
thanks a lot
Tomi