Translate

Montag, 1. Juni 2015

Visual Basic .Net Ordner erstellen, wenn noch nicht existiert


If System.IO.Directory.Exists("C:\test") = False Then
     System.IO.Directory.CreateDirectory("C:\test")
End If

Visual Basic .Net Color RGB to HTML-Color (HEX)

http://lateral8.com/articles/2010/2/2/how-to-convert-rgb-to-hexadecimal-code-in-net.aspx

string htmlString = System.Drawing.ColorTranslator.ToHtml(System.Drawing.Color.FromArgb(70, 90, 155));

Visual Basic .Net Copy Paste in Textbox verhindern

In den Designer gehen --> Textbox anwählen --> ShortcutsEnabled auf "false" setzen