Trafic - 'listen' To The Network Traffic To And From A WebBrowser Control

Mar 14, 2011

I want to 'listen' to the network traffic to and from a WebBrowser control. I'm not interested in the HTML.

View 12 Replies


ADVERTISEMENT

Determine If There Is Network Traffic?

Nov 27, 2010

how can I determine if there is network traffic?I would like for example to show how fast the network traffic goes or to add a flash using a picturebox to animate the network activity

View 5 Replies

How To Monitor A Process's Network Traffic

Feb 27, 2011

I want to create a Small application for all the computers in my house that Monitors Network Traffic Because we are using large amounts of data each month and that leads to high costs.I can Monitor A computers total traffic with the system.net.networkinterface namespace. Now I would like to know if it is possible to Monitor an Process/applications Network Traffic to pinpoint The Problem.I've Read About WMI But there is so Much info on MSDN that i can't actually get to what i want and i don't think there is something so direct like the amount of bytes sent over the network.

View 3 Replies

Listen To IP On Network?

Dec 6, 2011

I have barcode reader work by rs232 , i using converter from rs232 to TCP/IP to make it connect by TCP/IP, Now barcode send data on this Ip "192.168.0.125" on local network and the IP port is 50000 How i can listen to this ip to read the data send to this ip?

View 8 Replies

Capture The Actual Traffic Coming From The Firewall On The Network

Jul 30, 2009

I am trying to write a program that captures log information from my Cisco 5510 firewall. I have a service working where it will perodically write text to a file. What I need now though is how to capture the actual traffic coming from the firewall on the network. It uses UDP port 514 to send it. I need to know how can vb capture that traffic and write it to the log file. I am a beginner to vb.net so please be patient with me if it seems like I am asking too many simple questions.

View 10 Replies

Use Webbrowser As Referral Traffic?

May 20, 2012

so with google analytics , it can tell you if you have direct traffic or if you traffic was referred from a website. I have no idea how it can tell that the traffic has been referred, and I want to fool it to make it look like I was refrerred from another site using the webbrowser component.

View 5 Replies

Controlling WebBrowser Display If Webbrowser Control Is Used As File Explorer

Apr 18, 2011

I use webbrowser as File Explorer.

If you click folder it opens new folder contents in WB window but if you click html document it opens in EXTERNAL viewer.

How do you get html document to open in WB while exploring ?

View 3 Replies

Different Webbrowser Control - Web Based Apps Which Will Require A Webbrowser Extension

Aug 10, 2010

I am writing a few web based apps which will require a webbrowser extension. I have already used the IE webbrowser control that uses the trident web rendering engine. I believe this is MSHTML.DLL? Anyway, some of the users of my programs have complained of a few things. Particularily,

1. It seems to be a slow browser, at least compared to other rendering engines out there (webkit and gecko are 2 known ones).

2. On the developer side, it seems to be low in features. The features are sufficient in most cases, but there are some "special" things that I need.

3. It has VERY low HTML (and especially HTML5) compliance.

My question is, how much work would it take to use a different engine (such as webkit .net, which I HAVE heard of) and be able to distribute it easily. Or, if you guys feel ambitious, we could try writing a brand new engine ourselves. I know how big of a job it is, and frankly, I have no clue where to begin. I would just like your thoughts and opinions on the matter.

View 3 Replies

Webbrowser Control - Memory Leak - HTTP Web Request Instead Of A Webbrowser?

Mar 18, 2011

i have created an app to load an access database into a datagridview, which contains web urls. When button is clicked it webbrowser1 navigates to each url and each webpages document.inertext is put into textbox. This all work fine but after a while the webbrowser navigation becomes increasingly slower.

