Search results

  1. mdnuts

    the skid mark that has evolved

    The entire, write laws to appear tough on crime is a self-feeding situation. Tighter laws which pose more "criminal" situations, which equal more people in prison, which equal less opportunities for not only the imprisoned but their offspring as well... which leads to more criminal actions...
  2. mdnuts

    the skid mark that has evolved

    https://www.msn.com/en-us/money/companies/americas-business-of-prisons-thrives-even-amid-a-pandemic/ar-BB13KXPB?ocid=hplocalnews
  3. mdnuts

    Coronavirus - are we all doomed?

    "Scientific Issue"? It became scientific after it was that particular region who yet again - needlessly killed lives. Call that vengeful if it makes you feel better, i call it reality. but as for silly names... MERS anyone? Boy that couldn't possibly target any particular group with the...
  4. mdnuts

    Coronavirus - are we all doomed?

    I can't imagine there is much of a difference between calling it a Chinese Virus and a Virus that originated in China. Had Trump not called it that, would there still have been anyone unaware of it's origins? People who are inherently bigoted will be bigoted no matter what.
  5. mdnuts

    Filling in Word Table - text disapearing

    I ended up redoing this somewhat when I attempted to insert a second table. freeflow over at StackOverflow offered a different way to create and then select the table and be able to still move through the table. You can notice you add a row, then move down to that row. oDoc.Tables.Add...
  6. mdnuts

    The Saga Continues, Those Who Demand That Women Who Have Been Sexually Assaulted Should be Heard are Amazingly Silent

    Some may say Milano is at best a complete hypocrite on the issue.
  7. mdnuts

    Coronavirus - are we all doomed?

    I hadn't heard of that, I wish I was surprised.
  8. mdnuts

    Filling in Word Table - text disapearing

    and the cleanup section - towards the bottom right before exiting out of everything. Dim n As Long, j As Long Set oTable = oDoc.Tables(1) With oTable n = oTable.Range.Rows.Count 'get a count of all the rows For i = 1 To n 'start looping through the rows If...
  9. mdnuts

    Filling in Word Table - text disapearing

    Thanks @Cronk & @Minty . Here's what I ended up with. I'm sure it could be cleaned up a little - if someone had the desire (I don't). Dim rs As DAO.Recordset, rs2 As DAO.Recordset, rs3 As DAO.Recordset Dim db As Database Dim sSQL As String, sSQL2 As String 'prepare the word doc Dim...
  10. mdnuts

    Coronavirus - are we all doomed?

    In every single day in this nation, through every single modern Administration (but skyrocketed under Obama) the assets of Americans are seized and forfeited without a single charge against them being required. Often no conviction is had - yet they cannot get their property back. Should we...
  11. mdnuts

    Coronavirus - are we all doomed?

    https://velvethamster.com/corona-concern-biden-taking-extra-precautions-before-sniffing/
  12. mdnuts

    Coronavirus - are we all doomed?

    IMO - she's not based in reality. The reality today, now is there are plenty of people who want to work for the most obvious reasons - but no jobs that can have them work. So go ahead, boycott. Boycotting isn't a bail-out situation.
  13. mdnuts

    Filling in Word Table - text disapearing

    Thanks, not create one immediately after a table is created, but while creating a table, when a particular cell is being made, insert a new table inside that cell. I've done the create macro and attempt to copy it, it just really doesn't like using selection. or anything with select while...
  14. mdnuts

    Filling in Word Table - text disapearing

    Doing some research on it i discovered the index number is - well not meaningless, but relational so if you're in table 1 when you create it, the new one is table 2, but as soon as you select the newly created one - it is then known as Table 1. Makes it a bit meaningless for me. A lot of...
  15. mdnuts

    labor shortage

    A very relevant video to this discussion.
  16. mdnuts

    Filling in Word Table - text disapearing

    Currently I've got this. What happens with it is it creates the nested table, then starts iterating on the parent table and also iterates on the nested table, and doesn't exit out. I'm guessing it is because Table(1) keeps getting called instead of some other reference, but if I try to debug...
  17. mdnuts

    Filling in Word Table - text disapearing

    yeah I did see that and had moved it into a if/else - same thing though.
  18. mdnuts

    Filling in Word Table - text disapearing

    ..not even worrying about how long or wide the table is.. i like it.
  19. mdnuts

    Filling in Word Table - text disapearing

    Kind of odd. I have the following code creating a table inside of another table's cell. What is intended to happen is the first table writes a few rows out, then when it gets to a particular cell, it then creates the nested table and starts to populate it. When that's complete, the first...
Back
Top Bottom