Recent content by MarkK

  1. MarkK

    Verdict

    Because there was no antisemitism in, say, 1943? Antisemitism is a fixture in the world and in history. There is no "sweeping."
  2. MarkK

    Verdict

    Democracy is the belief that if all voices are heard, and issues are debated openly and fairly, that the majority of people will make the best choice. In this regard, if you do not see your opponents, and those with whom you disagree, as being an essential part of what democracy requires...
  3. MarkK

    Verdict

    He's not the only one.
  4. MarkK

    Get Filter from Controls, CSQL, and Combine Multiple Filters

    The scope of my comment.
  5. MarkK

    Get Filter from Controls, CSQL, and Combine Multiple Filters

    IMO, delimiter issues in SQL are more far more easily and robustly solved by using a parameterized DAO.QueryDef.
  6. MarkK

    Connect two databases without changing the table names

    If you have one purpose, and two databases that distinguish contained data by year, you have a fundamental design problem.
  7. MarkK

    Seeking Elegant Solution for Traversing Control Hierarchy to Find Parent Form

    What matters though is what the control renders as its Parent. I could make a CollectionA and put controls in it, but that doesn't make my CollectionA the Parent of the control.
  8. MarkK

    Seeking Elegant Solution for Traversing Control Hierarchy to Find Parent Form

    Here's my stab at these problems. Both functions recursively crawl up the Control/Page/Tab/Form hierarchy using the Parent property, which all members expose. - The MainForm is the first object that doesn't have a Parent - The ParentForm is the first Access.Form we encounter above the object...
  9. MarkK

    Opening a form in a library and retrieving a returned value

    If your library contains a function that returns a reference to the form, then consumers of your library can manipulate that reference. From a public function in your library, you can return a public class that raises events. That class can open the form, handle that form's events, and then...
  10. MarkK

    The Law Perverted

    Lock him up.
  11. MarkK

    Table relational design (Buyers - Payments - Agents)

    There is every reason to store the commission on the date it is incurred. with the payment or transaction on which it is calculated. Any time a rate is subject to change, like tax or payroll or commission, the amounts calculated using today's rate should be stored in a record with today's date...
  12. MarkK

    Table relational design (Buyers - Payments - Agents)

    Isn't the commission an attribute of the payment? Like, if you already have a payment table that connects buyer and agent, wouldn't it work well to record the commission in a field of the payment table? It occurs on the same date as the payment. It should be linked to the same buyer and agent...
  13. MarkK

    Object Required message not understood

    OffsetPolyline is neither declared, nor assigned a value in the code you posted, but you try to reference it's Coordinate() member.
  14. MarkK

    Opening form move to upper left automatically

    1) I have had unpredictable form sizes before, but not locations. I can solve size problems if I open the form in design view, change the Auto Resize and Auto Center settings and save the form. Then open the form again in design view, and change those settings back. 2) There is an...
  15. MarkK

    Solved Code not save when at runtime

    Hit <Ctrl> + S all the time.
Top Bottom