Menu:

  Visual Studio 2022 Preview 2.1 ve Gelen Yenilikler
 WebMatrix ile Web Sitelerini Oluşturun, Özelleştirin ve Yayınlayın
 Visual Studio 2011 Developer Preview
 Programlama E-Kitap-3
 Programlama E-Kitap-2
 Visual Studio 2011 Developer Preview Training Kit Eğitim Seti

Sitede hangi programlama dillerini görmek istersiniz.


                                  
 Kullanılan Oy: 1304                 
Sonuçları Göster



ABDULKADİR diyorki:

access veri tabanından qr kod ile sorgulama yaparak kişi bilgilerini nasıl çekebiliriz

devamı için tıkla


Gokhan Yıldırım diyorki:

hocam merhaba, gelen Container.DataItem 'mı 2 ye ayırmak istesek yani küçük ve büyük resim olarak 2...

devamı için tıkla
Turgay diyorki:

Hocam öncelikle teşekkürler makale için,peki bu seçtiğimiz nesnelerin hepsini silmek istersek nasıl ...

devamı için tıkla

Tüm Yorumlar »

Tags-Etiketler

Bu kısımda sitemizde etiketlenmiş makaleleri toplu olarak bulabilirsiniz...


 [ google ] /  Makaleler-Article(s)


google ile ilgili toplam 2 makale bulundu !
(A total of 2 article(s) about google was(were) found in all of articles!)


Article

Google da Arama


Bu örnekte google da arama yapmayı göreceğiz. Formunuza 1 adet TextBox, Button ve webBrowser ekleyin. Aşağıdaki şekili inceleyin. namespace WindowsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { this.WindowState = FormWindowState.Maximized; //Formumuzun tüm ekranı kaplamasını sağlıyoruz. webBrowser1.Size = this.Size; webBrowser1.Navigate("www.google.com"); //Web browserin googleye gitmesini sağlıyoruz.. while (webBrowser1.ReadyState != WebBrowserReadyState.Complete) { // .Sayfanın tamamen yüklenmesi bekleniyor Application.DoEvents(); //Bu kod ile programın kitlenmesini önlüyoruz. } HtmlElement user = webBrowser1.Document.GetElementById("q"); //Bu kod ile id si "q" olan nesneyi seciyoruz ve aşağıda üzerine text deki değeri yazdırıyoruz... user.SetAttribute("value", textBox1.Text); HtmlElement button = webBrowser1.Document.GetElementById("btnG"); //ve burda da id si "btnG" olan nesneyi seçiyoruz ve aşağıda click olayını tetikliyoruz.. button.InvokeMember("click"); } } } //Bir sonraki makalede buluşmak üzere. Bahadır ŞAHİN

Google da Arama


Bu örneğimizde Google da arama konudsunu göreceğiz. Formunuza 1 adet textbox, button ve webBrowser ekleyin. textbox ın name ini txtAra, buttonu btnAra yapın. Aşağıdaki şekili inceleyin. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace WindowsFormsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void btnAra_Click(object sender, EventArgs e) { webBrowser1.Navigate("http://www.google.com.tr/search?hl=tr&q=" + txtAra.Text + ("&meta=")); } private void Form1_Load(object sender, EventArgs e) { this.Text = "Google da Arama"; this.MinimizeBox = false; this.MaximizeBox = false; this.Location = new Point(250, 150); } } } //Bir sonraki makalede görüşmek üzere. Bahadır
 
                                        Son Makaleler

        Sitede yayınlanan makaleleri Blog sitemizden de takip edebilirsiniz. Sitemizdeki makaleleri RSS olarak takip edebilirsiniz.

Web hosting by Somee.com