509.949.2162 jeremy@bondbyte.com

Updating MySite Master Pages and Design

After much head banging!! I have drawn the conclusion that MySites do not work like your typical SharePoint Portal Sites. Normally one would simply check out a page whether its was a master page or an ASPX page and modify it using sharepoint designer.   While...

MOSS Open Document prompts for credentials

Problem: When attempting to open documents on our sharepoint portal we are being prompted for credentials. cancelling the prompt allows the document to open. Later if the user clicks on “Edit Document” from the menu above the credential prompt reappears....

Code Sample: VB.NET SMTP Mail function

1. Create a Visual Basic Class for your project by right clicking the project and select add.   2. Change the language to Visual Basic and select Class from the list of Installed Templates.   3. Name the class clsNotify. Add the code below to the class.(You...

Code Sample: TSQL, Size of tables in database

SELECT t.NAME AS TableName, p.rows AS RowCounts, SUM(a.total_pages) * 8 AS TotalSpaceKB, SUM(a.used_pages) * 8 AS UsedSpaceKB, (SUM(a.total_pages) – SUM(a.used_pages)) * 8 AS UnusedSpaceKB FROM sys.tables t INNER JOIN sys.indexes i ON t.OBJECT_ID = i.object_id...

SSIS / BIDS Rename File with File System Task

Lets see if I can explain how to rename a files using the File System Task in BIDS or SSIS. First you will need to add a File System Task to your Control Flow. (Drag and Drop it to the Form) Open the task and change the Opertaion to Rename File. Set the...