Sample VBScript code: package intranet items ~ email using CDO.
Note:
cdomailer.vbs link: http://www.box.com/s/3mq3pyp2t4fqz9h390ne
cdomailer.wsf link: http://www.box.com/s/6e1id5ma6tq5f0tvl7f8
Using~adding the .WSF more readily allows referencing of global data across many scripts and other object models








Splitting blog into areas of interest...
Crystal |
Oracle |
Scripting |
TSQL |
VBA |
WebFocus |
Skilling-up~refreshing myself on latest technologies related to above.
Scripting ~ July - November '2011
AutoIt ~ Find x64 bit compilation correct one when doing RDP scripting x64 -> x64 bit machines. |
flv_to_mp4.au3 |
Tagle ~ when using with Virtual desktop tools -- do not dock. That way you can copy to all desktops. |
MS-Access 2007 Notes
- Locking ~ decide on a strategy and stick to it ~ mine's currently edited records
- Use of Tab~page control and subforms vs. Forms and switchboard
- Pros: Everything loads at once
- Cons: Everything loads at once
- DoCmd Export
TortoiseGit ~ Cache problems?
Removed everything Tigris ~ TortoiseGit in Regedit
RD /Q /S C:\Program Files\TortoiseGit
Installed 1.7.3 ~
* Fixed Issue #851: Windows Explorer Shell Crashed when empty repository
* Fixed open handles in TGitCache
...
Changed the settings to cache 'shell'
I have this onhand:
%windir%\system32\cmd.exe /C (for /f "usebackq tokens=1-6" %i in ( `tasklist^|find "TGitCache"` ) do TASKKILL /F /PID %j) && (PAUSE)
Naked https://twitter.com <> https://api.twitter.com!
New backup method for my PC use Git then XCOPY C: -> H:
This is what I've come up --use Git for desktop, documents, appdata -- then backup those folders with these command files(save without the '.txt' extenstion then schedule BackupLocalToH_All.cmd):
BackupLocalToH.cmd.txt
BackupLocalToH_All.cmd.txt
These run from DOS in the C:\User\%username% folder.
The XCOPY parms are set to copy file-attributes, secure, and sub folders/directories.
If you're knowledgeable enough -- you may be able to use Git to revert a particular app setting -- wost case -- you can always copy the H:_%username%_%target% folder back to your C:\Users\%source% from previous day...
...the above works well I think for "My Documents" and for "Desktop" -- you might find "AppData" prohibitive. If so, comment/remove that line from '...All.cmd' and replace with a manual 'subst W: H:\__MikeB_AppData' (at DOS), and a do a git initialize of w: as a 'bare' repository(one that can only receive a 'push'), then do a git push to w: drive.
IE9 short-cuts ~ tips
ALT+Click = hyperlink opens same window
CTRL+Click = hyperlink opens new tab~window
Drag a tab off the browser into an open area of your desktop
and it separates into a new window.
IBM Cognos 8 BI: Official Guide~Ch15.Building the Model with Framework Manager
▪ outline format
▪ numerous pictures
…dislike:
▪ tired metaphors
▪ lack of detail on finer points (see below)
Best tip/note:
15.6.3. Creating Stored Procedure Query Subjects
Stored procedures that return scalar values cannot be used as a Cognos 8 query subject. And while you can pass parameter values into a stored procedure, return parameters from a stored procedure are not supported. You can, however, use this definition process to have a stored procedure act as a user-defined function that can be made accessible when creating a calculation, which will be mentioned briefly in the section "Turning a Stored Procedure Query Subject into a Function," later in the chapter.
So you _can't_ report back a sp scalar(single value return) as a query subject ~ but _can_ use in a formula.
Backup external hard drives…
http://www.nextadvisor.com/online_backup_services/mozy_review.php
SQL Tidy Method #2 ~ Using the Wangz Net Page…
Steps:
1) Copy SQL text & open a browser window…
2) Go to the Wangz address and configure…
3) Click 'FormatSQL' and 'Copy to Clipboard' buttons
(for non-IE browsers -- highlight/righ-click~copy
text from lower textarea)…
4) Paste over existing SQL…
Google ~ SQLTidy…
Be sure to try the Server add-in…SQL
SQL Tidy Method #1 ~ Using SQL Server 2008 R2 Query Designer
Steps:
1) High-light text in Query window…
2) Open Query Designer…
3) Click anywhere in Designer…
4) Close Designer…automatically converts to ANSI'92
Google ~ SQLTidy…
Opening an ANSI '89 Query in SQL Server 2008 R2...
Exploring Git
Git looks like a pretty quick, predictable option. Neat features:
-single repository in your root
-branching easy
-can push~pull from other repositories
-content vs. file based ~ In my mind I think this may mean it is faster ~ smaller
Differences from SVN:
-Folders remain 'uncolorized' until you actual content(remember Git is
'content' based.
Quick startup:
-Install Git and TortoiseGit
-Make a repository with Git GUI or ToroiseGit
Note:
Git provides 'Git Bash'(unix) and 'Git GUI' (simple point~click interface). However, my preference is TortoisGit. It hooks to Windows explorer and is pretty much _identical_ to TortoiseSVN.
Screenshots:


Example of show-log ~ unified diff:
This video was really helpful in understanding how Git differs from other source control:
http://my.safaribooksonline.com/video/software-engineering-and-development/version-control/00820090003si
…and there is a preview of O'Reilly~Safari book:
http://bit.ly/michaeltbee_itpro_ReadingList_VCwG
Awaiting GooglePlus...
Once again, my boat came in and I was at the airport.

ESI ~ Presentations ~ Copyright
ESI ~ Presentations by Michael T. Bee are licensed under a Creative Commons Attribution 3.0 Unported License.
Based on a work at http://michaeltbeeitprof.blogspot.com.
Permissions beyond the scope of this license may be available at mailto:michael.t.bee.itprof@gmail.com.
Enlightened Self-Interest (Software)
I am creating helps for myself in terms of knowledge, glossaries, tool links etc. If you have something to share please let me know.
- RDBMS
- BI (Business Intelligence)
- Scripting ~ Testing
- Web Development
- Tools
Copyright | Disclaimer
Configurable AutoIt applets...
Here's a sample for something I've been wanting
to do for sometime- make my autoit applets 'configurable'.
I thought there must be a way -- there is! Use '_IsPressed':
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_icon=\\Mde2kfs01\share\Common\_CMD\_ICO\mail-send-receive.ico
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#include <Misc.au3>
Dim _
$sendkeys, _
$switch_cnt, _
$topmost_cnt, _
$ctrl_key, _
$z_alt_tab
;-
; Init
;-
; 'ctrl' pressed with .exe is indication
; that you want to configure the applet...
$dll = DllOpen("user32.dll")
If _IsPressed("11", $dll) Then $ctrl_key = 'Y'
DllClose($dll)
$topmost_cnt = ''
$topmost_cnt = RegRead('HKCU\SOFTWARE\alt_tab', '$topmost_cnt')
;-
; If necessary ~ requested -- prompt for
; values then exit...
If $topmost_cnt = '' Or $ctrl_key = 'Y' Then
$topmost_cnt = _
InputBox( _
@ScriptName, _
'$topmost_cnt?', _
$topmost_cnt _
)
If $topmost_cnt = '' Then Exit
RegWrite( _
'HKCU\Software\alt_tab', _
'$topmost_cnt', _
'REG_SZ', _
$topmost_cnt _
)
Exit
EndIf
;-
; Main
$switch_cnt = $topmost_cnt + 2
$sendkeys = '{AltDown}{Tab}{AltUp}'
;-
For $i = 1 To $switch_cnt
TrayTip( _
@ScriptName, _
$sendkeys & '(x $switch_cnt=' & $switch_cnt & ')', _
.25, _
1 _
)
Sleep(250)
Send($sendkeys)
Sleep(250)
Next
;-
Exit
Opera ~ plug-in content blocking on demand only
svn_up_wildcard.cmd
svn_up_wildcard %fileset%=?
DESCRIPTION:
This add a fileset to the present directory via SVN
SYNTAX:
R
svn_up_wildcard %fileset%
PARMS:
%fileset% Required: A dos ~ windows fileset
EXAMPLE:
svn_up_wildcard \\mde-wfdev01\apps\fdm\mfr_r_p2_*.fex
SCREENSHOT:
DOWNLOAD:
Google Doc as 'Snippet' kitty...
I've been looking for a tool I could use to easily store, retrieve, share code snippets. I decided to put them in a Google Docs spreadsheet. I gave this a bit.ly short URL:
http://bit.ly/MichaelTBeeITProfEureka
(which allows them full use as spreadsheet -- including view/list)...
...publish as HTML page and embed in your blog
Opera Next ~ *bug*, content blocking, password sync, speed dial widgets...
-'Password' sync wasn't evident until I did 'Configure' off link icon in status bar
-Speed Dial widgets work as advertised(weather):
To change the location of the weather updates go to the weather forecast site http://www.yr.no and search for your preferred location. On the page of the weather location you would like to use you will see a link saying "Select this location for the Opera extension". Click this link to set your new location for the weather updates.
-'Content block' is sweet(pre-dates OperaNext)! Choose what you want to see --and this is also sync'd in Opera Link.
There appears to be a *serious* bug on speed dial. Mine keeps loading~appending same set snapshorts of ad nauseam.
Configure your browsers
DO configure these accounts and use the SMTP outbox options. This is a great convenience if you want to send mail from webpage mailto URLS. You may need to change the default signature (for instance in Opera) to something more generic:
"-Thank you/regards"(vs. "Sent with Opera's mail client!")
Use the server side storage for storing your bookmarks~favorites(and~notes in Opera)
Set to 'block unwanted popups' (in most cases). Some browsers(Opera~right-click an open page~edit site preferences) allow you to be site specific if you want to allow popups.
Use 'confirm exit' --if you have many tabs~windows open you don't clobber yourself. Also, if you use something like Opera Unite services you don't inadvertantly shut down running services.