3年前看到Ivanka Trump的这个演讲,想到能培养出这样优秀的女儿的父亲应当是多么的伟大……现在想来是多么的幼稚。 伊万卡·特朗普,1981年10月30日生于美国纽约,美国总统唐纳德·特朗普的女儿,世界超级名模,美国纽约房地产巨鳄特朗普集团副总裁,连续两年登上美国《福布斯》杂志的全球十大未婚女富豪排行榜榜首,她是美国总统唐纳德·特朗普与他第一任妻子所生的孩子。以下是伊万卡为她老爹特朗普竞选总统的助选演讲,情真意切,感人至深,看完之后,真是不得不服她的演讲魅力!Good evening. Thank you.One year ago, I introduced my father when he declared his candidacy. In his ownway, and through his own sheer force of will, he sacrificed greatly to enterthe political arena as an outsider. 晚上好。谢谢。一年前,当我父亲宣布参选时,我为他进行了介绍演讲。作为一个门外汉,我的父亲用自己的方式,凭借一腔热血,牺牲付出,进入了政坛。 And he prevailed against afield of 16 very talented competitors.For more than a year, Donald Trump… Read More


One of the most peculiar aspects of Visual Basic for Applications in the ! operator, called the “bang”. There’s a lot of confusion about the bang operator, and nowhere have I seen the correct whole story about it. So, I present it here! The bang is particularly common in code for Microsoft Access, where you may see… Read More


Table: id score 1 56 2 91 3 67 4 54 5 56 6 69 7 61 8 83 9 99 Subject_table MS Access MySQL SELECT (case when score < 60 then "less 60" when score < 80 then "60 - 80" when score < 100 then "80-100" else "other" end) as score_type,count(id) as stu_cnt… Read More


To simulate these two Excel functions in Access Visual Basic, paste the following code into a new module and save it: CODE Public Function Ceiling(ByVal X As Double, Optional ByVal Factor As Double = 1) As Double     ‘ X is the value you want to round     ‘ is the multiple to which you want to… Read More


Control Panel – Programs and Features – Turn Windows features on and off and enabled: SMB 1.0/CIFS File Sharing Support Restarted and everything worked. https://docs.microsoft.com/en-us/windows-server/storage/file-server/troubleshoot/detect-enable-and-disable-smbv1-v2-v3… Read More


VBA has a Format() function that you can use to pad numbers. animal = “sinani-” & Format$(i, “00”) This will pad single-digit numbers with a 0. Your two- and three-digit numbers will continue to work as expected. From:https://stackoverflow.com/questions/31628535/pad-single-digit-numbers-with-a-zero… Read More