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 141-150 of 300 results.
IDPlCodelangPlGroupPlItemTitleCode 
 
166PythonFilehandlingDatei auf dem Betriebssystem ausführenimport commands output=commands.getoutput("dir") print output # home tmp myFile.shView Update Delete
3VB.NETGUI, MDI-FensterAktives MDIChild und dessen ElementeIf Me.ActiveMdiChild IsNot Nothing Then Dim frm As SubForm = CType(Me.ActiveMdiChild, SubForm) frm.textBox1.Text = "......." End If ' Beispiel: If Me.ActiveMdiChild IsNot Nothing Then If Me.ActiveMdiChild.Name="frmHotel" Then Dim frm As frmHotel = CType(Me.ActiveMdiChild, frmHotel) MessageBox.Show(frm.hotelid) End If End IfView Update Delete
195PythonExceptionsException auslösenif (a!=b): raise Exception("Not implemented, yet")View Update Delete
42PHPHTTP Form SubmitPOST Werte abfragenif ($_POST["submitName"]=="submitValue") { echo "Button submitValue gedrückt"; }View Update Delete
190PythonSchleifenWhile Schleifei=10 while i<10: i=i+1 print i View Update Delete
135T-SQLSecurityZugriff auf DB-Tabellen für Schema/Package gewährenGRANT UPDATE,INSERT,SELECT,DELETE ON SCHEMA :: schema_test TO user_testView Update Delete
170PythonDatum, ZeitGestriges Datumfrom datetime import date, timedelta d=date.today()-timedelta(days=1) output=d.isoformat() # 2014-02-27 View Update Delete
155PythonDatum, ZeitAktuelles Datum/Uhrzeitfrom datetime import date iso_datum = date.today().isoformat() output = iso_datum print output # 2013-12-05 # or import datetime datetime.datetime.now().strftime("%Y-%m-%d_%H-%M-%S") # 2013-12-05_18-09-10View Update Delete
189PythonSchleifenFor-Schleifefor i in range(0, 10): i=1 time.sleep(1) print i items = ['computer', 'fruits', 'fraggels'] # without indexes for item in items: print item # with indexes for (i, item) in enumerate(items): print i, itemView Update Delete
61VB.NETSchleifenFor-SchleifeFor i As Integer = 0 To 10 Debug.WriteLine(i) ' 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 Next For i As Integer = 10 To 5 Step -1 Debug.WriteLine(i) ' 10, 9, 8, 7, 6, 5 NextView Update Delete