Jump to content
PirateClub.hu

Visual Basic Kérdéseim [s0nt- nak ajánlott :)]


T.Sz.v2
 Share

Recommended Posts

Hát lenne egy komplex kérdésem. Adott egy szerver amin van egy szkript (még nem tudom milyen), ami elküld egy emailt, ha én egy Vb programból megnyomok egy gombot. Szóval ez nem csak visual basic kérdés, de hát nem tudom.

Link to comment
Share on other sites

  • 1 month later...
  • Replies 64
  • Created
  • Last Reply

Top Posters In This Topic

  • 2 weeks later...

Ezek szerint, egy url-t kell "megnyitni" VB-ben? :unsure:

 

Imports System.Net
Imports System.Text
Imports System.IO

Public Class Form1
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim request As HttpWebRequest = WebRequest.Create("http://www.honlap.com/szkript.php")
        request.Timeout = 10000
        Dim response As HttpWebResponse = Nothing
        Try
            response = request.GetResponse()
            REM olvasás utf-8 kódolással
            Dim reader As StreamReader = New StreamReader(response.GetResponseStream(), Encoding.UTF8)
            MessageBox.Show("Válasz: " & reader.ReadToEnd())
            reader.Close()
        Catch exception As WebException
            MessageBox.Show("Hiba! " & exception.Message)
        End Try
    End Sub
End Class

Link to comment
Share on other sites

  • 1 month later...

Az előzőre is köszi, de nem fogytak el a kérdéseim. Most az lenne, hogy írjon ki egy szöveget, amikor fut egy alkalmazás teljes képernyőn. (Vagy talán egy DirectX-et használó programnál?) Úgy mint például a Frapsnál az FPS.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Hozzászólás a témához...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

  • Jelenleg olvassa   0 members

    • No registered users viewing this page.



×
×
  • Create New...