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. InyoTom

    Property Let to define an array variable in a class module

    Actually, I am working in the CorelDraw flavor of VB, which claims to be version 6.3. (Usually I am working in good old MS Access.) I can't imagine MS would remove array support for class modules when selling VB to Corel. Perhaps my problem is syntax, but VB's explanations when it complains...
  2. InyoTom

    Property Let to define an array variable in a class module

    Works like a charm. Not in a hundred years would I have figured it out on my own. Thanks, Rick. Tell your boss I approve your raise. ... Tom Budlong Tom Budlong TomBudlong@Adelphia.net
  3. InyoTom

    Property Let to define an array variable in a class module

    I want to make an array variable be a property definition in a class module. In the class module, statements such as: Dim dblArray() as Double Property Let MyProperty(dblWPT As Double) dblArray() = dblWPT End Property Access Help does not talk about arrays as properties, only scalar...
  4. InyoTom

    Command button to stop processing

    By gar that might do it. Good detective work to find this hidden in the bowels of Access Help. Thanks... Tom Budlong TomBudlong@Adelphia.net
  5. InyoTom

    Command button to stop processing

    Problem is that the click event for the command button is not executed until the loop is complete. The loop hogs all processing, it seems. Tom Budlong TomBudlong@Adelphia.net
  6. InyoTom

    Command button to stop processing

    How do I configure a command button to stop a program loop, and return control to the user? Tom Budlong TomBudlong@Adelphia.net
  7. InyoTom

    Maximum Number of Indexes

    I could certainly isolate adding records to one place. Then the risk reduces to making sure the code adds idnetical data to both tables, (and power doesn't go off at the wrong time.) But I like your suggestion of duplicating only the relationed fields - in this case there are two - the Company...
  8. InyoTom

    Maximum Number of Indexes

    Scary, yes, but I would try it on some test tables before exposing the app to such risk. "Need" for >32 indexes devolves into two questions: 1) Theoretical: How to have >32 indexes, independent of cause? 2) Practical: My app - does it need >32 indexes? The home field is the...
  9. InyoTom

    Maximum Number of Indexes

    Frink, thanks for your interest. I think you have the germ of a solution. I will try relationing all fields in the table to an identical parallel table, with cascade update and cascade delete set for all the relations. That should keep the two in sync. Fun and games. Tom Budlong...
  10. InyoTom

    Maximum Number of Indexes

    Inefficient design is a continual thought - each time I examine the design it looks OK. It's an accounting app, and the field being relationed is the account number. Lots of other tables use account number, some in several places. An example is the asset ownership table. Fields hold account...
  11. InyoTom

    Maximum Number of Indexes

    Access won't allow more than 32 indexes in a table. Any way to get around this? Tom Budlong TomBudlong@Adelphia.net
  12. InyoTom

    Remove reference in Tools, References. How to?

    Don't want to toggle it off. Want to remove it from the list. Somehow my list is cluttered with a large number of references I will never use. Tom Budlong TomBudlong@Bigfoot.com
  13. InyoTom

    Remove reference in Tools, References. How to?

    Anyone know how to emove an entry from the 'Available References' list in Tools, References? Tom Budlong TomBudlong@Bigfoot.com
  14. InyoTom

    Min and Max Functions

    Just variables. e.g., lngX = 50 lngY = 72 lngX = 41 lngMax = Max(lngX, lngY, lngZ) would return 72. Tom Budlong TomBudlong@Bigfoot.com
  15. InyoTom

    Min and Max Functions

    Search as I might, I can't find Min and Max function, which would suck out the minimum or maximum value from a list. It would be something like: lngMaxValue = Max(lngX, lngY, lngX) So I have had to write my own. Hard to imagine a programming language without these, so I suspect I have not...
  16. InyoTom

    Too Many Indexes

    Access won't let me define more relationships. It claims I would exceed the limit of 32 indexes. This is an accounting app, and I do have a lot of relations defined for the AccountNumber field. The specific message, when I try to create another relation to AccountNumber is: "The operation...
  17. InyoTom

    Peachtree converson to .mdb./sql

    Peachtree has a DDE inteface that can send data to MS Access. Used it for a long time. Tom Budlong TomBudlong@Bigfoot.com
  18. InyoTom

    ODBC link to peachtree?

    I've done some DDE data trnasfers to and from MS Access. Peachtree's functionality is not complete, so it was only partially satisfactory. But I was able to make my own reports. In the end I got so mad a Peachtree that I made a full G/L system in MS Access, and now am free of Peachtree. Now if...
  19. InyoTom

    Anyone switch from Peachtree to Quickbooks?

    Free, free. I am free at last. I got so annoyed at Peachtree's inadequacies that I wrote my own accounting system (in MS Access). Having run parallel for a long time, I switched over at the end of December. Free at last: - No more switching entities (I have about six of them, and half my time...
  20. InyoTom

    More than 1 IIf statement

    This is the Data Source for my text box txtCombinedComment: =IIf([TitleInsuranceOK]="OK" Or [TitleInsuranceOK]="N/A","","TI: " & [TitleInsuranceComment]) & IIf([NoteOK]="OK" Or [NoteOK]="N/A","",CRLF() & "Note: " &...

Part and Inventory Search

Back
Top