Recent content by Dunro

  1. D

    Instanced Forms Disappearing / Drop-down based MsgBox

    Thanks everyone for your input. Finally found the solution I was looking for. Unfortunately, it requires an API call for Sleep to work, but otherwise, it does what I originally wanted. Revised code below: Private Sub cmdReplace_Click() Dim newForm As [Form_Form Question]...
  2. D

    Instanced Forms Disappearing / Drop-down based MsgBox

    I am trying to create (or find...) something generic that can be called in place of a msgbox or inputbox. It could certainly be table driven, but I don't want to maintain a different pop-up form for every variation of this function. The pop-up should obtain the user input and pass it back to...
  3. D

    Instanced Forms Disappearing / Drop-down based MsgBox

    Obviously the outcomes are hard coded and there's an if/else involved down the line, but I know I will need this kind of user input again later and would rather extend from the same base.
  4. D

    Instanced Forms Disappearing / Drop-down based MsgBox

    Can you suggest an alternative method for value-list based user input? I'd rather not be maintaining a(nother) form simply for this one purpose. :)
  5. D

    Instanced Forms Disappearing / Drop-down based MsgBox

    Hi! I'm trying to create a drop-down based Msgbox/Inputbox-like form for general purposes. When I try to modify the events using CreateEventProc / InsertLines, all of my instanced forms close abruptly. I've tried this with both a form copied by CopyObject as well as with a new form created by...
Back
Top Bottom