473,767 Members | 2,166 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

TCP Client question/problem

I wrote a simple client / server app (nothing major, just sends text) it
works fine locally on the same system, but once i move the client to a
remote system it errors and gives me "No connection could be made because
the target machine actively refused it" what exactly does that mean? the
targed machine actively refused it? i have port forwarding set up correctly
on ISA server to forward it to the server maching...
Nov 20 '05 #1
12 2040
Post the code please......

"Brian Henry" <NO************ @adelphia.net> wrote in message
news:uY******** ******@TK2MSFTN GP10.phx.gbl...
I wrote a simple client / server app (nothing major, just sends text) it
works fine locally on the same system, but once i move the client to a
remote system it errors and gives me "No connection could be made because
the target machine actively refused it" what exactly does that mean? the
targed machine actively refused it? i have port forwarding set up correctly on ISA server to forward it to the server maching...

Nov 20 '05 #2
On 2003-11-09, Brian Henry <NO************ @adelphia.net> wrote:
I wrote a simple client / server app (nothing major, just sends text) it
works fine locally on the same system, but once i move the client to a
remote system it errors and gives me "No connection could be made because
the target machine actively refused it" what exactly does that mean? the
targed machine actively refused it? i have port forwarding set up correctly
on ISA server to forward it to the server maching...


It means that you are attempting to connect to the wrong address/port...
You may want to post a bit of code. I would suggest the code that you
use in the client to connect to the server, and probably the snippet in
the server you use to start listening.
--
Tom Shelton
MVP [Visual Basic]
Nov 20 '05 #3
Check the address where the client try to connect.. it should be the network
address of the server machine, not 127.0.0.1 or what ever was first time
when used on hte same machine as the server

--
Ceers,
Crirus

------------------------------
If work were a good thing, the boss would take it all from you

------------------------------

"Brian Henry" <NO************ @adelphia.net> wrote in message
news:uY******** ******@TK2MSFTN GP10.phx.gbl...
I wrote a simple client / server app (nothing major, just sends text) it
works fine locally on the same system, but once i move the client to a
remote system it errors and gives me "No connection could be made because
the target machine actively refused it" what exactly does that mean? the
targed machine actively refused it? i have port forwarding set up correctly on ISA server to forward it to the server maching...

Nov 20 '05 #4
========== client ============

=============== ===========

Try

Dim tcpClient As New System.Net.Sock ets.TcpClient

tcpClient.Conne ct("24.50.177.2 29", 9000)

Dim networkStream As NetworkStream = tcpClient.GetSt ream

If networkStream.C anWrite Then

Try

