If you use any of the Tridion community resources, you have certainly started using StackOverflow for your Tridion questions (or for your daily dose of questions). However, we seem to have started abusing the principles of StackOverflow - programming...
I see myself being quoted more & more on the above question, which is one of my favorite answers to most Tridion implementation questions. So I thought it was time to start putting here some of the questions that made me come up with that answer... Just...
Unlike text/number fields in Tridion where the field is null if the user leaves the field value empty, the DateField is not a nullable type. An example of how to normally handle a text field using Tom .Net: if (fields.Contains("textField")) { TextField...
How many times have you clicked impatiently on "Show Tasks" while the publishing queue was still loading??? I am not sure about you developers, but Tridion users... thousands! And I understand it! The world around us moves at a high pace... and so does...
Here’s the script that will go over your publications, collect some statistics, and will present it to you as html report with graphs. The script is a bit heavy on database, but I don’t think you will run it too often. Critics could say I should’ve query...
Playing around with Windows PowerShell today. As usual, the first thing that people learn is the infamous "Hello World" program. So I tried scripting an array of string in PS (plus color!) PS C:\> 0..15 | % {Write-Host -ForegroundColor $_ "HELLO Robert...
Today marks the first day of me learning about the Tridion Core Service! First let's step through how to connect (remotely from the server as a client) Open Visual Studio and create a new Windows Console project Add Tridion.ContentManager.CoreService...