Mats codemix

Mats codemix

A little c#, a litte .NET and throw in some c++ and you get a nice Spaghetti

Mats codemix RSS Feed
 
 
 
 

Archive for .NET

VB6 and .NET (Visual studio 2008)

Im working on a legacy app written in VB6 and want to write .NET-stuff that integrates with it. I feared that i couldnt have both IDEs installed side by side but it seems to work ok (so far…).  The ideal is to put the VB6 environment in a virtual machine and keep it there.
The installation [...]

Testing syntax highlightning - SyntaxHighlighter pro wordpress plugin

SyntaxHighlighter pro wordpress plugin
Plugin csharp

// This is a Comment
function somefunction( string Path="*.txt" ,[string] $pattern="" )
{
select-string $xxxx -patt $pattern | foreach { np $_.Filename}
}

Plugin Powershell
Thanks to Jaykul at HuddledMasses.org!
[sourcecode language='powershell']
# This is a Comment
function Other( [string] $Path=”*.txt” ,[string] $pattern=”” )
{
select-string $xxxx -patt $pattern | foreach { np $_.Filename}
}
[/sourcecode]
Xml-code
Multiline comments doesnt seem to work with this version [...]

Powershell-script to find files not having specified text

I had the need to find files “not containing” a certain text.
I scanned the web and found all and nothing. A few dedicated search tools and editors (some payware and some free).
Since i use powershell a lot in my work i wanted to use that environment. Finding a file based on a certain text [...]