T.Sz.v2 Posted Március 5, 2011 Author Share Posted Március 5, 2011 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. Idézés Link to comment Share on other sites More sharing options...
Horusz_xd Posted Április 10, 2011 Share Posted Április 10, 2011 Most mit is akarsz? Idézés Link to comment Share on other sites More sharing options...
T.Sz.v2 Posted Április 24, 2011 Author Share Posted Április 24, 2011 van egy adott szkriptem egy szerveren és visual basicból hivatkozok rá, vagyis lefuttatom. Idézés Link to comment Share on other sites More sharing options...
hajani Posted Április 24, 2011 Share Posted Április 24, 2011 Ezek szerint, egy url-t kell "megnyitni" VB-ben? 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 Idézés Link to comment Share on other sites More sharing options...
T.Sz.v2 Posted Május 29, 2011 Author Share Posted Május 29, 2011 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. Idézés Link to comment Share on other sites More sharing options...
Recommended Posts
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.