Frequently send object by Socket [closed] - c#

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I'm tring to develop the WinForm with C#. This application must capture desktop frequently and send it to remote server via socket. How can I pack on client and unpack in server these Images for compress image size higher speed in transfer?
Is it possible? If yes get me any idea or solution.
Thanks so much...

You Can Use of Background Worker , I Had similar problem and i resolve it by one timer and one Backgrond Worker .
If this idea is not good solution put your code here .

Related

Is there a way to modify the html of an incoming website using c#? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 days ago.
Improve this question
I am trying to create a piece of software than can manage your computer and clean some things up, and one of the things I am trying to incorporate is adblocking.
I have looked online multiple times for something like this, but haven't found anything. The most I amounted to is the webbrowser class.
If someone could help me discern how to change an html file using the webbrowser class, that would be greatly appreciated.

i have a problem with c# winforms app and i dont know where to start [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 days ago.
Improve this question
I have a problem with my C# windows forms app.
I am building a weighting scale program, I have to connect the loadcell via (rs-232)
to the computer. i want to send the weight into a textbox without the user having to specify the ports, Baudrate...etc. I am new to C# and I don't know even where to start. can you please help?
Note: the textbox must read the weight live not by instance nor by a button click

Send request to plugin and get result in C# [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 11 months ago.
Improve this question
I have software that takes your request, And I want to control requests with the plugins.
Fore example console writes: Enter Request: and i write time
well, Now I want the software to check if any plugin supports this command and then turn back the time and more (day, mouth, list of plugins, ...).
I looked at other sources but could not implement the project.
I hope someone can help me. :) Thanks.
I think you can adapt this MS tutorial and get what you want.
https://docs.miosoft.com/en-us/dotnet/core/tutorials/creating-app-with-plugin-support
It shows how to load pluggins and execute. From what you are describing this is what you are looking.

How to show and block incoming UDP packets [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
How to show and block ip UDP incoming in c# WinForms.
Show ip and incoming packet in label like Anti DDOS Guardian
I made a similar application some years ago using WinpkFilter. I don't know if there is something better, but this gives you all that need to read all packets passing on network interface. Once you read the packets, you can check protocol type and make all operation you need to prevent DDOS.
You have to install the WinpkFilter driver and link the ndisapi.dll library, I suggest you to give it a try and see if this can help you.

c# passing parameter value from win app to another win app [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have problem
i need to pass parameter value from my win app to another win app in c#.
Is this possible؟؟
how ?
Does the program require the use of port ?
please help me
I think you have to go for inter process communication to communicate between 2 different applications.
https://msdn.microsoft.com/en-us/library/bb546085.aspx
Communicating via windows messages example
http://ryanfarley.com/blog/archive/2004/05/10/605.aspx

Categories