File this one under A for annoying. However, this work around does work for creating multiline, calculated textbox values without resorting to C# code.
http://blogs.msdn.com/b/infopath/archive/2005/03/04/385577.aspx
4.16.2013
4.13.2013
Cutting the Cable Cord
Software:
http://www.nextpvr.com/
http://www.sagetv.com/
http://www.mythtv.org/
Articles:
http://lifehacker.com/5981757/how-to-watch-and-record-live-tv-on-your-xbmc-media-center
http://wiki.xbmc.org/index.php?title=PVR
TV Tuner Products:
http://www.silicondust.com/products/hdhomerun/atsc/
http://www.amazon.com/Avertv-Hybrid-Volar-Windows-MTVHVMXSK/dp/B002U6KT8U/ref=sr_1_4?ie=UTF8&qid=1365917572&sr=8-4&keywords=hauppauge+usb
http://www.hauppauge.com/site/products/data_hvr950q.html
Antenna Products:
http://www.amazon.com/Antennas-Direct-ClearStream4-HDTV-Antenna/dp/B001BRXW74/ref=sr_1_4?ie=UTF8&qid=1365918031&sr=8-4&keywords=hdtv+antenna
http://www.newegg.com/Product/Product.aspx?Item=9SIA0SF0D06877
http://www.newegg.com/Product/Product.aspx?Item=9SIA1PC0JK3907
http://www.nextpvr.com/
http://www.sagetv.com/
http://www.mythtv.org/
Articles:
http://lifehacker.com/5981757/how-to-watch-and-record-live-tv-on-your-xbmc-media-center
http://wiki.xbmc.org/index.php?title=PVR
TV Tuner Products:
http://www.silicondust.com/products/hdhomerun/atsc/
http://www.amazon.com/Avertv-Hybrid-Volar-Windows-MTVHVMXSK/dp/B002U6KT8U/ref=sr_1_4?ie=UTF8&qid=1365917572&sr=8-4&keywords=hauppauge+usb
http://www.hauppauge.com/site/products/data_hvr950q.html
Antenna Products:
http://www.amazon.com/Antennas-Direct-ClearStream4-HDTV-Antenna/dp/B001BRXW74/ref=sr_1_4?ie=UTF8&qid=1365918031&sr=8-4&keywords=hdtv+antenna
http://www.newegg.com/Product/Product.aspx?Item=9SIA0SF0D06877
http://www.newegg.com/Product/Product.aspx?Item=9SIA1PC0JK3907
4.11.2013
Rubber Stamp Pattern
Here is a great tutorial for creating a rubber stamp effect.
http://graphicssoft.about.com/od/photoshop/ss/Rubber-Stamp-PS_15.htm
http://graphicssoft.about.com/od/photoshop/ss/Rubber-Stamp-PS_15.htm
4.08.2013
InfoPath 2010 - DateDiff
InfoPath dates are stored in the format YYYY-MM-DD
To extract the day number of a date:
number(substring(field1, 9, 2))
To extract the month number of a date:
number(substring(field1, 6, 2))
To extract the year number of a date:
number(substring(field1, 1, 4))
To extract the day number of a date:
number(substring(field1, 9, 2))
To extract the month number of a date:
number(substring(field1, 6, 2))
To extract the year number of a date:
number(substring(field1, 1, 4))
4.02.2013
SharePoint 2010 - List Column Deletion
This little gem saves me quite a bit of hassle when developing a new content type.
$web = Get-SPWeb https://MYSITECOLLECTION $list = $web.Lists["PDR"] $field = $list.Fields["ConfAttendees"] $field.AllowDeletion = “true” $field.Sealed = “false” $field.Delete() $list.Update() $web.Dispose()
Labels:
SharePoint
Subscribe to:
Posts (Atom)