I've created a little ocx for playing mp3 files since i mousevents won't work on the mediaplayer's button bar. I have 1 property: "Filename" and 3 functions: play, pause, stop. know this is what i need to do in my code:

VB Code:
  1. 'uAudio is my usercontrol
  2. Dim mAud as uAudio
  3. Set uAud = uAudio1
  4. 'and the move it using uAud

i can move my control using uAudio1.Left = a number, uAudio1.top = another number, but wheni sub Set uAud = uAudio1 then i can't acces the property's left, top, height, ..... with uAud.Left

thanks,

FrEaK