Access: Undefined function “Right” in expression

========= QUESTION --------- All of a sudden when I am running a query that includes the standard Microsoft Access function Right(), it is erroring out on me with the error: "Undefined function "Right" in expression"   ========= ANSWER --------- Apparently functions like this can go missing from time to time for varying reasons. To get [...]

By |2017-12-01T23:47:40+00:00July 5th, 2011|Access, Computers, Documentation, Microsoft|Comments Off on Access: Undefined function “Right” in expression

Copy directory structure without files

========= QUESTION --------- Can you copy over the directory structure from one folder to another without copying the files in those directories?   ========= ANSWER --------- Use XCOPY from the Command Prompt using the /t and /e switches to include empty directories and subdirectories. See EXAMPLES   ========= EXAMPLES ---------xcopy "Q:PRODDATAReports" "C:UsersmyUserDocumentsSubDirSystemsQReports" /t /e   [...]

By |2011-07-05T14:23:39+00:00July 5th, 2011|Computers, Documentation, Microsoft, MS-DOS / Batch, Windows|Comments Off on Copy directory structure without files

How do I clear my DNS Cache?

========= QUESTION --------- We just switched to your hosting services, and we are still seeing our old web site at our past hosting provider, how do we fix this? How do I clear my DNS Cache? How to Flush DNS Cache   ========= ANSWER --------- When a site is switched over from one hosting company [...]

By |2017-04-03T02:03:10+00:00June 29th, 2011|anySiteSolutions.com, Computers, DNS, Documentation|Comments Off on How do I clear my DNS Cache?

How do I setup my email software?

========= QUESTION --------- How do I setup my email client software?   ========= ANSWER --------- We will use Microsoft Outlook 2010 and 2003 as examples (see EXAMPLES) to give you an idea of the steps involved for whatever email client or software you may be using. --------- You may also use webmail instead of an [...]

By |2017-12-01T23:47:40+00:00June 29th, 2011|anySiteSolutions.com, Documentation, Email, Email, Internet/Web|Comments Off on How do I setup my email software?

What is IMAP or POP email protocol?

========= QUESTION --------- When I am setting up my email software, it is asking me to choose an account type: POP or IMAP? What is the difference, or which one should I choose?   ========= ANSWER --------- To offer the best customer service, anySiteHosting.com has always supported both IMAP and POP protocols for accessing your [...]

By |2017-12-01T23:47:40+00:00June 29th, 2011|Documentation, Email, Internet/Web|Comments Off on What is IMAP or POP email protocol?

VBA: On Error Resume Next and disabling

========= QUESTION --------- How do I ignore an error for one section of code, but then disable ignoring errors for other sections of code?   ========= ANSWER --------- See EXAMPLES   ========= EXAMPLES --------- To ignore errors: On Error Resume Next To turn off ignoring errors: On Error GoTo 0   ========= APPLIES TO / [...]

By |2011-06-22T10:49:53+00:00June 22nd, 2011|Computers, Documentation, Microsoft, VBA|Comments Off on VBA: On Error Resume Next and disabling

Access 2010: ‘Enable Content’ button for Network Files

========= QUESTION --------- Every time I open an Access Database from the network using Access 2010, I can't work in it until I click the [Enable Content] button. Is there a setting somewhere I can change to avoid this?   ========= ANSWER --------- Access 2010Select File, Options Select Trust Center, Trust Center Settings… --Macro Settings: [...]

By |2017-12-01T23:47:41+00:00June 21st, 2011|Access, Computers, Documentation, Microsoft|Comments Off on Access 2010: ‘Enable Content’ button for Network Files

Import or Copy Website

========= QUESTION --------- How to copy a web site in its current layout or format.   ========= ANSWER --------- See REF   ========= EXAMPLES ---------   ========= APPLIES TO / KEY WORDS --------- Web Design Import Copy   ========= REF --------- http://www.maximumsoft.com/products/wc_pro/overview.html   ---http://www.anysitesupport.com/import-or-copy-website/ http://anySiteHosting.com

By |2011-06-20T19:54:53+00:00June 20th, 2011|Documentation, Internet/Web, Web Design|Comments Off on Import or Copy Website

VBA: Change the Color of an Object

========= QUESTION --------- I need to change the color of an object from within my VBA code.   ========= ANSWER --------- See EXAMPLES   ========= EXAMPLES --------- Private Sub ReLinkTables_Click()  Me.ReLinkTables.BackColor = RGB(186, 20, 25) Me.ReLinkTables.ForeColor = Hex(FFF200) Me.CurrentStatusLabel.Caption = "Clicked: ReLink Tables" Me.CurrentStatusLabel.BackColor = Me.CurrentStatusLabel.ForeColor = vbWhite Me.CurrentStatus = _ "Opening Linked Table Manager" & [...]

By |2011-06-20T08:05:33+00:00June 20th, 2011|Computers, Documentation, Microsoft, VBA|Comments Off on VBA: Change the Color of an Object

VBA: Access: Calling Linked Table Manager

========= QUESTION --------- Can you call or open the Linked Table Manager in Microsoft Access from your VBA code?   ========= ANSWER --------- See EXAMPLES --------- Another interesting way of doing this would be to simply execute a query in your VBA code against each linked table in your database, thereby causing the logon prompt [...]

By |2017-12-01T23:47:41+00:00June 15th, 2011|Access, Computers, Documentation, Microsoft, VBA|Comments Off on VBA: Access: Calling Linked Table Manager
Go to Top