Dim sendBytes As Byte() = Encoding.ASCII. GetBytes("someo ne went to test
website")

networkStream.W rite(sendBytes, 0, sendBytes.Lengt h)

Catch ex As Exception

End Try

End If

Catch ex As Exception

Response.Write( ex.Message)

Response.Write( ex.Source)

Response.Write( ex.HelpLink)

End Try
======= server ==============
Const tcpPort As Integer = 9000
Dim localAddr As Net.IPAddress = Net.IPAddress.P arse("127.0.0.1 ")
Dim tcpListener As New Net.Sockets.Tcp Listener(localA ddr, tcpPort)
Dim listnerThread As New Thread(AddressO f ListenForData)

Private Sub Form1_Load(ByVa l sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load

Me.txtOutputMes sages.Text += "Starting listener..." &
ControlChars.Cr Lf
tcpListener.Sta rt()
Me.txtOutputMes sages.Text += "Listener started, waiting for
connection..." & ControlChars.Cr Lf
Application.DoE vents()
listnerThread.S tart()

End Sub

Private Sub ListenForData()
Me.txtOutputMes sages.Text += "Thread started, waiting for data..." &
ControlChars.Cr Lf
Try
Dim tcpClient As TcpClient = tcpListener.Acc eptTcpClient
Me.txtOutputMes sages.Text += "Connection Accepted..." &
ControlChars.Cr Lf
Dim networkStream As NetworkStream = tcpClient.GetSt ream()
Dim bytes(tcpClient .ReceiveBufferS ize) As Byte
Do
networkStream.R ead(bytes, 0,
CInt(tcpClient. ReceiveBufferSi ze))
If networkStream.C anRead Then
Me.txtOutputMes sages.Text += "Client Sent: " &
Encoding.ASCII. GetString(bytes ) & ControlChars.Cr Lf
End If

Loop
Catch ex As Exception
Me.txtOutputMes sages.Text = ex.Message
tcpListener.Sto p()
End Try

End Sub

=============== ===========
Nov 20 '05 #5
Try to Change this line's IP address to an address on the internet or the
address of the machine on the network...

Dim localAddr As Net.IPAddress = Net.IPAddress.P arse("127.0.0.1 ")

"Brian Henry" <NO************ @adelphia.net> wrote in message
news:eT******** ******@TK2MSFTN GP10.phx.gbl...
========== client ============

=============== ===========

Try

Dim tcpClient As New System.Net.Sock ets.TcpClient

tcpClient.Conne ct("24.50.177.2 29", 9000)

Dim networkStream As NetworkStream = tcpClient.GetSt ream

If networkStream.C anWrite Then

Try

Dim sendBytes As Byte() = Encoding.ASCII. GetBytes("someo ne went to test
website")

networkStream.W rite(sendBytes, 0, sendBytes.Lengt h)

Catch ex As Exception

End Try

End If

Catch ex As Exception

Response.Write( ex.Message)

Response.Write( ex.Source)

Response.Write( ex.HelpLink)

End Try
======= server ==============
Const tcpPort As Integer = 9000
Dim localAddr As Net.IPAddress = Net.IPAddress.P arse("127.0.0.1 ")
Dim tcpListener As New Net.Sockets.Tcp Listener(localA ddr, tcpPort)
Dim listnerThread As New Thread(AddressO f ListenForData)

Private Sub Form1_Load(ByVa l sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load

Me.txtOutputMes sages.Text += "Starting listener..." &
ControlChars.Cr Lf
tcpListener.Sta rt()
Me.txtOutputMes sages.Text += "Listener started, waiting for
connection..." & ControlChars.Cr Lf
Application.DoE vents()
listnerThread.S tart()

End Sub

Private Sub ListenForData()
Me.txtOutputMes sages.Text += "Thread started, waiting for data..." & ControlChars.Cr Lf
Try
Dim tcpClient As TcpClient = tcpListener.Acc eptTcpClient
Me.txtOutputMes sages.Text += "Connection Accepted..." &
ControlChars.Cr Lf
Dim networkStream As NetworkStream = tcpClient.GetSt ream()
Dim bytes(tcpClient .ReceiveBufferS ize) As Byte
Do
networkStream.R ead(bytes, 0,
CInt(tcpClient. ReceiveBufferSi ze))
If networkStream.C anRead Then
Me.txtOutputMes sages.Text += "Client Sent: " &
Encoding.ASCII. GetString(bytes ) & ControlChars.Cr Lf
End If

Loop
Catch ex As Exception
Me.txtOutputMes sages.Text = ex.Message
tcpListener.Sto p()
End Try

End Sub

=============== ===========

Nov 20 '05 #6
tried that, and did not work still...
"scorpion53 061" <sc************ *************** *@yahoo.com> wrote in message
news:us******** *****@TK2MSFTNG P09.phx.gbl...
Try to Change this line's IP address to an address on the internet or the
address of the machine on the network...

Dim localAddr As Net.IPAddress = Net.IPAddress.P arse("127.0.0.1 ")

"Brian Henry" <NO************ @adelphia.net> wrote in message
news:eT******** ******@TK2MSFTN GP10.phx.gbl...
========== client ============

=============== ===========

Try

Dim tcpClient As New System.Net.Sock ets.TcpClient

tcpClient.Conne ct("24.50.177.2 29", 9000)

Dim networkStream As NetworkStream = tcpClient.GetSt ream

If networkStream.C anWrite Then

Try

Dim sendBytes As Byte() = Encoding.ASCII. GetBytes("someo ne went to test
website")

networkStream.W rite(sendBytes, 0, sendBytes.Lengt h)

Catch ex As Exception

End Try

End If

Catch ex As Exception

Response.Write( ex.Message)

Response.Write( ex.Source)

Response.Write( ex.HelpLink)

End Try
======= server ==============
Const tcpPort As Integer = 9000
Dim localAddr As Net.IPAddress = Net.IPAddress.P arse("127.0.0.1 ")
Dim tcpListener As New Net.Sockets.Tcp Listener(localA ddr, tcpPort)
Dim listnerThread As New Thread(AddressO f ListenForData)

Private Sub Form1_Load(ByVa l sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load

Me.txtOutputMes sages.Text += "Starting listener..." &
ControlChars.Cr Lf
tcpListener.Sta rt()
Me.txtOutputMes sages.Text += "Listener started, waiting for
connection..." & ControlChars.Cr Lf
Application.DoE vents()
listnerThread.S tart()

End Sub

Private Sub ListenForData()
Me.txtOutputMes sages.Text += "Thread started, waiting for
data..." &
ControlChars.Cr Lf
Try
Dim tcpClient As TcpClient = tcpListener.Acc eptTcpClient
Me.txtOutputMes sages.Text += "Connection Accepted..." &
ControlChars.Cr Lf
Dim networkStream As NetworkStream = tcpClient.GetSt ream()
Dim bytes(tcpClient .ReceiveBufferS ize) As Byte
Do
networkStream.R ead(bytes, 0,
CInt(tcpClient. ReceiveBufferSi ze))
If networkStream.C anRead Then
Me.txtOutputMes sages.Text += "Client Sent: " &
Encoding.ASCII. GetString(bytes ) & ControlChars.Cr Lf
End If

Loop
Catch ex As Exception
Me.txtOutputMes sages.Text = ex.Message
tcpListener.Sto p()
End Try

End Sub

=============== ===========


Nov 20 '05 #7
What is the address you are port forwarding 9000 to? Is it the same as the
server IP address?

"Brian Henry" <NO************ @adelphia.net> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
tried that, and did not work still...
"scorpion53 061" <sc************ *************** *@yahoo.com> wrote in message news:us******** *****@TK2MSFTNG P09.phx.gbl...
Try to Change this line's IP address to an address on the internet or the address of the machine on the network...

Dim localAddr As Net.IPAddress = Net.IPAddress.P arse("127.0.0.1 ")

"Brian Henry" <NO************ @adelphia.net> wrote in message
news:eT******** ******@TK2MSFTN GP10.phx.gbl...
========== client ============

=============== ===========

Try

Dim tcpClient As New System.Net.Sock ets.TcpClient

tcpClient.Conne ct("24.50.177.2 29", 9000)

Dim networkStream As NetworkStream = tcpClient.GetSt ream

If networkStream.C anWrite Then

Try

Dim sendBytes As Byte() = Encoding.ASCII. GetBytes("someo ne went to test website")

networkStream.W rite(sendBytes, 0, sendBytes.Lengt h)

Catch ex As Exception

End Try

End If

Catch ex As Exception

Response.Write( ex.Message)

Response.Write( ex.Source)

Response.Write( ex.HelpLink)

End Try
======= server ==============
Const tcpPort As Integer = 9000
Dim localAddr As Net.IPAddress = Net.IPAddress.P arse("127.0.0.1 ")
Dim tcpListener As New Net.Sockets.Tcp Listener(localA ddr, tcpPort)
Dim listnerThread As New Thread(AddressO f ListenForData)

Private Sub Form1_Load(ByVa l sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load

Me.txtOutputMes sages.Text += "Starting listener..." &
ControlChars.Cr Lf
tcpListener.Sta rt()
Me.txtOutputMes sages.Text += "Listener started, waiting for
connection..." & ControlChars.Cr Lf
Application.DoE vents()
listnerThread.S tart()

End Sub

Private Sub ListenForData()
Me.txtOutputMes sages.Text += "Thread started, waiting for

data..."
&
ControlChars.Cr Lf
Try
Dim tcpClient As TcpClient = tcpListener.Acc eptTcpClient
Me.txtOutputMes sages.Text += "Connection Accepted..." &
ControlChars.Cr Lf
Dim networkStream As NetworkStream = tcpClient.GetSt ream()
Dim bytes(tcpClient .ReceiveBufferS ize) As Byte
Do
networkStream.R ead(bytes, 0,
CInt(tcpClient. ReceiveBufferSi ze))
If networkStream.C anRead Then
Me.txtOutputMes sages.Text += "Client Sent: " &
Encoding.ASCII. GetString(bytes ) & ControlChars.Cr Lf
End If

Loop
Catch ex As Exception
Me.txtOutputMes sages.Text = ex.Message
tcpListener.Sto p()
End Try

End Sub

=============== ===========



Nov 20 '05 #8
Hi Brain,
SO you know I am trying to connect to you at the ip you gave.....
I get the error you are desciribing thus far.....
I did a ping of your the port(ny-northtonawanda2 a-485.buf.adelphi a.net) you
are using and it is saying that there is a 100 percent packet loss which
means that port is not being reached...lets try another port.....

"Brian Henry" <NO************ @adelphia.net> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
tried that, and did not work still...
"scorpion53 061" <sc************ *************** *@yahoo.com> wrote in message news:us******** *****@TK2MSFTNG P09.phx.gbl...
Try to Change this line's IP address to an address on the internet or the address of the machine on the network...

Dim localAddr As Net.IPAddress = Net.IPAddress.P arse("127.0.0.1 ")

"Brian Henry" <NO************ @adelphia.net> wrote in message
news:eT******** ******@TK2MSFTN GP10.phx.gbl...
========== client ============

=============== ===========

Try

Dim tcpClient As New System.Net.Sock ets.TcpClient

tcpClient.Conne ct("24.50.177.2 29", 9000)

Dim networkStream As NetworkStream = tcpClient.GetSt ream

If networkStream.C anWrite Then

Try

Dim sendBytes As Byte() = Encoding.ASCII. GetBytes("someo ne went to test website")

networkStream.W rite(sendBytes, 0, sendBytes.Lengt h)

Catch ex As Exception

End Try

End If

Catch ex As Exception

Response.Write( ex.Message)

Response.Write( ex.Source)

Response.Write( ex.HelpLink)

End Try
======= server ==============
Const tcpPort As Integer = 9000
Dim localAddr As Net.IPAddress = Net.IPAddress.P arse("127.0.0.1 ")
Dim tcpListener As New Net.Sockets.Tcp Listener(localA ddr, tcpPort)
Dim listnerThread As New Thread(AddressO f ListenForData)

Private Sub Form1_Load(ByVa l sender As System.Object, ByVal e As
System.EventArg s) Handles MyBase.Load

Me.txtOutputMes sages.Text += "Starting listener..." &
ControlChars.Cr Lf
tcpListener.Sta rt()
Me.txtOutputMes sages.Text += "Listener started, waiting for
connection..." & ControlChars.Cr Lf
Application.DoE vents()
listnerThread.S tart()

End Sub

Private Sub ListenForData()
Me.txtOutputMes sages.Text += "Thread started, waiting for

data..."
&
ControlChars.Cr Lf
Try
Dim tcpClient As TcpClient = tcpListener.Acc eptTcpClient
Me.txtOutputMes sages.Text += "Connection Accepted..." &
ControlChars.Cr Lf
Dim networkStream As NetworkStream = tcpClient.GetSt ream()
Dim bytes(tcpClient .ReceiveBufferS ize) As Byte
Do
networkStream.R ead(bytes, 0,
CInt(tcpClient. ReceiveBufferSi ze))
If networkStream.C anRead Then
Me.txtOutputMes sages.Text += "Client Sent: " &
Encoding.ASCII. GetString(bytes ) & ControlChars.Cr Lf
End If

Loop
Catch ex As Exception
Me.txtOutputMes sages.Text = ex.Message
tcpListener.Sto p()
End Try

End Sub

=============== ===========



Nov 20 '05 #9
strangely that isnt my hostname... mine is pa-indiana.adelphi a.net... I
wonder id adelphia is haveign problems ...
"scorpion53 061" <sc************ *************** *@yahoo.com> wrote in message
news:Ob******** ******@TK2MSFTN GP10.phx.gbl...
Hi Brain,
SO you know I am trying to connect to you at the ip you gave.....
I get the error you are desciribing thus far.....
I did a ping of your the port(ny-northtonawanda2 a-485.buf.adelphi a.net) you are using and it is saying that there is a 100 percent packet loss which
means that port is not being reached...lets try another port.....

"Brian Henry" <NO************ @adelphia.net> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
tried that, and did not work still...
"scorpion53 061" <sc************ *************** *@yahoo.com> wrote in

message
news:us******** *****@TK2MSFTNG P09.phx.gbl...
Try to Change this line's IP address to an address on the internet or the address of the machine on the network...

Dim localAddr As Net.IPAddress = Net.IPAddress.P arse("127.0.0.1 ")

"Brian Henry" <NO************ @adelphia.net> wrote in message
news:eT******** ******@TK2MSFTN GP10.phx.gbl...
> ========== client ============
>
>
>
>
>
> =============== ===========
>
> Try
>
> Dim tcpClient As New System.Net.Sock ets.TcpClient
>
> tcpClient.Conne ct("24.50.177.2 29", 9000)
>
> Dim networkStream As NetworkStream = tcpClient.GetSt ream
>
> If networkStream.C anWrite Then
>
> Try
>
> Dim sendBytes As Byte() = Encoding.ASCII. GetBytes("someo ne went to test > website")
>
> networkStream.W rite(sendBytes, 0, sendBytes.Lengt h)
>
> Catch ex As Exception
>
> End Try
>
> End If
>
> Catch ex As Exception
>
> Response.Write( ex.Message)
>
> Response.Write( ex.Source)
>
> Response.Write( ex.HelpLink)
>
> End Try
>
>
> ======= server ==============
> Const tcpPort As Integer = 9000
> Dim localAddr As Net.IPAddress = Net.IPAddress.P arse("127.0.0.1 ") > Dim tcpListener As New Net.Sockets.Tcp Listener(localA ddr, tcpPort) > Dim listnerThread As New Thread(AddressO f ListenForData)
>
> Private Sub Form1_Load(ByVa l sender As System.Object, ByVal e As
> System.EventArg s) Handles MyBase.Load
>
> Me.txtOutputMes sages.Text += "Starting listener..." &
> ControlChars.Cr Lf
> tcpListener.Sta rt()
> Me.txtOutputMes sages.Text += "Listener started, waiting for
> connection..." & ControlChars.Cr Lf
> Application.DoE vents()
> listnerThread.S tart()
>
>
>
> End Sub
>
> Private Sub ListenForData()
> Me.txtOutputMes sages.Text += "Thread started, waiting for

data..."
&
> ControlChars.Cr Lf
> Try
> Dim tcpClient As TcpClient = tcpListener.Acc eptTcpClient
> Me.txtOutputMes sages.Text += "Connection Accepted..." &
> ControlChars.Cr Lf
> Dim networkStream As NetworkStream = tcpClient.GetSt ream() > Dim bytes(tcpClient .ReceiveBufferS ize) As Byte
> Do
> networkStream.R ead(bytes, 0,
> CInt(tcpClient. ReceiveBufferSi ze))
> If networkStream.C anRead Then
> Me.txtOutputMes sages.Text += "Client Sent: " &
> Encoding.ASCII. GetString(bytes ) & ControlChars.Cr Lf
> End If
>
> Loop
> Catch ex As Exception
> Me.txtOutputMes sages.Text = ex.Message
> tcpListener.Sto p()
> End Try
>
> End Sub
>
> =============== ===========
>
>



Nov 20 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

17
1393
by: middletree | last post by:
I have a very tough issue I'm looking for help on re: javascript/css. I see that MS has groups with HDTML in the title, but there are quite a few of them, and they don't seem to get updated very often. At least not compared to this ASP group. Anyone know which one I am likely to get some help on?
1
3893
by: Friends | last post by:
Hello sir, I have a problem in calling a exe from client machine.. This is my Problem there is an exe in client machine i need to call the exe from web page..In that page there will be button if I click the button then the client machine exe should executed ... Is it possible in asp.net wep application. if so please give some code or idea to do.. Thanks a lot for your time.. thanks in advance...
0
1642
by: Vitali Lavrov | last post by:
Hi, I am new to database development so my question may seem trivial. Here is the problem: I have an MS Access database file which can be updated by more than one client application (more specifically, one of them is MS Access, another is Web browser running an ASP document and the third is some COM object written in C++). If one client application updates the database, all other client applications need to refresh their status...
11
2770
by: Timothy Shih | last post by:
Hi, I am having a freezing issue with my application. My application serves several remotable objects, all of which must be initialized before their use. Furthermore, some of them depend on each other. On my application startup, I configure the objects usting the RemotingConfiguration class to load the config file. Then I "ping" each of the objects to call their constructors. This all works fine if no one is attempting to connect at the...
2
1680
by: R.A. | last post by:
Hi, I have a web service that process a client call. When a client makes a call to the web method the method needs to query some data from a client_A and return the data to the calling client_B. How should I design the way the web service will call client_A to retreive the data needed for client_B? I am using .net 1.1 and c# Thanks
10
2051
by: Ben | last post by:
Hi, I made an application in classic asp (reservation of books and video stuffs for students) and want to migrate to asp.net. The user has to chose a date, then pushung on a submit button. The whole day is then displayed in cels of a table. The user has then to click in a cel representing a hour of the day and an object (book ..), and finally click on the submit button to insert that reservation in the database. My problem is: there...
5
2916
by: B1ackwater | last post by:
We've fooled around with Access a bit, but only using the single-user store-bought version. It seems to be a good database - versatile and infinitely programmable - and can apparently be used as a front end to SQL server if we ever needed to go that route. But - is there a client/server version of Access ? Looking on the CDW site there is a bewildering variety of packages and licences and such, but we can't figure out just which do...
5
1672
by: thisis | last post by:
Hi All, Hi All, (this is not the same topic as the my previous topic) What objects/methods/properties does VBScript offer for: Assuring/guarantee/make certain that ASP/VBSCript an ELEMENT - e.g. <img ... / - was FULLY Loaded into web Browser
2
4726
by: Wimpie van Lingen | last post by:
Hey I have some more questions with regards to Remoting in .NET 2. I'm using TCP with the Binary formatter. My solution consists of 4 projects: - Class Library containing the server classes which Inherits MarshalByRefObject (ok, at this stage it only contains one class... but its gonna grow) - Class Library containing common classes and interfaces that will be shared between all projects. This include interfaces for the server...
27
3913
by: gerrymcc | last post by:
Hello, I'm a php/mysql beginner... Is there any way of making the mysql command line client full-screen? Sometimes it's easier to use the client than go thru php, but since it's only about 80 characters wide that limits its usefulness. Thanks, Gerard http://homepage.eircom.net/~gerfmcc]
0
10168
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10009
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8835
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7381
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6651
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5279
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5423
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3929
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2806
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.