Recent content by Imb

  1. I

    Date Pickers, Calendar Controls, and Calendar resources

    The way I work with my dynamical forms is I think in line with class module code, but without the formal declarations. On of my first attempts, some 20 years ago, was a calender form, and is still actual. It is still based on a predefined form, with the controls "on their place". It is activated...
  2. I

    Solved Controlling ScrollBars on a subform

    I usualy do it in the Open event of the (sub)form, after all controls are defined. Then I do a Resize of the form, and depending of the number of records (continuous) or controls (unbound), the Scrollbars are defined. Imb.
  3. I

    Solved Controlling ScrollBars on a subform

    I have no problems with Scrollbars. In a main form I use: HB_form.Scrollbars = 2. in a sub form I use: HB_sub.Form.Scrollbars = 2. Imb.
  4. I

    Dynamic/reusable forms

    Hi Edgar_, Yes, about the English/Dutch mix, it needs still some upgrading, but as far as I can see that is not a big problem. The end form is perhaps a little misleading. The left part shows the "menu" with Items, the only one being Contacts. In the right part you would see the contents of the...
  5. I

    Dynamic/reusable forms

    Hi Edgar_, It wouldn't suprise you that I have a "Database of Databases", which contains all my applications. It is a.o. used for contact information towards the user(s). But this application also has tools to analyze all applications. Since application specific information is only stored in...
  6. I

    Dynamic/reusable forms

    Hi Edgar_, In general you are heading in the right direction, in detail it is a little different. It is now late here, and it will take me too long to explain my way of working, but tomorrow I will come back. Imb.
  7. I

    Dynamic/reusable forms

    Let me try to describe in short how the dynamical forms work. Some parts I will skip on the moment, because it will disturb all the readers too much, I suppose. I have a table "A_Veld_tbl" with all the fields from all tables in the application. See before. I have also a dynamical form with only...
  8. I

    Dynamic/reusable forms

    No, the form is already build, only filled on the fly. And that in any way that is handy for the current problem. I like Access the same way as you do, but if you manage many, many applications, maintenance becomes a problem, because each application is in a far extent independant of the other...
  9. I

    Dynamic/reusable forms

    Hi Mark_, Yes, I know, but that is not the point. The point is when you start your 4th, or 5th ..., application that needs a postal database, and moreover the current systematics "must" be extended, then you have quite a lot of copy/paste work. Better is to have one shared system. When...
  10. I

    Should banker's rounding work on calculated figures?

    Hi bushwacka666, Banker's rounding does work, but only on exact 1.915, and not when it is a very, very little less then 1.915. And this is caused by the division in 19.15 / 100 * 10. See the results of: result = Round(1.915, 2) result = Round(19.15 / 100 * 10, 2) result = Round(CCur(19.15...
  11. I

    Dynamic/reusable forms

    Hi The_Doc_man, It is good to be skeptic. Personally i would not speak of "automatic" systems that self-generate forms and interfaces. I like more the "re-use" of as much as possible. Imb.
  12. I

    Dynamic/reusable forms

    Hi Mark_, I have no experience with Clarion 2.0, so I cannot answer that. The "template" that I use is not a "standard template", it is just a bag full controls. After definition (the layout) most off the control-events are handled in the general library. These are the regular events of a...
  13. I

    Dynamic/reusable forms

    Do you happen to wear smoky sunglasses?
  14. I

    Dynamic/reusable forms

    Hi DHookom, The "form" is stored as a couple of procedures in a general module. One procedures for the layout of the form, a couple of procedures as a kind of "click event" for the different "button" controls, that are specific for the form. Most of how these forms behave are generic over all...
  15. I

    Should banker's rounding work on calculated figures?

    The value of Total is displayed as 1.915, but how is it stored? As 1.9149999999993, or something like that? In that case the rounding is correct. This can happen with real values because of its natural inaccurancy. Better use the Currency datatype in these cases.
Back
Top Bottom