Archive for the ‘Tools’ Category

h1

Regex designer tool

November 4, 2008

 

If you want to design and test your regular expressions, you should find any power  utility. There is one – Free Regular Expression Designer.

 

Links

h1

Gacutil

September 16, 2008

In this Article I want to just describe, where you can find your gacutil and how to write out your asseblies into the file.

I don’t know why, buut there are two gacutils:

  • C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\gacutil.exe
  • C:\WINDOWS\system32\dllcache\gacutil.exe

You can write out your GAC by gacutil.exe /L >> aaa.txt

Assemblies in the GAC you can find in hidden folder

  • C:\WINDOWS\assembly
h1

Blocked files VS2005

August 18, 2008

This article should afford help in the situations , when you could not compile project, becouse some of files are blocked.

I am obtaining error messages like this:

  • Unable to copy file “obj\Debug\xyz.dll” to “bin\Debug\xyz.dll  
  • Unexpected error creating debug information file ‘C:\Workspace\WcfClient\obj\Debug\XXX.YYYY.WcfClient.PDB’
    ‘C:\Workspace\XXX.YYYY.WcfClient\obj\Debug\XXX.YYYY.WcfClient.pdb: The process cannot access the file because it is being used by another process.

Solution

Just install this cool and free application. And unblock the process.

 

Links

h1

Informace o oběktech na obrazovce: Object Spy

July 27, 2008

Z SourceForge lze stáhnout prima utilitku – ObjectSpy. Utilitka vrací kolekci properties (včetně handlu) objektů na obrazovce.

  • Důvod proč ObjectSpy používám: Při opravě bugů na UI. Když opravuji bugy po jiných programátorech občas netuším, v jaké třídě se UserControl / Panel / Form nachází. Jediné co vím, je obrazovka, s chybou, kterou mi ukáže tester. V projektu jsou různých formulářů stovky. Ano na vnadě je správná architektura atd… Ale v konkrétní situaci projekt vypadá zmateně a chyby se musejí řešit.  ObjectSpy je záchrana. Pouhým kliknutím a přetažením kurzoru na control ( ikona, formulář, panel tlačítko…. ) získám jeho informace, včetně jména, které si potom můžu v Sulutioně vyhledat.
    v ObjectSpy lze také nastavovat property. To znamená, ušetřený čas při testování (např přizměnách pozadí formulářů atd…)

Reference