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 SkipVought 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: *

  1. jflachman

    Excel Button Font size changes with click

    Bizarre but I had to reboot my computer for something else and the issue totally went away. It wasn't the code. It must have been some weird MS Excel bug. Jonathan ________________________________________ It is not fair to ask of others what you are unwilling to do yourself. -Eleanor Roosevelt
  2. jflachman

    Excel Button Font size changes with click

    Excel 2007 before and after the HD reformat. There are three buttons in the sheet with different functions. The behavior is the same with all three buttons. There is no overlap in code. One only adds fill color to various rows in the sheet (not where the button resides) depending on the...
  3. jflachman

    Excel Button Font size changes with click

    I created a button with a VBA routine tied to it. The button has always worked perfectly. However, now when I click on the button, the button font size increases. The routine does execute also. If I click again, the font size continues to increase until I can no longer read the text. I am not...
  4. jflachman

    Creating a resource tree.

    I clearly didn't provide sufficient information to make this easy to answer. I'll try again. The Layer field is the number of layers down in the resource tree. i.e. Paul is the boss, so he is Layer 1 Bill, John and Thom report to Paul, so they are Layer 2, etc. The TreeID field is required...
  5. jflachman

    Creating a resource tree.

    I need to create a resource tree / org chart. I have a table Resources --------------------------------------------------- ResID Name MgrID Layer TreeID 1 Bill 2 2 Paul 0 3 Mary 4 4 John 2 5 Thom 2 6 Carl 4...
  6. jflachman

    subreport filter

    I don't seem to be able to set the filter or filteron properties in VB for a subreport. I have tried doing it in the parent report Open event, the parent report Detail section format event and the child report Open event. In all cases I get a Run-time Error 2101 - The setting you entered isn't...
  7. jflachman

    small linked database - unusably slow

    There were three steps to my solution: 1) Turn off the autocorrect option in Tools/Options/General 2) In the Backend file, set the subdatasheet property to [none]. This required step 1 in order to work. 3) Use a UNC file path rather than a mapped network drive for the location of the backend...
  8. jflachman

    small linked database - unusably slow

    I am trying to chagne the subdatasheet property in the backend mdb. It still doesn't stick. Some additional info: - If I put the backend on my desktop, it works fine - When the BE is on the network, my network bandwidth is still < 10-20% and my MSACCESS cpu utilization is < 10% Jonathan...
  9. jflachman

    small linked database - unusably slow

    The performance on my database is so bad it is unusable. I have a small database - It has 9 tables and very little data because it is still under development. The database is split into a front end and back end. The back end is on the network, the front end is on my desktop. When I try to...
  10. jflachman

    Recursive table / report structure

    All, Thanks for the suggestions. I used a recursive subroutine to fill a temporary table with the NodeID, ResourceID and layer. I then join that with the Resource table to pull in a the rest of the data in a query and dump that recordset into the report. J Jonathan...
  11. jflachman

    Recursive table / report structure

    lbigk and annie420, I had started down that path and ran into a critical problem. It groups each layer independently. So all VPs, followed by all Directors, then Managers, then Workers. MajP, The TreeView won't work because of the quantity of additional information I need to display...
  12. jflachman

    Recursive table / report structure

    I have a table with a structure that can be simplified to: Resource ID Autonumber Name, etc Multiple fields Manager ID Number (long) The manager ID is a link to another record in the same table. That person may also have a manager and so on. I want to write a report that...
  13. jflachman

    One To One Relationships

    You do actually have a 1 to 1 relationship amongst your tables. You have One order in your TblOrders table and One Note in one of your notes fields that are connected. The way you have this database structured is fine. However, to make it work smoothly will require some automation that may be...
  14. jflachman

    Automatically add initials, date & time to a notes field

    vbCrLf just adds a Carriage Return and Line Feed at the end of the text string. The first one starts a new line. The second one starts ANOTHER new line immediately, hence the first one is blank. Jonathan ________________________________________ It is not fair to ask of others what you are...
  15. jflachman

    MS Graph - Scatterplot - Multiple X columns

    In Microsoft Excel, you can create a XY scatterplot with a column of X data for each column of Y data. This is especially useful when the various columns of Y data are taken at different X values. I need to graph some test data. The X axis is Frequency, the Y axis will be distance. Each test...
  16. jflachman

    combo box rowsource in a CONTINUOUS form

    I posted this yesterday and PHV tried to help but was unable. Still looking for an answer. any help is appreciated. I have 2 tables: Tests -TestID (Autonumber) -TestDesc (Text) TestInput - TestInputID - TestID - InputDesc Now, in my CONTINUOUS form I have 2 combo boxes: The first one...
  17. jflachman

    option group reset

    For your optiongroup control I assume this is linked to a field in an underlying table. Just set the field to the default value for the option group. Here is an example me!OptionField = Optiongroup.DefaultValue If you are trying to reset it to the previous value (not the default)...
  18. jflachman

    Update combo box source in continuous form

    this doesn't actually solve the problem. This only makes the Test for every record the same. The problem is with the TestInput combo box. The source for the TestInput combo box should be either: 1) Filtered or limited to the appropriate selection in the current record only - that way the saved...
  19. jflachman

    Link Child/Master fields

    I think you have made this user interface much more difficult than you really needed. It is much easier to have one subform on your main form, but display different data in the subform depending on what you want to see. The way you do this is actually create several different forms for display...
  20. jflachman

    Continuous Form putting in an empty record

    If I understand you correctly, you are listing the values of a query in a continuous form. You have a blank record at the end - which is there for data entry. If you don't want the user to be able to add records through this form, set the "Allow Additions" property for the form to "No"...

Part and Inventory Search

Back
Top