Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: STPMB
  • Content: Threads
  • Order by date
  1. STPMB

    client access sign on and VB sign on

    Does anyone know of a procedure or API to stop the client access sign on acreen from appearing before a user signs on to a VB application? It seems like redundant work for the users.
  2. STPMB

    Changing the backcolor of data controls

    I am trying to use the change the background color of data controls like, data combo, flexgrid, datalists, etc in a procedure but they don't seem to work when the color is identifed like ControlBackColor = vbWindowBackground but it does work with code ControlBackColor = vbRed what is the...
  3. STPMB

    changing a list or array of controls property in a module?

    Is it possible to create a list or array of various types of controls in a subprocedure of a form and pass that list or array to a module that will change certain properties of those controls. I don't want to read through the whole controls collection if possible. Appreciate any comments.
  4. STPMB

    Control collection value returned in debug or print

    Can someone explain what the value is that is being returned from a controls colletions when I debug the variable assigned as a control. for instance when reading through the controls on a form I declared variable actl as control but when debugging or printing the variable actl it returns...
  5. STPMB

    how do you check if a control is within another control?

    How do you know if one control such as an option button is within another control such as a frame?
  6. STPMB

    Option Button text remain black but button disabled?

    Is it possible to change the text color on certain controls like check boxes or option buttons in a program while the enabled property is false? I don't want to grey out the control even though it has been changed to enabled = false.
  7. STPMB

    Disable form but have control box remain active

    Is it possible to set a forms enable property to false but still allow the control box features to remain active?
  8. STPMB

    Passing an array into a module subprocedure

    Hello, I am having trouble passing a control array into a sub procedure contained in a module. I am getting a combile error 'ByRef argument type mismatch error. I have code similar to below. In the main form: DIM modmanfields(7) as Control Call subprocedure(arg1,arg2,arg3) 'where arg2 is the...
  9. STPMB

    comparing control name with string name

    Is there some way to compare a control name with a string?. Is it possible to build an control array without using the controls collection. I don't want to check every control on a form, only certain mandatory ones that need user input before exiting the form. I tried defining a Control array...
  10. STPMB

    Displaying a tree view with separate forms.

    Good evening all. Can a separate form be shown beside a treeview or must the treeview and form be build together in one form?
  11. STPMB

    Compare a string with "string"?

    Is it possible to compare a string variable with a string in double quotes or do they both have to be defined string variables? I know I can use the strComp function but am curious why the other won't work.
  12. STPMB

    Keeping forms inquiry only but allowing flow through

    What is the best way to keep fields on multiple forms protected but still allow certain command functions to inquiry on various forms throughout an application?
  13. STPMB

    child form cutting off inside MDI parent form?

    I can't seem to figure out why a child form is being cut in size to fit inside the parent form eventhough the size fields of the child form are smaller than the parent form. Any ideas?
  14. STPMB

    ToolTipText multiline capability and maximum length?

    Can the ToolTipText control string be multilined and is there a maximum length it can hold?
  15. STPMB

    Autmatically moving focus between controls

    Is the best way to move thefocus automatically between controls by setting up a control array and incrementing the index after each control has had it's data validated?
  16. STPMB

    Color change in text entry box to signify mandatory field

    This is probably an easy question but before a user can exit a form what code would I use to change the color of a text entry control to notify the user that the field is mandatory?
  17. STPMB

    displaying mandatory fields

    Hi, What is the best options to display mandatory field prompts after the user tries to move to the next window? ie. message box listing the fields highlighting fields displaying an * beside the fields appreciate any help
  18. STPMB

    Building a helpfile & context sensitve help

    I need some information on building a helpfile and the context sensitve help for controls. Any helpful hints or good book recommendations would be appreciated. Thank you
  19. STPMB

    Finding a control on a form with multible tabs

    I am scrolling through the object bar in the properties window to locate controls that need renaming or deleting but am having trouble finding the controls on a form with multiple tabs. Is there a quick way to do this? Appreciate any help.
  20. STPMB

    auto renumbering of tab indexes add-in?

    Is there an add in that will read through the controls ona form and automatically renumber the tab indexes?

Part and Inventory Search

Back
Top