Search results

  1. N

    Tab Control Back Color

    Quick question here I hope. I've got a little box covering up a drop down arrow on a combo control that resides on a tab control. The problem is that, since the Back Color property isn't available for a tab control, I have no idea what color it is...which is what the color of my box object...
  2. N

    Using a multi-instanced form as a child form

    Kind of a strange one here. I know how to create the instances, but I don't then know how to refer to them to set the new instance as the Source Object of a subform control. For example, I have a form with a tab control consisting of 19 different tabs. Each tab needs to display a different...
  3. N

    For...Next: Help cycling through controls

    Aright folks, clearly I must just be doing something stupid. I can't see why this is happening. Please help point out my idiocy ;) Here's the code: x = RandomNumbers(intHowMany, , intHowMany) q = 1 For n = LBound(x) To UBound(x) Select Case strCapValue Case...
  4. N

    Pass form valued argument to module

    I'm guessing this is a pretty dumb question, but I'm getting a data type mismatch when trying to pass my argument from a form to my module subroutine. Here's the subroutine (which is likely not very efficient, nor complete): Public Sub AssignQA(objForm As Form) Dim intI, intP, x, n As...
Back
Top Bottom