knowmeifyou
Active member
- Joined
- Jun 16, 2013
- Messages
- 26
- Programming Experience
- Beginner
here is the website
here is my codes
to select item on combobox and its working
here is the output
but using a webbrowser installed on pc i get this result
the problem is when using my program. it doesnt hide the
any idea guys? what additional codes i need to add on my codes
VB.NET:
http://www.afreesms.com/freesms
VB.NET:
using vb.net and webbrowser control
wb name of my webbrowser control
VB.NET:
Try
Dim element As HtmlElement = wb.Document.GetElementById("countrycode")
Dim month As HtmlElement = element.GetElementsByTagName("option").Cast(Of HtmlElement).First(Function(el) el.GetAttribute("value") = "PH")
month.SetAttribute("selected", "true")
Catch ex As Exception
MsgBox(ex.StackTrace)
End Try
here is the output
but using a webbrowser installed on pc i get this result
the problem is when using my program. it doesnt hide the
VB.NET:
sender id: country code: and mobile number
and it doesnt add the country code + 63 below the combo box after choosing the country
any idea guys? what additional codes i need to add on my codes