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!

Search results for query: *

  • Users: rickyoswaldiow
  • Order by date
  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..." ;)
  14. rickyoswaldiow

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

    In addition to the above question I would like to ask if the following method is technically viable: My form has a SSTab control and also references several different tables in a database. The controls on each tab do not nessicarily relate to a single table, controls relating to tblVairables...
  15. rickyoswaldiow

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

    Good afternoon everybody. Today I am working on some project design work. I am reverse-engineering parts of an application that have been built in VBA. I have all of the technical information required for the project but I am wondering; If I go for a highly modularised design using many...
  16. rickyoswaldiow

    Click event executing on more than just a click!

    Not in my version of VB6 :|
  17. rickyoswaldiow

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

    That is exactly why it does not lend itself to RAD. Things are done without any documentation or notes - the system is a mess. Thankyou for the warning. What I am doing is taking one part of a much larger system that has been built in access/vba and migrating it to VB6 as a standalone...

Part and Inventory Search

Back
Top