Stop A Listener Properly?

Jan 22, 2012

When I stop my TCP Listener by the Stop command, I always get an error because I use BeginAcceptTcpClient to accept the clients. How can I stop a listener properly?

View 1 Replies


ADVERTISEMENT

How To Properly Open A Image Using Bitmap Class And Dispose It Properly

Jun 22, 2010

I am looking for a code snippet which opens a image, creates a clone of this bitmap in memory disposes this opened image so that all handles are closed.

Usually we can open a bitmap using this[code...]

the following code however keeps the Image File locked until the application is running, any suggestions how to dispose it properly. (So that no handle is left open )

Things i already tried: use dispose method of bitmap <= doesnt work (need to write implementation)
Using Block also doesnt work.

View 2 Replies

Add Listener (event) To A Program?

Nov 14, 2011

I'm writing an add on to an existing program through an API, but the event I need doesn't exist. How do i go about creating my own event in VB.

I'm writing a plug-in for a program called promis-e that works in conjunction with Microstation CAD platform to generate electrical drawings.I need to call a function I wrote when a new symbol is added to the active drawing, but that event isn't available in promise, so I was wondering if I could write my own event in Microstation that calls that function ?

View 1 Replies

Add Winsock Listener In Program?

Nov 1, 2009

How to add winsock listener in Vb 2008

View 1 Replies

Communications :: TcpClient/Listener ?

Jan 16, 2010

I'm having a hard time getting the fundamentals down about these TCP Socket classes.

