Manage PlItems

You may optionally enter a comparison operator (<, <=, >, >=, <> or =) at the beginning of each of your search values to specify how the comparison should be done.

Advanced Search
Displaying 91-100 of 300 results.
IDPlCodelangPlGroupPlItemTitleCode 
 
100C#SonstigesStartet die aktuelle Applikation neuvoid RestartApplication() { string[] FullNameSplit = Application.ResourceAssembly.FullName.Split((char)44); Process.Start(FullNameSplit[0] + ".exe"); Application.Current.Shutdown(); }View Update Delete
101C#SonstigesGibt die Version der aktuellen Applikation als string zurückprivate string GetApplicationVersion() { string[] FullNameSplit = Application.ResourceAssembly.FullName.Split((char)44); return FullNameSplit[1].Replace("Version=", string.Empty).Trim(); }View Update Delete
104C#SonstigesGibt den Temporären Ordner des System zurückstring sysTempPath = System.IO.Path.GetTempPath();View Update Delete
107C#SonstigesArbeiten mit der Zwichenablage (Clipboard)Clipboard.SetText("Text..."); string myString = Clipboard.GetText();View Update Delete
111HTMLSonstigesRSS Hinweis<link rel="alternate" type="application/rss+xml" title="RSS Feed" href="Feed-URL"/>View Update Delete
35JavaGUI, Komponenten allgemeinFocus setzenjTextfield1.requestFocus();View Update Delete
36JavaGUI, Komponenten allgemeinPanel Größe ändernimport java.awt.Dimension; import javax.swing.JPanel; Dimension dim = new Dimension(); dim.height=300; dim.width=500; JPanel pan = new JPanel(); pan.setPreferredSize(dim); View Update Delete
37JavaGUI, Komponenten allgemeinL&F setzen/ändernimport javax.swing.UIManager; // Set the L&F to the standard OS-Theme UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); // there are other possibilites and L&F-Sets... Just google ;-) // For example look at L2FProd or Substance...View Update Delete
55DelphiGUI, Komponenten allgemeinMit Return ein Ereignis im Textfeld auslösenprocedure TForm1.Edit1KeyPress(Sender: TObject; var Key: Char); begin if Key = #13 then begin Key := #0; ShowMessage('Auswerten ...'); end; end; View Update Delete
68VB.NETGUI, Komponenten allgemeinDezimal/Währungseingabe in zwei Textboxen Sub TextBox1KeyUp(sender As Object, e As KeyEventArgs) If ((e.KeyCode = Keys.Oemcomma) OR (e.KeyCode = Keys.Decimal)) Then CType(Sender,TextBox).Text = CType(Sender,TextBox).Text.Trim(",") CType(Sender,TextBox).SelectionStart = CType(Sender,TextBox).Text.Length For i As Integer = 0 To Me.Controls.Count-1 If Me.Controls.Item(i).TabIndex = CType(Sender,TextBox).TabIndex+1 Then CType(Me.Controls.Item(i),TextBox).Focus End If Next End If End SubView Update Delete