Search results

  1. P

    Linked Table of MS Access: Sharepoint or OBDC (phpMyAdmin)

    Interesting. I think they were an abomination. When they were first announced, I was excited to build one. I discovered within the first few days that I couldn't even link to a Jet table and so I stopped development and went back to the linked tables method. There was no way that every...
  2. P

    Trump Indictment

    The goal of the Democrats was to keep the black population trapped in poverty in the inner cities. An unanticipated side effect of Johnson's programs was to separate the father from the family which was disastrous. We know this but for whatever reason, we haven't fixed it. Sadly, the inner...
  3. P

    Another mass shooting

    Possession needs to be handled differently from intent to sell. The drug dealers handle this by using mules to hand off the drug so that the mule has only a small amount on his person at any point in time. So, unless you catch him in the act of exchanging money for drugs, he gets charged with...
  4. P

    Stop Users from adding on second subform if #1 is not filled

    Since these are "sibling" forms rather than "parent/child", I don't think the master/child links will work but you could try them. You have to qualify the master names with form!subform. But if that doesn't work, then 1. in the Current event of the Specialty subform requery the doctors...
  5. P

    Solved Need some advice on a Total query

    q.StartedFrom >Forms!yourform!StartedFrom AND q.EndedOn < Forms!yourformEndedOn If the form fields are unbound, make sure you set the format property for each to short date so Access knows they are date datatypes.
  6. P

    Updating table based on main form and combo box on subform

    It is hard to see the whole problem. I think you are missing at least one table. You could post the relevant part of your database diagram. Make sure you expand the tables enough so that we can see the PKs and all the relevant FKs as well as the join lines. I understand the concept of what...
  7. P

    Another mass shooting

    I want to know WHY any person who commits a crime while carrying a gun whether it is used or not spends less than 10 years in prison? I was being facetious Doc. We don't actually need new laws, we need to enforce existing laws. If you come down HARD on the criminal use of a gun, criminals...
  8. P

    Trump Indictment

    I have a question for our non-American members. In your country, is fluency in your native language a condition of citizenship? Do you actually have an official national language? I know some countries, like India, have way too many languages so that is even more of a problem for native born...
  9. P

    Another mass shooting

    THAT's the problem. We need a NEW LAW that says that criminals MUST obey the gun control laws. THAT will fix everything.
  10. P

    Trump Indictment

    Voting is a special case. If you are not fluent in the language, how can you possibly have enough information to cast a meaningful vote? Printing ballots in foreign languages is just a part of the suicide pact the Democrats created. Why we would ever want people who don't understand what...
  11. P

    Report Shrink Bug?

    I guess I need to put on my glasses;)
  12. P

    Trump Indictment

    Sadly, that seems to be the case around the country. Apparently asking immigrants to do us the curtesy of learning English is no longer relevant. Fits right in with immediately registering illegal aliens to vote. Having the ballots in multiple languages just makes that easier also. Just so...
  13. P

    Solved Is there another way?

    When you try something new and it doesn't work, just telling us "it" doesn't work is pretty useless since we don't know what "it" is. Please get used to always posting the code/query you tried to run and the result you expected if it isn't obvious and the result you got.
  14. P

    Not Allow data entry in Subform if Form Header hasn't been filled out

    I use the subform's BeforeInsert event. You don't care about anything UNLESS the user tries to enter data in the subform before entering/choosing a mainform record. All you need in that event is three lines of code An Error message. Me.Undo Cancel = True KSS. You don't need to worry about...
  15. P

    Need help with formatting a row

    Neatness counts so I understand the request to propercase the words but keep in mind that Jet/ACE are not case sensitive by default. so A = a.
  16. P

    Solved Is there another way?

    The point of using Me in addition to getting intellisense is to tell the interpreter that the variable is defined in the current object and there is no need to search for it. Unlike COBOL where I could actually see the assembler language code generated as part of the process of compiling my...
  17. P

    Solved Is there another way?

    When you use "Me", you do not include the name of the parent form in the expression because the code is running IN the parent form. Me.PatientNotesSF.Form!Pnote.SetFocus When you use "Forms!", that is the way to refer to a form externally so you must include the entire path. We don't use...
  18. P

    Another mass shooting

    We grow em' really stupid in Connecticut, or maybe she was an import. This one was almost too drunk to stand up. The cops at least waited until she emptied her gun before showing their faces. Apparently the student gave the wrong answer.
  19. P

    Automatic replenishment of supplies based on an entered request.

    Welcome to the forum. We need some more details about how the renewal will be handled. I assume that the first order will be entered manually. Will subsequent orders be on a fixed schedule, say the 10th of each month? Or will the customer call and say - "send me a refill"? In either event...
  20. P

    Another mass shooting

    It is very expensive to hire armed guards and that is also a bad look and should make the children more afraid. The schools very rarely have more than one guard and he is generally retired and old. He can't be everywhere. The schools should have a silent panic alarm that blinks in every...
Top Bottom