Tag Archive for '.NET'

Page 2 of 3

MovieMatic Version 1.1.8

Nicht mehr ganz aktuell, aber immer noch neu…

Für alle Filmsammler und Ordnungsfreaks gibt es ab sofort eine neue Version meiner Verwaltungssoftware für Filmsammlungen (MovieMatic) unter www.toenda.com/moviematic zum downloaden. Die aktuelle Version ist 1.1.8.

Direkt Download zum aktualisieren oder installieren (und mit Microsoft SQL Server Express Edition).

flattr this!

Neue MovieMatic Version

Für alle Filmsammler und Ordnungsfreaks, ab sofort gibt es eine aktualisierte Version meiner Verwaltungssoftware für Filmsammlungen (MovieMatic) unter www.toenda.com/moviematic zum downloaden. Die aktuelle Version ist 1.1.6.

Direkt Download zum aktualisieren oder installieren (und mit Microsoft SQL Server Express Edition).

flattr this!

AODL – The .NET Interface for ODF files

In my spare free time im working on a simple movie database to have a sortable collection list of my movies. Hitherto i’ve do that with the Spreadsheet of OpenOffice.
After some time of development i’ve finished a first betaversion of my tool and starts to work on a importer.
The best way to import ODF files is to extract the content files fromt the zip-encoded files and read the xml. This steps were already done by the OpenOffice team and somebody has implement this steps in a .NET interface library. I’ve found this project (AODL, Sourceforge) and starts to working with it. Bug it has a bad bug.
I have a big table with many cells in many rows, but some of this cell – also severals side by side – are empty. And OpenOffice creates on this empty cells a XML attribute called “table:number-columns-repeated” which descripes how many copies of this cells came after this one.
The AODL assembly do’snt has this attribute calculation implemented so that if’ve sit down and do that. So, here’s the bugfix and the assembly.

Link: Download

flattr this!

Code Snippet – C#: Prüfen ob ein String eine gültige Zahl ist / ein gültiger Alpha-numerischer String

public bool IsAlphaNumericString(string strAlphanum) {
    System.Text.RegularExpressions.Regex pattern = new System.Text.RegularExpressions.Regex(@”^[A-Za-z0-9]+$”);
    return pattern.IsMatch(strAlphanum.Trim());
}

public bool IsNumeric(string strAlphanum) {
    System.Text.RegularExpressions.Regex pattern = new System.Text.RegularExpressions.Regex(@”^[0-9]+$”);
    return pattern.IsMatch(strAlphanum.Trim());
}

flattr this!

JobLight.eu – Das freie Jobportal

Soeben habe ich mein neues Projekt veröffentlicht: Das freie jobportal JobLight.eu.
Hier können sich Arbeitgeber kostenlos anmelden und Jobanzeigen bereitstellen und Arbeitnehmer können ihre Bewerbungen und Lebensläufe verwalten. Über die Management Software kann sich Online per Formular dann auf die anzeigen beworben werden.
Link: JobLight.eu

flattr this!