Tags-Etiketler
Bu kısımda sitemizde etiketlenmiş makaleleri toplu olarak bulabilirsiniz...
[ inputbox ] /
Makaleler-Article(s)
inputbox ile ilgili toplam 2 makale bulundu ! (A total of 2 article(s) about inputbox was(were) found in all of articles!)
Article |
---|
VC#.Net te InputBox Kullanımı Bu makalemizde C#.Net te InputBox nasıl kullanılır konusunu işleyeceğiz.
İlk önce Project kısmından Add Reference tıklayın. Daha sonra .Net kısmından
Microsoft.VisualBasic i seçip OK e tıklayın.
Microsoft.VisualBasic.Interaction.InputBox();
şeklinde InputBox ı kullanacağız. Aşağıdaki kodları ve şekilleri
inceleyin...Bahadirsa
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Int32 XPos = ((SystemInformation.WorkingArea.Width/2)-200);
Int32 YPos = ((SystemInformation.WorkingArea.Height/2)-100);
String ad = Microsoft.VisualBasic.Interaction.InputBox("Lütfen İsim Giriniz...", "VC# InputBox Örnek... ", "Bahadır", XPos, YPos);
if(ad != "") { MessageBox.Show("Merhaba " + ad); } else { MessageBox.Show("Merhaba her kimsen..."); }
}
}
}
Bir sonraki makalede görüşmek üzere...Bahadirsa
| InputBox tan Girilen Sayıları Büyükten Küçüğe Sıralama Bu örneğimizde InputBox tan girilen sayıları ListBox ta büyükten küçüğe sıralamayı göreceğiz.
Public Class Form1
Private Sub btnGir_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnGir.Click
Dim i, j, k, yedek As Integer
Dim sayi(10) As Long
‘sayi(10) indisli değişkendir
For i = 1 To 10
sayi(i) = InputBox(i & ".Sayıyı Giriniz...") ‘sayıları alıyoruz
Next
For i = 1 To 10
For j = 1 To 10
If sayi(i) > sayi(j) Then
yedek = sayi(j)
sayi(j) = sayi(i)
sayi(i) = yedek
End If
Next j
Next i
‘Buyukten Kucuge Siralama
For k = 1 To 10
ListBox1.Items.Add(sayi(k))
Next
‘Kucukten Buyuge Siralama
‘For k = 10 To 1 Step -1
‘ListBox1.Items.Add(sayi(k))
‘Next
End Sub
End Class
|
|
        Sitede yayınlanan makaleleri
Blog sitemizden de takip edebilirsiniz.
Sitemizdeki makaleleri RSS olarak takip edebilirsiniz.