8
Answers

Exception Handling

sumit gugnani

sumit gugnani

9y
350
1
Hi
 
I have create a window application, when application run in visual studio and exception is coming than exception handle with try catch block in program.cs file and show a message box, it works fine
 
But when create setup and install the setup than in case of exception message box not working .?
 
how to fix this issue??
 
Thanks 
 
 
Answers (8)
0
Abdur Rafay

Abdur Rafay

NA 8 1.2k 9y
To Dipankar Biswas: I did that with Console.ReadLine(); By the way thanks a lot for the help.
0
Abdur Rafay

Abdur Rafay

NA 8 1.2k 9y
Hi,
I am pasting my server code. it is just accepting and receiving data from one client and keep connected to that only client. I want to receive data from different client after one another.
Below is my server code. Please help me.

Server Code:
using System;
using System.IO;
using System.Text;
using System.Net;
using System.Net.Sockets;

public class serv
{
    public static void Main()
    {
        try
        {
            IPAddress ipAd = IPAddress.Parse("115.167.97.145");
            // use local m/c IP address, and 
            // use the same in the client
            while (true)
            {
                /* Initializes the Listener */
                TcpListener myList = new TcpListener(ipAd, 1063);

                /* Start Listeneting at the specified port */
                myList.Start();

                Console.WriteLine("\nListening Port of The Server is 1063...");
                Console.WriteLine("Local Connection:" +  myList.LocalEndpoint);
                Console.WriteLine("Waiting for a connection.....");
                
                Socket s = myList.AcceptSocket();
                Console.WriteLine("Remote Connection " + s.RemoteEndPoint);

                byte[] b = new byte[225];
                int k = s.Receive(b);
                Console.WriteLine("Recieving Data from Client...");
                for (int i = 0; i < k; i++)
                    Console.Write(Convert.ToChar(b[i]));

                ASCIIEncoding asen = new ASCIIEncoding();
                s.Send(asen.GetBytes("The string was recieved by the server." + "\nStream Acknowledged\n\n"));
                //s.Send(asen.GetBytes("\nStream Acknowledged"));
                Console.WriteLine("\nAcknowledgement has been sent to the Client\n");
                /* clean up */
                s.Close();
                myList.Stop();
            }
        }
        catch (Exception e)
        {
            Console.WriteLine("Error..... " + e.StackTrace);
        }
    }
0
Dipankar Biswas

Dipankar Biswas

NA 3k 125.6k 9y
hi 

 I don't no clearly..  but try to change here
  s.close();
  myList.stop();


 Thanks..
0
Abdur Rafay

Abdur Rafay

NA 8 1.2k 9y
Both programs are running but after receiving/sending data windows close and received data could not be viewed easily.
0
Dipankar Biswas

Dipankar Biswas

NA 3k 125.6k 9y