Marking braces – 60mm long x 3mm high after shaping
Braces all get radiused on the side that is attached to the back or front using the sanding disk…
Marking braces – 60mm long x 3mm high after shaping
Braces all get radiused on the side that is attached to the back or front using the sanding disk…
Had a problem with our drop down menus displaying a blue link and not working but only on Macs, and then not on all of them.
Turns out IIS is not correctly determining the user agent for later Macs. The fix is here:
http://blog.sharepointexperience.com/2014/10/did-safari-or-ios-8-break-your-sharepoint-2010-site/…
So glad I took some of the wood with me, the top and bottom. (AA Sitka Spruce Top Board, Tasmanian Blackwood bottom and sides).
Tonight I joined the top and bottoms together and cut out the back braces. Here’s a summary of what I did:
When trying to change a page layout, was seeing nothing.
Using browser developer tools I was seeing a javascript error, which with a bit of searching led me to this article: http://johnliu.net/blog/2010/12/22/sharepoint-2010-quick-fix-for-ribbon-page-layout-switch-java.html which solved the problem.
(Basically there are page layouts that are broken and cause the drop down not to display, removing non-used layouts fixes the problem).…
Interesting, I came to post something on this blog this week, and found it inoperative.
Investigation revealed that all the data for it and my other blog had disappeared off the server. Now, either I’ve been hacked or my hosting provider has deleted my data for some reason.
Unfortunately I didn’t have a backup of everything from the last couple of years (I could go back to 2011) and when I checked with the host they wanted to charge to restore my data.
So, lesson learned, I need to make sure I keep better backups of everything on my site locally.…
This one had me stumped for days. Infopath form with drop down field populated by internal values in the drop-down.
I needed to add one option, which I did and uploaded the form. I could see the version number updating on the form (I display that as a field) but the drop-down wouldn’t change!
Turns out I had a read-only and updatable versions of the form. The read-only version is displayed after the form has been submitted. I was editing the read-only version not the editable one that gets filled in. Doh!…
I had some code that set the AssociatedMembersGroup in SharePoint using the Client Object Model. For whatever reason (possibly a CU recently installed), the code below no longer works:
ClientContext lClientContext = new ClientContext(vSiteURL); lClientContext.Credentials = new NetworkCredential(Utils.APP_USERNAME, Utils.APP_PASSWORD, Utils.APP_DOMAIN); Web lWeb = lClientContext.Web; lClientContext.Load(lWeb, website => website.AssociatedMemberGroup, website => website.SiteGroups); lClientContext.ExecuteQuery(); foreach (Group lGroup in lWeb.SiteGroups) { if (lGroup.Title == vGroupName) { lWeb.AssociatedMemberGroup = lGroup; lWeb.Update(); lClientContext.ExecuteQuery(); break; } }
I had to change to doing this inside my create group method:
ClientContext lClientContext = new ClientContext(vSiteURL); lClientContext.Credentials = new NetworkCredential(Utils.APP_USERNAME, Utils.APP_PASSWORD, Utils.APP_DOMAIN); Web lWeb = lClientContext.Web; GroupCreationInformation lGroupDef = new GroupCreationInformation(); lGroupDef.Title…
I have an old PC that I use to control my christmas lights. They are driven by an electronic box that I build that plugs into the parallel port which then drives 8 outputs to switch them on or off.
I had written a C++ program that I was previously running on an old Dos box, but the machine this year. I opted to use a slightly newer spare machine and to run Ubuntu on it. I was keen to use Mono to learn a bit about it (as I program in C#.Net on Windows for a living).
Unfortunately there’s no libraries in C# for accessing parallel ports (at least not that I could find).…
I have an SSIS package that imports data from various comma-delimited text files that use quotes as the text delimiter.
The package works fine on my local machine, however when I deploy it to the server, the quote delimiter is ignored and all my data contains the quotes around the text. Worse, integer fields fail to convert as to SSIS it looks like the field is a string (“1”) rather than an integer (1).
Turns out that because the filenames of the text files are specified at runtime (they come from a variable in the database), the text delimiter field in the text file connection is also ignored.…
I had an issue with creating appointments in Exchange using EWS. The appointment would create fine, the time would be correct, but the Time Zone set would be Monrovia, Rekiyavik (UMT).
After much searching on the internet, I finally found this article: http://msdn.microsoft.com/en-us/library/cc500306.aspx from which I used the helper method and the following code in my method that calls the EWS appointment creation code (sorry it’s VB but it is old code):
Dim lLocalTimeZone As New TimeZoneType()
lLocalTimeZone.BaseOffset = TimeSpanToXSDuration(TimeZone.CurrentTimeZone.GetUtcOffset(vStartTime))
If vStartTime.IsDaylightSavingTime Then
lLocalTimeZone.TimeZoneName = TimeZone.CurrentTimeZone.DaylightName
Else
lLocalTimeZone.TimeZoneName = TimeZone.CurrentTimeZone.StandardName
End If
appointment.MeetingTimeZone = lLocalTimeZone
Now both the time and the time zone are correctly set.…