Click here to Skip to main content
15,887,135 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Ip Camera in VB6 Pin
Member 1140477027-Jan-15 3:47
Member 1140477027-Jan-15 3:47 
GeneralRe: Ip Camera in VB6 Pin
Simon_Whale27-Jan-15 4:30
Simon_Whale27-Jan-15 4:30 
GeneralRe: Ip Camera in VB6 Pin
Member 1140477027-Jan-15 7:11
Member 1140477027-Jan-15 7:11 
GeneralRe: Ip Camera in VB6 Pin
Member 1140477027-Jan-15 19:51
Member 1140477027-Jan-15 19:51 
AnswerRe: Ip Camera in VB6 Pin
mohaibje30-Apr-19 1:01
mohaibje30-Apr-19 1:01 
Questionfacebook chat Pin
tavi1723-Jan-15 0:31
tavi1723-Jan-15 0:31 
AnswerRe: facebook chat Pin
Eddy Vluggen23-Jan-15 11:06
professionalEddy Vluggen23-Jan-15 11:06 
GeneralRe: facebook chat Pin
tavi1723-Jan-15 22:32
tavi1723-Jan-15 22:32 
with no API, i tryed somethink like this:

Form Load:
WebBrowser1.Navigate("https://www.facebook.com/messages/")

TextBox3: Press_key:
If e.KeyChar = Chr(Keys.Enter) Then
WebBrowser1.Document.GetElementById("message_body").SetAttribute("value", TextBox3.Text)

WebBrowser1.Select()
SendKeys.Send("{enter}")
TextBox3.Text = Nothing
End If

Timer1_Tick:
If TextBox3.Text = Nothing Then
TextBox3.Select()
End If

i inspect element with FireBug and i sea message are in:< p> Exeamle Message < /p>
I decode all WebBrower1.Document in a TextBox.text
But

Message are not decode in textbox

but ideea was like this:
Then in timer to read all lines: <p.>Exeamle Message

Dim allelements As HtmlElementCollection = WebBrowser1.Document.All
For Each webpage As HtmlElement In allelements
ListBox1.Items.Add(webpage.GetAttribute("< p >"))
Next

Hope u understand me Wink | ;)


GeneralRe: facebook chat Pin
Eddy Vluggen26-Jan-15 5:27
professionalEddy Vluggen26-Jan-15 5:27 
AnswerRe: facebook chat Pin
Richard MacCutchan23-Jan-15 22:43
mveRichard MacCutchan23-Jan-15 22:43 
QuestionProblems passing an entity as argument Pin
dilkonika22-Jan-15 12:05
dilkonika22-Jan-15 12:05 
AnswerRe: Problems passing an entity as argument Pin
Eddy Vluggen23-Jan-15 11:12
professionalEddy Vluggen23-Jan-15 11:12 
QuestionByref or Byval : which is faster and consume less memory Pin
dilkonika22-Jan-15 10:12
dilkonika22-Jan-15 10:12 
AnswerRe: Byref or Byval : which is faster and consume less memory Pin
PIEBALDconsult22-Jan-15 10:23
mvePIEBALDconsult22-Jan-15 10:23 
QuestionRe: Byref or Byval : which is faster and consume less memory Pin
ZurdoDev22-Jan-15 10:34
professionalZurdoDev22-Jan-15 10:34 
AnswerRe: Byref or Byval : which is faster and consume less memory Pin
PIEBALDconsult22-Jan-15 10:38
mvePIEBALDconsult22-Jan-15 10:38 
GeneralRe: Byref or Byval : which is faster and consume less memory Pin
dilkonika22-Jan-15 10:49
dilkonika22-Jan-15 10:49 
GeneralRe: Byref or Byval : which is faster and consume less memory Pin
PIEBALDconsult22-Jan-15 10:52
mvePIEBALDconsult22-Jan-15 10:52 
GeneralRe: Byref or Byval : which is faster and consume less memory Pin
dilkonika22-Jan-15 10:59
dilkonika22-Jan-15 10:59 
GeneralRe: Byref or Byval : which is faster and consume less memory Pin
PIEBALDconsult22-Jan-15 11:08
mvePIEBALDconsult22-Jan-15 11:08 
GeneralRe: Byref or Byval : which is faster and consume less memory Pin
dilkonika22-Jan-15 11:15
dilkonika22-Jan-15 11:15 
GeneralRe: Byref or Byval : which is faster and consume less memory Pin
Dave Kreskowiak22-Jan-15 17:06
mveDave Kreskowiak22-Jan-15 17:06 
GeneralRe: Byref or Byval : which is faster and consume less memory Pin
ZurdoDev22-Jan-15 11:18
professionalZurdoDev22-Jan-15 11:18 
GeneralRe: Byref or Byval : which is faster and consume less memory Pin
PIEBALDconsult22-Jan-15 11:21
mvePIEBALDconsult22-Jan-15 11:21 
GeneralRe: Byref or Byval : which is faster and consume less memory Pin
dilkonika22-Jan-15 11:23
dilkonika22-Jan-15 11:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.