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 1-10 of 300 results.
IDPlCodelangPlGroupPlItemTitleCode 
 
5VB.NETGUI, MDI-FensterAuf ein Object eines MDIChilds zugreifen Dim oForm As Form For Each oForm In Me.MdiChildren If Not TypeName(oForm) = "MDIForm" Then If oForm.Name = "frmHotel" Then MessageBox.Show(oForm.GetType.ToString + "|" + CType(oForm, frmHotel).hotelid.ToString) End If End If Next View Update Delete
4VB.NETGUI, MDI-FensterAlle MDIChilds durchlaufen Dim oForm As Form For Each oForm In Me.MdiChildren If Not TypeName(oForm) = "MDIForm" Then If oForm.Name = "frmHotel" Then ' Es gibt mind. 1 geöffnetes Browser-Fenster ' ... End If End If NextView Update Delete
66T-SQLDatenbankAusführen von SQL-Code per Aufruf http://www.databasejournal.com/features/mssql/article.php/3286501/T-SQL-Programming-Part-4---Setting-Variables-in-Calling-T-SQL-Code-While-Using-spexecutesql.htm use Northwind go declare @RECCNT int declare @ORDID varchar(10) declare @CMD Nvarchar(100) set @ORDID = 10436 SET @CMD = 'SELECT @RECORDCNT=count(*) from [Orders]' + ' where OrderId < @ORDERID' print @CMD exec sp_executesql @CMD, N'@RECORDCNT int out, @ORDERID int', @RECCNT out, @ORDID print 'The number of records that have an OrderId' + ' greater than ' + @ORDID + ' is ' + cast(@RECCNT as char(5)) View Update Delete
114AndroidGUI, ComboBoxComboBox füllen public void fillSpn() { String dummyarr[]; Spinner spn1 = (Spinner) findViewById(R.id.spn1); // Dummy Data dummyarr = new String[5]; int i; for (i=0;i<5;i++) { dummyarr[i]=String.valueOf(i); } ArrayAdapter adapter = new ArrayAdapter(this, android.R.layout.simple_spinner_dropdown_item, dummyarr); spn1.setAdapter(adapter); }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
234PowerShellDatum, ZeitAktuelles Datum/Uhrzeit $myDate=Get-Date -format "yyyy-MM-dd hh:mm"; write-host $myDate -Foregroundcolor Cyan; # 2014-01-14 10:15 # Maybe AM or PM # For 24h Version $myDate=Get-Date -format "yyyy-MM-dd HH:mm"; write-host $myDate -Foregroundcolor Cyan; # 2014-01-14 22:15View Update Delete
112AndroidGUI, DialogeHinweis-Dialog AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setMessage("Hinweis") .setTitle("Hinweis-Meldung") .setNeutralButton("OK", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { dialog.cancel(); } }); AlertDialog alert = builder.create(); alert.show();View Update Delete
69C#GUI, .NET-WPFRessource aus separater Style-Ressource var tbo = new TextBlock { Style = (Style)Application.Current.FindResource("MyTextBlockStyle") };View Update Delete
52JavaDatum, ZeitAktuelles Datum/Uhrzeit SimpleDateFormat formatter = new SimpleDateFormat ("yyyy.MM.dd 'at' HH:mm:ss "); Date currentTime = new Date(); System.out.println("Zeit und Datum : " + formatter.format(currentTime));View Update Delete
19CachéCaché-Spezifisch, NamespacesPrüfen ob ein Namespace existiert If $ZUtil(90,10,"SAMPLES") { ZNSpace "SAMPLES" }View Update Delete