When you use TcpClient, you can set the IP Address or domain name to connect to the server end of the socket. I see examples that use "localhost" as the first parameter for TcpClient. Is this just a broadcast over the network to find the server that has a TcpListener listening on the dictated port of the second parameter of the TcpClient declaration? With any IP address for TcpClient (I realize that's an option, though), how does "localhost" find the TcpListener server?

View 8 Replies

Create A Http Listener?

Jan 4, 2010

create a http listener using vb .net.

View 1 Replies

Threading Clients Using A Tcp Listener?

Dec 2, 2009

(Using vb 2008 express.)

I am trying to create a server to send clients text on request. I am using a tcp listener to accept clients then send each client to a thread in a threadpool which deals with each client's request then closes the client connection. It seems to work fine but I would like to know how it works. Using the listen loop below I cant help feeling I should be sending some values to the threaded sub. How does it know which client each thread is dealing with?

Sub ListenLoop()
Looop:
Client = Server.AcceptTcpClient

[Code].....

View 1 Replies

Use Tcpclient And Listener To Use A No-ip Host?

Apr 27, 2009

is there a way to use my tcpclient and listener to use a no-ip host because i am on a laptop

View 5 Replies

Chat Server / Listener Program

Dec 16, 2010

I am trying to write a program that has a server/listener program and then 2 client programs, the 2 client programs are supposed to be able to chat with each other. Can anyone point me in the right direction on this?

View 4 Replies

Event Driven Tcp Listener Method?

Aug 23, 2011

I'm another newbie with VB (2010) so please bear with me. I am attempting to make a method that is event driven by data threads on the Ethernet port. Simply put, the method is to wait until a data thread from a "Control By Web" 5-input device sends an "information update" data packet to the application, with the application then processing the information. This application is on a private, well controlled network, with no access to the internet. I have a method that is working right now reading data packets when invoked with a timer (see code below) but I really need it to be event driven.

' this is added at the top of the class
Dim tcplistener As New TcpListener(IPAddress.Any, ip_port)
'this is added in the "form1_load" module

[code]....

View 1 Replies

How To Use Infinite Loops In Event Listener

May 1, 2012

I am trying to build a small window component, which has two buttons.

When I click on the Start button, my code needs to establish the connection to server and keep checking the status (this is infinite loop, I have a boolean global variable which is set to true and based on this loop will work).

When I click on stop button, it should stop checking (I will make global variable to false).

I have code to check my server status.

However, since it is kind of infinite loop, moment i click on start, window form is not taking any other actions, since the control not coming out of event listener of start button.

I have many scenarios like this kind of infinite loops.

How to resolve this, what kind of approch should i follow in vb.

View 8 Replies

SMTP Listener Corrupting HTML?

Jan 30, 2009

I have an SMTP listener that accepts incoming connections and routes the message to a folder using FileStream. I have to add x-sender: email@address.com and x-receiver: email@address.com to the first two lines of the file so it can be put in a pickup folder for relay later. It seems as though this way of handling the incoming stream is corrupting the HTML in the email message body. Does anyone have a clue what I am doing wrong or a suggestion that would point me in the right direction regarding what I am missing?

View 7 Replies

Using HTTP Listener To Parse URL Parameters?

Jul 7, 2011

I intend to write a .NET application that does logging and analytics to data using VS 2010. I want to link my application with an external non .NET application via intranet. This external application provides integration through URL triggers. When an event occurs it can send this event parameters to any application via HTTP/HTTPS POST or GET requests. It allows me to select the event parameters to be included in the HTTP request that will be sent as URL parameters. URL parameters consist of a name and a value, and are separated from the URL with a question mark (?).

So an example request can look like this: [URL] any dynamic elements in the URL are displayed in brackets (<>), and are replaced by the corresponding event used at run time.

Now what design method should I follow to create a component in my application to listen to the URL request and parse it's elements. Knowing that I want to protect my URL listener with a username and password.

View 1 Replies

Vb2008 Creating A Port Listener?

Oct 9, 2009

I am using vb2008. I am creating a port listener. When I test the listener I get an exception in the code as shown below.I send one record through ("Hello") . When it tries to read again I get the error. This read would result in EOF. When this happens, shouldn't i go to 0? Instead it keeps its previous value of 5 which is the number of characters in "Hello"

m_blnStop = False
Dim server As TcpListener
server = Nothing
Try

[code]....

View 1 Replies

VS 2008 TCP Listener - Only Responds To 1st Message?

Apr 8, 2009

OK this is my third thread on TCP problems and the first two I managed to figure out for myself within 10 mins of posting before anyone had a chance to reply so lets see if it works again - failing that if you have any advice I'd be most grateful.

I have a server app which should be sitting and listening for messages on one port (4000) and then processing requests and sending data back via another TCP client on a different port (4001). My code is based on someone else's example and it works fine sending and receiving the first message, however after the first message the listener seems to stop listening and never gets any further messages.

Am I misunderstanding how they work? After I get the first message do I need to close the listener and create a new one, or should the same listener keep working until I close it?

[Code]...

View 7 Replies

TCP Send String - No Example Of A Client With A Tcp Listener Built In?

Dec 23, 2011

I create a small program witch is a tcp client.I sent a asqii string to a tcp device over ethernet thads acts like a server.As soon as the device recieves the input string it will respond back with response data. The problem is i am not getting any response data back from the divice. The lenght of the string is max. 30 characters.When a use WireShark i see the reponse, but VB read nothing.I have read many threads with explenations about server/client connections but no example of a client with a tcp listener built in.I think thad the stream read is to late after the send instruction.

View 2 Replies

Possible To Create A TCP Listener That Does Not Need A Specific Number Of Connections Initialized?

Jan 30, 2009

I am totally new to socket connections, so I've pieced together code from the internet to try and start a TCP Listener object. [code] Is it possible to create a TCP listener that does not need a specific number of connections initialized? Can I just have it listen on an open port until data is received? I will be receiving a lot of data at once from many servers...

View 1 Replies

Stopping Multiple Timers - Stop Button To Stop Each Timer One At A Time

Feb 26, 2009

Alright, so I'm still working on the slot machine. I have three timers all independently going for my three "wheels" of the slot machine.

My issue, is that I'm trying to make a Stop button to stop each timer one at a time, and I'm not understanding why this code isn't working. The logic completely makes sense, and the first "wheel" stops when I click the button, however, it doesnt appear to stop the other two timers.

CODE:

View 2 Replies

VS 2008 Intercept Specific URLS - Create A Listener Type Application

Sep 30, 2009

I'm wondering if it's possible to create a listener type application that would monitor webaddresses that the user attempts to go to. And can then either block or redirect the browser to another website. Purpose: I know this seems to sound a little weird but what I'm attempting to do is a NetNanny type application that can run on the user's PC and the allow, prevent, rewrite (would look for particular keywords and rewrite them "words I wouldn't want my 7yr old seeing or reading), or redirect to other webpages. I would also like to be able to handle both IE and Firefox browser with this one application.

[Code]...

View 6 Replies

SMTP Mail Server Coding - Write A Port Listener And Display The Message In A Text Box?

Jan 31, 2012

I am looking to make a SMTP (Port 25) listener to listen in and accept incoming mail, look at the message source, make changes if needed, and retransmit the message out another port. This iwll make it act like a sort-of intermediary service.how one would write a port listener in VB.net, that could listen in on the port, and display the message in a text box (the whole source, headers and all, since that's what the mail comes in as anyway).

View 3 Replies

VS 2008 Stop Threadpool With A Stop Button?

Dec 24, 2009

I have a simple application that use thread pool to read a file and input the data into a listbox. I want to be able to stop threadpool from running after clicking a stop button. How do I stop threadpool? Here is the code for my application below:

Imports System.Threading
Public Class Form1
Private Delegate Sub StringDelegate(ByVal text As String)

[Code]....

View 6 Replies

VS 2010 : Use A Stop Button To Stop A Loop?

Dec 7, 2009

I created a form and have the variable inputs for 4 motor run statements. Then with a start button the script starts and it is surrounded by a for next statement to loop 10 times. It works fine but if i need to stop the execution of the script with a stop button. I put the stop in a new section but of course does not work to do a motor stop. It just causes the exe to not respond till the loop is complete. Just need to be able to stop the Run1_Click button section.

Edit:I do not mind if it finishes the 4 motor run commands and then stops execution of the loop. So need to figure out a way to trigger a stop from a button on the form to stop the cycle. For the future the loop will be a variable integer input so 10 will not be the standard.

Edit::Does a ' Do ' statement sound like the thing to use? If so how and where would I place that? Have a Stop button on the form and it would stop after the 4th motor run command.

#End Region
Declare Function InitStp Lib "stp.dll" () As Integer
Declare Function RunMotor1 Lib "stp.dll" (ByVal steps As Integer, ByVal interval As Integer, ByVal direction As Integer, ByVal outputs As Integer) As Boolean

[code]....

View 2 Replies

Internet Radio Listener - Display Live Artist / Song Info From Several Stations On A Windows Form?

Jan 22, 2010

but is there some way to create a program that would be able to listen to internet radio and possibly display live artist/song info from several stations on a windows form? Has anybody done anything like this or have any ideas as to how to tackle this?

View 1 Replies

Make A Basic Client And Listener Chat Room - : Error1Method 'Private Sub CliInfo' Does Not Have A Signature Compatible With Delegate

Dec 9, 2009

Im trying to make a basic client and listener chat room but im having problems with method invoker.

Error: Error1Method 'Private Sub CliInfo(CliMess As String)' does not have a signature compatible with delegate 'Delegate Sub MethodInvoker()'

Imports System.Net.Sockets
Imports System.Threading
Imports System.Text[code]......

View 5 Replies

VS 2010 Stop A Block Of Code Executing When User Clicks "Stop"?

Mar 1, 2011

I have a START and STOP button and when the user clicks "start" the program does a whole bunch of calculations and all. However, I noticed that when I was testing the program I clicked STOP the program continues to execute stuff.

My START code is basically a while loop that iteratively does some calculations.

So I just put a boolean variable as the while condition and when user clicks stop its set to false and when user clicks start its set to true. However, when I click stop, the condition is set to false yes but it still executes all the code until the condition is re-evaluated right...so my question is how can I get out of the while loop when user instantly clicks "stop"?

View 5 Replies

Make An Application With A Start Button And A Stop Button On A Stop Watch Program?

Nov 1, 2009

I am trying to make an application with a start button and a stop button on a stop watch program. These are the codes I am using but my seconds on the stop watch don't start.

Public Form Dim intSecond As Integer = 0
Form 1
Private
Dim intSecond As Integer = 0
intSecond +=1

[Code]...

After I write my code and try to run the program, the seconds will not start,

View 3 Replies

Record The Screen When My User Clicks Start, And Stop Recording When He Clicks Stop?

Jul 27, 2008

I need to record the screen when my user clicks start, and stop recording when he clicks stop.I've searched for a while on this subject, and I have found nothing.I want to do this without adding any files to my project, I just want to use some built in function in Visual Basic, and start recording, or even take a snapshot and add it to an AVI file or something...These are some sites I have found:

http:[url]......

This code is in VB6, but I am not sure how to even start using it?

View 1 Replies

Sockets - Check That If Another Computer In The Network Send Some String Data To The Listener Computer?

Mar 19, 2012

i have a task to create a TCP Server (a program that is listening on its network card interfaces for incoming data stream).I have search on the internet and i found that i can use two methods : Socket or TCPListener class.I have created an example for Socket class, but i wondering how could i test it? I need to check that if another computer in the network send some string data to the listener computer , then this message should be displayed.Here is the example from microsoft that i am using for TCP Server using Socket:

Public Shared Sub Main()
' Data buffer for incoming data.
Dim data = nothingc[code]....

But it does not work because of the PORT setting.If in the TCP Server i have "Dim localEndPoint As New IPEndPoint(ipAddress, 0)" the client crashes, but if i change the port from any (0) to 11000 for example,the client works fine.Do you know why?

Later edit2:Maybe i should have started with this question:Which method is recommended for my scope?asynchronous or synchronous method ?

View 2 Replies

Adding A Window Listener To A WPF-Window?

Jan 15, 2010

How can I add an window/event listener/handler to a wpf-window? I want to know, if the user wants to close the window.

View 2 Replies

Javascript - Register A Client-side Event Listener On A Server-side Event?

Dec 28, 2011

Ultimately, what I want to accomplish is an AJAX-based messaging system. I already have a database table for messages, and an ASPX to add new messages (and declare old messages no longer relevant).

The current messaging system simply polls the server every 15 seconds, and re-pulls the current message set.

What I am looking to do is: On $(document).ready(), register an ajax callback function that listens for a server-side event (e.g., MessagesUpdated) On table insert/update, fire MessagesUpdated server-side.

This way, whenever the table is updated (or new records added), any clients listening know that new data is available and can re-poll the server then.

Ideally, I'd also like to make the new data available as an event argument (to minimize re-polling the db).

I can find references to something like this in other languages, but I cannot find any actual code examples to get me started.

Assuming this is possible to do via .Net, can anyone help get me started on this?

I'm using the 2.0 Framework. Also while I added a VB.Net tag, I can read C# reasonably well, so please feel free to post in either language.

View 4 Replies







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