For Each RW As DataGridViewRow In Me.DataGridView1.SelectedRows
'''''''''''#######cell values into strings ########''''''''''''''
If RW.Selected = True Then
Dim domain As String

[code]....

View 7 Replies

System.Windows.Forms.WebBrowser.Navigate To Load A Network File?

Aug 30, 2011

We are using a web browser to show a pdf file located in a folder on the network. The code looks like this:

System.Windows.Forms.WebBrowser.Navigate(New Uri("\hostpath ofile.pdf"))

This works fine, but now I have to use a specific user to access this file and I don't know how to include the user name, password and domain in the URI. Is it posible to add user credentials to the URI? Can I use another variant of Navigate method to accomplish this?

View 1 Replies

VS 2008 Network App - Send Message Or Network Package To Some Of The Clients In The Network

Aug 18, 2009

Here is my idea so far: I have a bunch of computers connected in a local network. One of them is a MySQL server, one will have a vb.NET program wich will act as a "second server" and the rest will be different clients. What I want to do is that the "second server" will send out some kind of message or network package to some of the clients in the network, and they will execute a code based on what message it is, or what kind of package it is. I'll give you a simple example:

[Code]...

View 6 Replies

Way To Do A 'webbrowser' Without Using WEbbrowser Control That Is Based On Internetexplorer?

Jan 1, 2011

Ive tried to edit option on the webbrowser control, example javascript enable/disable. but found out that it uses IE's option and cannot be changed.So my question is: Is there a way to do a "webbrowser" without using the WEbbrowser control that is based on internetexplorer? If it is, can i change option example flash and so on?

View 6 Replies

From HTML Content In A WebBrowser Control, Call Another Control?

Feb 20, 2010

I have a regular application form with a WebBrowser control.I have strung together a .htm file (from a regular text file) which I then assign to the WebBrowser control. In the html file, I have filenames mentioned.I am trying to string together the html in such a way as to give a clickable link or button that will parse into html and open the corresponding file in another WebBrowser control in VB.I have tried using VBScript and JavaScript to put a button in the html.As long as the function or sub I call is also in the same html document, it works, but I really need to transfer the control back into visual basic where I can do the heavy lifting I need to.can I just not do this as a regular VB application? Any way to do it without adding the complication of requiring ActiveX?

View 3 Replies

WebBrowser Control: How To Send Text To TEXTAREA Control

Dec 8, 2009

I have a WebBrowser control that have a webpage loaded in it. On the webpage I have a textarea control, like this:

<textarea name="text" id="textarea_obj">

View 2 Replies

Get Internet Traffic Using .net?

Apr 25, 2012

I'm trying to make a coffee net program.I want to get only internet sent and received bytes.

View 5 Replies

Traffic Light Using Tab Key?

Jan 28, 2011

Simulate a traffic light with three small square text boxes on the form. Initially the bottom text box is green, the rest are dark gray. When the tab key is pressed, the middle box turns yellow and the bottom box turns dark gray. The next time the tab is pressed, the top box turns red and the middle box turns dark gray. Subsequent pressing of the tab key cycles through the three colors. Hint: First place the bottom text box on the form, then the middle, then the top. I did all this and dabbled below. Does that look at all correct...minus the timer thing...I got the timer code (which is not needed) but am not sure how to write it so the tab key does the work. This is really confusing to me, but it is a required class.

Dim Counter As Single
Private Sub Timer1_Timer()
Counter = Counter + 1

[Code].....

View 7 Replies

Creating A Traffic Light?

Nov 11, 2010

Simulate a traffic light with three text boxes placed vertically on a form. initially, the bottom text box is solid green and the other text boxes are dark grey. when the tab key is pressed, the middle text box turns yellow and bottem box turns dark grey. next time the tab key is pressed, the top box turns red and the bottem two turn dark grey. Basically the tab key cycles through the colors.First off let me say im not looking for an entire code. What im looking new to VB (been working on it for only a week) and im haven trouble finding a sourcecode for "tab". I named the bottem text box "Green", middle text box "yellow" and top "Red"....how do i go about finishing the code?

Public Class trafficlight
Private Sub Green_BackColorChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Green.BackColorChanged

[code].....

View 3 Replies

Monitor The Internet Traffic?

Nov 30, 2011

How can I monitor the internet traffic and identify when a specific website is visited so that a certain function could be run? I'm making a internet censor program for a school project.

For example, I want to be able to browse the internet all day long with the program running in the background, but once I were to visit a specific URL (listed in the code somewhere) the program would run a function when the specific URL is detected.

View 6 Replies

Way To Monitor Internet Traffic

Jan 14, 2011

How do i monitor internet only traffic without LAN traffic(such as file transfer between LAN) using vb

View 1 Replies

Calculate The Traffic Of Sent And Received Using Program?

Oct 10, 2009

I want just a code that calculate and show the traffic (volume) of sending and receiving to/from internet?for example, IE is opening a page and IDM is downloading a file ; NOW , how many bytes has been sent / received

View 5 Replies

Calculate The Traffic Of Sent And Received Using VB Program?

May 12, 2012

I want just a code that calculate and show the traffic (volume) of sending and receiving to/from internet?

for example, IE is opening a page and IDM is downloading a file ; NOW , how many bytes has been sent / received?

View 2 Replies

Measuring Traffic Sent And Received Over Internet?

Jun 23, 2011

How to measure the number of bytes sent and received while using the internet from VB.NET 2010 ?

View 1 Replies

VS 2010 Monitor Internet Traffic

Feb 27, 2011

I want to make a Small Traffic Monitoring Program for our house. Since in South Africa Internet is One of the many things that are way overpriced I want to monitor each computers traffic with a small Program since even when we are not at home for a day we might easily use 2 gigs of data. Somewhere a computer is downloading like mad?For a 4 mib(you only get 3.5 at most) line here Will cost you around R413(36 GBP/ 58 Usd) per month and One gig of data around R19(1.68 GBP/ 2.70 Usd) - R112(9.9 GBP - 15 USD).Ok enough Complaining. Each Computer in our house Connects to the internet either with lan or Wlan So is their a way to get how much traffic passes through one of those OR is there a way to monitor the total internet traffic regardless of how it connects to the internet ?

View 3 Replies

Improve Traffic Light System With Use Of Barrier

Dec 30, 2009

please help me am in need of code for traffic light simulator, wanted to design a simulator with barriers which close a lane when it light red and opens when it lights green.These barriers should be in form of red and black bars on the entrance of any parking area.The reason to barriers is that here in Uganda traffic is controlled mostly by the police men so i wanted to improve the traffic light system with the use of barrier.

View 3 Replies

Using Fiddler2 To Txt Log Webpage Traffic In Real-time?

Jun 23, 2011

Me and a few other people are developing a piece of software that measures levels of distraction based on some user settings. The user will be able to designate certain programs, websites, etc. as "on task" and anything else will be considered "off task" by the program. The only road block we have run into is being able to grab the user's current web page in real time -- at any given second we need to be able to programatically determine what web page the user is viewing (in any browser) and determine whether it falls under "on task" or "off task". We would like to do this by creating a C# extension for Fiddler2 but are open to other suggestions as well (the software itself is programmed in VB.NET).

View 1 Replies

Visual Studio 2010 - Traffic Lights In .net?

Sep 26, 2011

how to use time in vb.net.I would like to make a traffic lights program in vb.net but am not yet sure where to start besides the interface.I want the lights to change within a give time.

View 8 Replies

TCP Listen On Any IP?

Mar 11, 2010

I am trying to make a TCP chat program, but instead of having people enter in the ip of the computer they wish to talk to everytime, i would like the program to be able to listen on all ip addresses, so that it will provide for a better user experience, and that i can have chat rooms with multiple people joining. I have the code working with entering in ips, however, when i use the IPAddress.any command it will not send messages.

View 3 Replies

Add A Control To A WebBrowser Control Page?

Apr 16, 2009

I have a webbrowser control, where I show images (bmp files, that the program creates), and I want to add some UserControls to setup the images (as showing layers, or choosing colors to display). Is easy to do appropiate UserControls on VB.NET, and I know almost nothing about HTML, so, I would like to add standard VB.NET UserControls near the images.

View 12 Replies

.NET: Listen For Keypresses?

Apr 17, 2012

I found the code linked below on on of Microsoft's websites for listening for keypresses, however I can't seem to ge thte code to respond?

View 5 Replies

Listen For The 'End Sub Event'?

May 26, 2009

This is my first post, so hopefully I'm asking it in the correct place.

Currently I have two subs where the first calls the second.

Sub Sub1()
'some code
Call Sub2(x)
End Sub
Sub Sub2()
'some code
End Sub

This means that Sub1 does not end until after Sub2 is complete.I need to have Sub2 run after Sub1 has ended. In my case Sub1 is triggered from an application event, so calling the two subs from another 'parent' sub would not work.Is there a way that I can listen for the 'End Sub Event' of a sub?I am currently working in VBA but will be heading to .net shortly so I'll take whatever flavour of code people can help with.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved