Citrix / Xen App: Application launch fails in Internet Explorer 9

========= QUESTION --------- Ever since I upgraded to IE9, my applications will no longer launch from Citrix Xen App in my browser.   ========= ANSWER --------- This is due to the increased Security Settings in Internet Explorer v9 You likely lost the Citrix Xen App site being listed in your Trusted Sites dialog during the [...]

By |2017-12-01T23:47:39+00:00July 13th, 2011|Citrix, Computers, Documentation|Comments Off on Citrix / Xen App: Application launch fails in Internet Explorer 9

VBA: Use VBA to create directories

========= QUESTION --------- Can I create directories from within my VBA code?   ========= ANSWER --------- see EXAMPLES   ========= EXAMPLES --------- MkDir "c:TOTNExamples" --------- If Len(Dir("c:TOTNExamples", vbDirectory)) = 0 Then MkDir "c:TOTNExamples"End If   ========= APPLIES TO / KEY WORDS --------- VBA Directory Directories md MakeDirectory Make Directory   ========= REF --------- http://www.techonthenet.com/access/functions/file/mkdir.php   [...]

By |2011-07-13T08:50:11+00:00July 13th, 2011|Access, Computers, Documentation, Microsoft, VBA|Comments Off on VBA: Use VBA to create directories

iOS Device Screen Icons for your Web Site

========= QUESTION --------- When a user adds a web site to their home screen on their iOS device (iPhone, iPod, iPad), how do I make my icon appear on their screen instead of the default icon.   =========ANSWER---------Include an image file named apple-touch-icon.png in the root directory of your web site. iOS takes care of [...]

By |2017-12-01T23:47:40+00:00July 9th, 2011|Apple, Cell Phone, Computers, Documentation, iOS|Comments Off on iOS Device Screen Icons for your Web Site

Linking a Snap Survey to a Database

========= QUESTION --------- How do I link in a local database to a Snap Survey hosted on line?   ========= ANSWER --------- See REF --------- Summary of stepsStep 1: Setting up the Database Linkage Wizard Step 2: Creating the data link for the SQL database Step 3: Matching records between the survey and the database [...]

By |2017-12-01T23:47:40+00:00July 8th, 2011|Computers, Documentation, Snap Survey|Comments Off on Linking a Snap Survey to a Database

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?

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

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
Go to Top