I have this code in VB.net (windows)
I tried it in b4a but there's an error.
How can i convert that code to b4a?
B4X:
Imports System.Net
Public Class Form1
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim request As WebRequest = WebRequest.Create("www.myurl.com/file.php?w=" & notes.Text)
request.GetResponse()
End Sub
I tried it in b4a but there's an error.
How can i convert that code to b4a?