I've got this code to send information via Inet.
VB Code:
strMsg = Replace(Text2.Text, vbCrLf & vbCrLf & vbCrLf, "</p><br /><p>") strMsg = Replace(strMsg, vbCrLf & vbCrLf, "</p><p>") strMsg = "<p>" & Replace(strMsg, vbCrLf, "<br />") & "</p>" Inet1.OpenURL ("http://www.mysite.com/admin/test.php?body=" & strMsg)
Can I do it the other way around now, say enter 3 to a txtbox then
VB Code:
Inet1.OpenURL ("http://www.mysite.com/admin/getinfo.php?id=" & tetxbox1.text)
and with this populate the rest of my boxes with it's info???
can this be done??




Reply With Quote