Translate

Samstag, 21. November 2015

DesktopSearch

DesktopSearch

Software to search in a configured folder.
Software, die im in der Konfiguration angegebenen Ordner sucht.

Version 2:
Download (GDrive)
Download (Dropbox)
Download (Sourceforge)
Plattform: Windows mit .Net 4.5.1

Version 1:
Plattform: Windows mit .Net 4.5.1

C# Find string in Combobox

 https://msdn.microsoft.com/en-us/library/wxyt1t12%28v=vs.110%29.aspx
 
private void findButton_Click(object sender, System.EventArgs e) {
    int index = comboBox1.FindString(textBox2.Text);
    comboBox1.SelectedIndex = index;
}

C# .exe über .lnk ausführen

 Verweise --> Verweis hinzufügen --> COM --> Windows Script Host Model


IWshRuntimeLibrary.IWshShell shell = new IWshRuntimeLibrary.WshShell();
                        IWshRuntimeLibrary.IWshShortcut shortcut = (IWshRuntimeLibrary.IWshShortcut)shell.CreateShortcut(link);

                        Process.Start(shortcut.TargetPath);

Alle meine Softwareprojekte

Herzlich willkommen auf der Seite von Hämmer Electronics.

Hier findet ihr meine selbstprogrammierte Software, die ihr kostenlos downloaden könnt ;)

KWAnzeige

KWAnzeige

Software to show you the current calendar week.
Software, die die aktuelle Kalenderwoche ausgibt.
Plattform: Windows mit .Net 4.5.1

ProcessKiller

ProcessKiller

Software to kill processes defined in your configuration.
Software, um die in der Konfiguration genannten Prozesse zu killen.
Readme
Plattform: Windows mit .Net 4.5.1