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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by rickyoswaldiow

  1. rickyoswaldiow

    Refering to a recordset member with a variable.

    Good evening all. Is it possible to reference a recorset member with a variable? i.e.: strString = "FieldName" With rsRecordset ![strString] = "Some Text" End With
  2. rickyoswaldiow

    ToolTipText on a Disabled Control.

    I'll just keep the ToolTipText on the controls label for now :P
  3. rickyoswaldiow

    ToolTipText on a Disabled Control.

    You're suggesting I place a label over the control, set the lables Visible property to False and have the ToolTipText on said label?
  4. rickyoswaldiow

    ToolTipText on a Disabled Control.

    Good morning all. Today I am working on User Guides and Documentation for my project. When the Enabled property of a control is set to False, the ToolTipText does not display! This is most annoying, is there a way around this?
  5. rickyoswaldiow

    Impact on execution speed and application size from modules and func..

    Since this has wandered off from the original topic, I am going to make a new post...
  6. rickyoswaldiow

    Impact on execution speed and application size from modules and func..

    tedsmith: When you run that block of code, the array would instantly be populated with every control on the form? What I want is for an individual control to add itself to an array on its own change event...
  7. rickyoswaldiow

    Masking a inputbox response

    /me has not used an inputbox before Ignore my posts :p
  8. rickyoswaldiow

    Masking a inputbox response

    Click on your control (inputbox) and look into the "Proerties" window. There is a property called "PasswordChar". Put a "*" in here and from now on all characters typed into your inputbox will appear as a *.
  9. rickyoswaldiow

    Masking a inputbox response

    I could have sworn there was a proprty to enable this...
  10. rickyoswaldiow

    Impact on execution speed and application size from modules and func..

    I can see what you're saying three57m but that is not really what I was looking for. What you describe is setting up a variable for every control - not really viable when you have hundreds of controls... What I am looking to do is somthing along these lines: Sub Control_Change() intArray =...
  11. rickyoswaldiow

    Impact on execution speed and application size from modules and func..

    *EDIT* ...if you change one field on one tab...
  12. rickyoswaldiow

    Impact on execution speed and application size from modules and func..

    JoeAtWork Said: Most definately. Part of the problem with the application I am working from is there are too few modules and classes, each handling unrelated events. This is why I was asking if it would be a sensible move to add more modules and functions. SBerthold Said: Under the...
  13. rickyoswaldiow

    Breaking down the text in a multi-line text box...

    I think I am saying "I wish there was documentation and notes with this project..." ;)

Part and Inventory Search

Back
Top