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 201-210 of 300 results.
IDPlCodelangPlGroupPlItemTitleCode 
 
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
43Bash ScriptSonstigesKopfzeile sh-Datei#!/bin/sh # Einfaches Beispiel ... View Update Delete
90C#SonstigesMultithreading in einer Anwendungpublic MainWindow() { var newThread = new System.Threading.Thread(doMethode); newThread.Start("Hallo Welt!"); } private void doMethode(object message) { Console.WriteLine(message); }View Update Delete
93C#SonstigesSolidColorBrush von String KonventiereninputBox.BorderBrush = new BrushConverter().ConvertFromString("#FF7F9DB9") as SolidColorBrush;View Update Delete
95C#SonstigesProgramm mit Parameter startenpublic void StartApp(string filePath, string arguments) { var newProcess = new Process(); newProcess.StartInfo.FileName = filePath; newProcess.StartInfo.Arguments = arguments; newProcess.Start(); }View Update Delete
96C#SonstigesProgramm einfach startenProcess.Start("Programm.exe");View Update Delete