Access VBA: How to copy a table

========= QUESTION --------- How do I copy a table using VBA or SQL in Access?   ========= ANSWER --------- See EXAMPLES NOTE: the use of of the square brackets ("[" and "]") will save you a lot of grief! For instance in the example below, the date formatting having hyphens in it screws up the [...]

By |2017-12-01T23:47:49+00:00May 12th, 2011|Access, Computers, Documentation, Microsoft, VBA|Comments Off on Access VBA: How to copy a table

Can I use a mini-CD in my slot loading Mac?

========= QUESTION ---------Can I load a mini-CD or non-standard shaped CD-ROM in my macintosh computer that uses a slot loading CD-ROM drive?   ========= ANSWER ---------No   ========= EXAMPLES ---------See REF   ========= APPLIES TO / KEY WORDS --------- MacCD-ROM   ========= REF --------- http://support.apple.com/kb/HT2446?viewlocale=en_US   ---http://www.anysitesupport.com/can-i-use-a-mini-cd-in-my-slot-loading-mac/ http://anySiteHosting.com

By |2011-05-10T10:23:30+00:00May 10th, 2011|Apple, Computers, Documentation|Comments Off on Can I use a mini-CD in my slot loading Mac?

Access: How do I open a new email message from VBA?

========= QUESTION ---------How do I open a new email message from VBA?   ========= ANSWER ---------See EXAMPLES   ========= EXAMPLES ---------Dim olLook As Object 'Start MS OutlookDim olNewEmail As Object 'New email in OutlookDim strContactEmail As String 'Contact email address Set olLook = CreateObject("Outlook.Application")Set olNewEmail = olLook.createitem(0)strEmailSubject = "TopSellers.accdb Application"strEmailText = ""strContactEmail = NAME@DOMAIN With [...]

By |2011-05-05T09:08:36+00:00May 5th, 2011|Access, Computers, Documentation, Microsoft, VBA|Comments Off on Access: How do I open a new email message from VBA?

How do I add a WordPress menu to the content of my page?

========= QUESTION ---------How do I put a WordPress menu into the content of a WordPress page? How do I call a navigation menu using a short code? How do I add a navigation or site map to all sub pages on my page?   ========= ANSWER ---------First setup a menu in WordPress under Appearance, Menus [...]

By |2017-12-01T23:47:49+00:00May 4th, 2011|Documentation, Internet/Web, WordPress|Comments Off on How do I add a WordPress menu to the content of my page?

Access: VBA to open Internet Explorer

========= QUESTION ---------How do I open a web site from VBA? How do I open a url from VBA? How do I use VBA to open Internet Explorer?   ========= ANSWER ---------See Examples   ========= EXAMPLES ---------Private Sub ViewURL_Click() Set browser = CreateObject("InternetExplorer.Application")browser.Navigate ("http://www.Google.com")browser.StatusBar = Falsebrowser.Toolbar = Falsebrowser.Visible = Truebrowser.Resizable = Falsebrowser.AddressBar = True End [...]

By |2011-05-04T10:47:37+00:00May 4th, 2011|Access, Documentation, Microsoft, VBA|Comments Off on Access: VBA to open Internet Explorer

Access: Export report to PDF using VBA

========= QUESTION ---------Using VBA, how do I export a report to PDF in Microsoft Access?   ========= ANSWER ---------Access 2010 option of opening report and outputting to PDF using the Access engine, not Adobe Acrobat Printer: see EXAMPLES --------- Other options: http://www.granite.ab.ca/access/pdffiles.htm   ========= EXAMPLES ---------Private Sub SendReports_Click() Me.CurrentStatus = "Sending Reports..." & vbCrLf & [...]

By |2011-05-04T10:05:40+00:00May 4th, 2011|Access, Computers, Documentation, Microsoft, VBA|Comments Off on Access: Export report to PDF using VBA

Access: Use VBA to copy files

========= QUESTION ---------How do I copy, move, rename files from within the VBA code of my Access project? --------- How do I write a file backup routine into my Microsoft Access project/form?   ========= ANSWER ---------See EXAMPLES   ========= EXAMPLES ---------        DoCmd.Hourglass True    DoCmd.SetWarnings False        'store a serial number in the parms table    'then read [...]

By |2017-12-01T23:47:49+00:00May 4th, 2011|Access, Computers, Documentation, Microsoft, VBA|Comments Off on Access: Use VBA to copy files

How do I install the latest Flash Player on my computer?

========= QUESTION ---------How do I install the latest Adobe Flash Player on my computer?   ========= ANSWER ---------Open your preferred web browserVisit : http://get.adobe.com/flashplayer/ Click the Download Now button Follow the on-screen instructions   ========= APPLIES TO / KEY WORDS ---------Adobe Flash   ========= REF ---------http://get.adobe.com/flashplayer/   ---http://www.anysitesupport.com/how-do-i-install-the-latest-flash-player-on-my-computer/ http://anySiteHosting.com

By |2017-12-01T23:47:50+00:00April 29th, 2011|Adobe, Computers, Documentation, Flash|Comments Off on How do I install the latest Flash Player on my computer?

How do I move my Kindle Books to a new iOS Device?

========= QUESTION ---------How do I move my Kindle Books to a new iOS (iPhone, iPad, iPod) device? How do I manage my Kindle purchases?   ========= ANSWER ---------Download the Amazon Kindle app to your new deviceOpen the Kindle appEnter your Amazon.com account email address and password and tap Register this Kindle If you already have the [...]

By |2011-04-29T07:32:38+00:00April 29th, 2011|Amazon.com, Documentation, Internet/Web, Kindle|Comments Off on How do I move my Kindle Books to a new iOS Device?

Access VBA: How do I delete all records in a table?

========= QUESTION ---------How do I delete all records in a table using VBA?   ========= ANSWER ---------Simply execute a SQL statement as follows: DELETE * FROM NameOfTable;   ========= EXAMPLES ---------Docmd.RunSQL "DELETE * FROM NameOfTable;"   ========= APPLIES TO / KEY WORDS ---------Microsoft Access VBA SQL Clear   ========= REF ---------http://www.access-programmers.co.uk/forums/archive/index.php/t-81194.html     ---http://www.anysitesupport.com/access-vba-how-do-i-delete-all-records-in-a-table/ http://anySiteHosting.com

By |2017-12-01T23:47:50+00:00April 26th, 2011|Access, Computers, Documentation, Microsoft, VBA|Comments Off on Access VBA: How do I delete all records in a table?
Go to Top