Write a MicroStrategy Report to a database table

========= QUESTION --------- How do I make a MicroStrategy report populate a database table, rather than outputting to a static report?   ========= ANSWER --------- This feature is called a DataMart. Edit the report in MSTR DesktopSelect Configure DataMart... from the Data menu  Enter a new table name* in the Table Name field*Note: the table name [...]

By |2017-12-01T23:47:36+00:00October 10th, 2011|Computers, Documentation, MicroStrategy|Comments Off on Write a MicroStrategy Report to a database table

Show Administrator account on Windows Welcome Screen

========= QUESTION --------- How do I enable and show the Administrator account as a logon option on the Windows 7 or Windows Vista Welcome screen?   ========= ANSWER --------- Windows 7 Run the following commands after running the Command Prompt as an Administrator as follows: Start, type in CMD, right-click the cmd.exe application and select [...]

By |2017-12-01T23:47:36+00:00October 2nd, 2011|7, Computers, Documentation, Microsoft, Vista, Windows|Comments Off on Show Administrator account on Windows Welcome Screen

Can you ping a TNS Name?

========= QUESTION --------- I use ODBC connections to link to Oracle databases. These connections use a TNS Name in their Service Name field. Can I simply PING these TNS Names as a simple connectivity test to the database?   ========= ANSWER --------- Yes  At the COMMAND PROMPT, type: TNSPING (SPACE and then the SERVICE NAME [...]

By |2017-12-01T23:47:37+00:00September 19th, 2011|Computers, Documentation, Microsoft, ODBC, Oracle|Comments Off on Can you ping a TNS Name?

How do I lock my computer?

========= QUESTION --------- Can I manually lock my computer when leaving my desk for a bit?   ========= ANSWER --------- Yes - simply hold down the Windows Logo key and press the L key. Another option is to do the classic Ctrl + Alt + Del combination and select Lock from the resulting options.   [...]

By |2011-09-16T11:06:45+00:00September 16th, 2011|Computers, Documentation, Microsoft, Windows|Comments Off on How do I lock my computer?

Remap another key to act as the Windows Logo key

========= QUESTION --------- Can I remap another key on my keyboard to act as the Windows Logo Key?   ========= ANSWER --------- Edit the registry as follows: [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlKeyboard Layout]"00000409"="KBDUS.DLL""Scancode Map"=hex:00,00,00,00,00,00,00,00,02,00,00,00,5B,E0,38,E0,38,E0,5B,E0   ========= EXAMPLES ---------   ========= APPLIES TO / KEY WORDS --------- Windows Logo Key   ========= REF --------- http://www.randyrants.com/2004/01/keyboard_remapp.html   ---http://www.anysitesupport.com/remap-another-key-to-act-as-the-windows-logo-key/http://anySiteHosting.com

By |2017-12-01T23:47:37+00:00September 16th, 2011|Computers, Documentation, Microsoft, Windows|Comments Off on Remap another key to act as the Windows Logo key

VBA: Rename Files

========= QUESTION --------- How can I use VBA to loop through and rename a long list of files in several sub-directories?   ========= ANSWER --------- see EXAMPLES   ========= EXAMPLES --------- Private Sub RenameFiles_Click()    Dim fName As String    Dim fName_New    Dim myPath As String    Dim myCounter As String        DoCmd.Hourglass True    DoCmd.SetWarnings False        Set [...]

By |2011-09-14T10:59:47+00:00September 14th, 2011|Computers, Documentation, Microsoft, VBA|Comments Off on VBA: Rename Files

VBA: Format Function

========= QUESTION --------- How do I format numbers, dates, etc in my VBA code?   ========= ANSWER ---------see EXAMPLES   ========= EXAMPLES --------- Format(rs!Store, "0000") Formats a number field that may contain only one digit (i.e. 2) to four digits with leading zeros (i.e. 0002) ---------= Format(Now(), "hh:mm AMPM")If the current time is 5:04:23 in [...]

By |2011-09-14T10:31:22+00:00September 14th, 2011|Computers, Documentation, Microsoft, VBA|Comments Off on VBA: Format Function

Outlook: Disable Add-Ins

========= QUESTION --------- How do I disable an individual Outlook Add-In?   ========= ANSWER --------- Outlook 2010: File, Options, Add-InsSelect COM Add-Ins from the Manage drop down list at the bottom of the window, and click [Go...]Un-Check the box next to the add-in you wish to disable and click [OK]   ========= EXAMPLES --------- see [...]

By |2011-09-14T06:39:47+00:00September 14th, 2011|Computers, Documentation, Microsoft, Outlook|Comments Off on Outlook: Disable Add-Ins

Outlook Add-In: Outlook Redemption

========= QUESTION --------- I noticed a new Plug-In in my Microsoft Outlook Add-In Manager called Redemption Helper Outlook Extension - what is it? --------- I found a pop-up error waiting for me on my computer this morning as follows: Microsoft Office OutlookOutlook experienced a serious problem with the 'redemption helper outlook extension' add-in. If you [...]

By |2011-09-14T06:31:11+00:00September 14th, 2011|Computers, Documentation, Microsoft, Outlook|Comments Off on Outlook Add-In: Outlook Redemption

SQL: Insert Statement

========= QUESTION --------- How do I add a record to a table using SQL?   ========= ANSWER --------- see EXAMPLES   ========= EXAMPLES ---------  SQLTxt = "INSERT INTO 0000T_Log (Dt, Log) VALUES (#" & Now() & "#, '" & Me.CurrentStatus & "')"CurrentDb.Execute SQLTxt   ========= APPLIES TO / KEY WORDS --------- Microsoft Access SQL Insert [...]

By |2017-12-01T23:47:37+00:00September 2nd, 2011|Access, Computers, Documentation, Microsoft, SQL, VBA|Comments Off on SQL: Insert Statement
Go to Top