cyotek

Stories kicked by cyotek

Converting 2D arrays to 1D and accessing as either 2D or 1D(cyotek.com)

submitted by cyotekcyotek(155) 1 month, 16 days ago

Article that shows how you can store 2D data in a 1D array using row-major order and convert locations between the two. read more...

2 comments |category: |Views: 66

tags: another

AngelCode bitmap font parsing using C#(cyotek.com)

submitted by cyotekcyotek(155) 4 months, 24 days ago

Article describing a component for parsing bitmap font files generated by AngelCode's BMFont utility read more...

1 comment |category: |Views: 28

tags: another

Detecting and running applications under elevated permissions with C#(cyotek.com)

submitted by cyotekcyotek(155) 5 months, 29 days ago

Article which describes detecting if your application is running with elevated permissions on Windows Vista or Windows 7 and how to spawn new processes which run using elevated permissions. read more...

add a comment |category: |Views: 11

tags: another

Extending the ImageBox component to display the contents of a PDF file(cyotek.com)

submitted by cyotekcyotek(155) 8 months, 22 days ago

Article describing how to extend the ImageBox control to support displaying PDF files using the GhostScript API in a Windows Forms application. read more...

add a comment |category: |Views: 5

tags: another

Convert a PDF into a series of images using C# and GhostScript(cyotek.com)

submitted by cyotekcyotek(155) 8 months, 22 days ago

Article which describes how to use C# and GhostScript to convert PDF files into raster images for displaying in an application without requiring a dedicated PDF reader. read more...

add a comment |category: |Views: 6

tags: another

CSS Syntax Highlighting in the DigitalRune Text Editor Control(cyotek.com)

submitted by cyotekcyotek(155) 10 months, 18 days ago

An article which describes how to create a definition ruleset to allow CSS formatting in the DigitalRune/SharpDevelop Text Editor Controls, and how to load custom definition rulesets into the control. read more...

add a comment |category: |Views: 4

tags: another

Migrating from Visual SourceSafe to Subversion(cyotek.com)

submitted by cyotekcyotek(155) 1 year, 1 month ago

Article which describes experiences when performing a migration from Microsoft Visual SourceSafe to Subversion read more...

add a comment |category: |Views: 2

tags: another

Enabling shell styles for the ListView and TreeView controls in C#(cyotek.com)

submitted by cyotekcyotek(155) 1 year, 1 month ago

Article which describes how to display ListView and TreeView controls using Visual Styles in Windows Vista or higher via the SetWindowTheme API. read more...

add a comment |category: |Views: 21

tags: another

Creating a WYSIWYG font ComboBox using C#(cyotek.com)

submitted by cyotekcyotek(155) 1 year, 3 months ago

This article shows how to use the built in ownerdraw functionality of a standard Windows Forms ComboBox control to display a WYSIWYG font list. read more...

add a comment |category: |Views: 22

tags: another

Using the XmlReader class with C#(cyotek.com)

submitted by cyotekcyotek(155) 1 year, 6 months ago

This article describes our effort at converting poorly performing code for loading XML to use an XmlReader for increased performance. read more...

add a comment |category: |Views: 7

tags: another

Comparing the properties of two objects via Reflection and C#(cyotek.com)

submitted by cyotekcyotek(155) 1 year, 6 months ago

As part of the refactoring I was doing to the load code for crawler projects I needed a way of verifying that new code was loading data correctly. As it would be extremely time consuming to manually compare the objects, I used Reflection to compare the different objects and their properties. This article briefly describes the process and provides a complete helper function you can use in your own projects. read more...

add a comment |category: |Views: 53

tags: another

Creating a trackback handler using C#(cyotek.com)

submitted by cyotekcyotek(155) 1 year, 8 months ago

An article showing how to create a trackback handler in C# for use with either ASP.NET webforms or MVC. read more...

add a comment |category: |Views: 14

tags: another

Creating a scrollable and zoomable image viewer in C#(cyotek.com)

submitted by cyotekcyotek(155) 1 year, 8 months ago

Article on creating an image viewer for Windows Forms that can be scrolled and zoomed using C#. read more...

add a comment |category: |Views: 134

tags: another

Converting BBCode into HTML using C#(cyotek.com)

submitted by cyotekcyotek(155) 2 years, 2 months ago

A simple to use class library for converting text containing BBCode used by popular forum systems into HTML using C#. read more...

add a comment |category: |Views: 72

tags: another

Using XSLT to display an ASP.net sitemap without using tables(cyotek.com)

submitted by cyotekcyotek(155) 2 years, 3 months ago

An article on using a basic XSLT transformation to display ASP.net sitemap files in clean and simple markup, without having to use ASP.net's TreeView control. read more...

add a comment |category: |Views: 32

tags: another