-
Ship secure high quality software faster.
-
Latest Posts
- SaturdayMP Show 66: picoCTF Format String 2 (Solved in One Long Video)
- SaturdayMP Show 65: Something’s Rotten at the Gilded Rose: A Python Refactoring Tale
- SaturdayMP Show 64: picoCTF Format String 3 (Part 1 – Watch me Fail)
- SaturdayMP Show 63: Advent of Code 2024 Day 12 (Part 3 – Solved!)
- SaturdayMP Show 62: Advent of Code 2024 Day 12 (Part 2 – Area Calculated)
-
Tag! Your it!
.NET .NET Core ASP.NET MVC BackAndForth Behemoth Garden BEMCheckBox Birm C# DataGrip Docker Edmonton .NET User Group Entity Framework fun hack the box human resource machine Introduction to ORMs for DBAs ios kids thinking outside the box Mini-Compressor native-binding NUnit ORM picoctf python react Reduce image size Reduce photo size ruby RubyMine ruby on rails saturdaymp show saturdaympshow security Smaller images software development sql-server standard ruby Takeaways TeamCity Temporal Database Today I Learned xamarin xamarin ios .net native-binding xplugins xplugins.iOS.BEMCheckBox
-
Archives
April 2025 M T W T F S S 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
Category Archives: Code Examples
Display a Section only on the First Page in a Crystal Report
To display a section only on the first page but not on other pages right-click the section in question and choose Section Expert. Click the x-2 button to the right Suppress (No Drill down) and add the following formula: Now … Continue reading
Posted in Code Examples
Tagged Crystal Reports
Comments Off on Display a Section only on the First Page in a Crystal Report
Visual Cut Doesn’t Like to Waste Space
Just a heads up that Visual Cut is really picky about command line arguments. Visual Cut does a bunch of stuff with Crystal Reports but in my current project it is just used to print reports on demand. The printing … Continue reading
Posted in Code Examples, Software Development
Tagged command line arguments, Visual Cut
Comments Off on Visual Cut Doesn’t Like to Waste Space
SQL Server Dependency Query
You’ve been staring at the SQL Server view vwCustomersGH for the past hour. The view is part of a project you just started maintaining and like many views and stored procedures in the project you are sure it’s not being … Continue reading
NUnit Error “Attempted to access an unloaded AppDomain”
I was plagued by the above error but found a workaround, at least one that worked for me. It’s a one line change to the NUnit config file. Note, this the actual NUnit config file that is installed in C:Program … Continue reading
Posted in Code Examples
Tagged Debugging, NUnit
Comments Off on NUnit Error “Attempted to access an unloaded AppDomain”
Upgrading Mini-Compressor to .NET 4.0 Notes Addendum
You can read part one at Upgrading Mini-Compressor to .NET 4.0 Notes post. One item that I feel has been neglected by Visual Studio is the Setup & Deployment projects. There has been little improvements to them since Visual Studio … Continue reading
Posted in Code Examples
Tagged build, orca, vs2008, vs2010
Comments Off on Upgrading Mini-Compressor to .NET 4.0 Notes Addendum
Starting Any Method in a New Thread Using .NET
The main problem I encountered was creating a function to accept any function pointer along with an unknown number of arguments. I got around this problem using the ThreadStart and delegate() features in C# (.NET 3.5). First off create your … Continue reading
Posted in Code Examples
Tagged .NET, Threads
Comments Off on Starting Any Method in a New Thread Using .NET