• 07-04-2009, 01:22:04
    #10
    Üyeliği durduruldu
    Vb.net ile

    Alıntı
    System.Diagnostics.Process.Start("http://www.google.com.tr")
    kodunu kullanarak yapabilirsin.Eğer kurulu değil ise site adresini gönder yapıp yolluyayım
  • 07-04-2009, 09:32:47
    #11
    Merhaba..
    BU VB 6 ile
    Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
    Private Sub Form_Load()
    Call ShellExecute(&O0, vbNullString, _
    "http://www.siteadi.com", vbNullString, vbNullString, vbNormalFocus)
    End Sub
    Bu VB.net ile
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    System.Diagnostics.Process.Start("http://www.siteadi.com")
    End Sub
    Bu C# ile
    private void Form1_Load(object sender, EventArgs e)
    {
    System.Diagnostics.Process.Start("http://www.burhanemre.com");
    }
    Son Olarak Bu da Delphi 7 de
    procedure TAboutForm.FormCreate(Sender: TObject);
    begin
    ShellExecute(Self.Handle, 'open', 'http://www.google.com',
    nil, nil, SW_SHOWNORMAL);
    end;


    Kolay Gelsin...