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

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

Related

Advanced Terminal on Windows Forms

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 4 hours ago.
Improve this question
I want to do the terminal (just command line / powershell / ssh), where user can work as usual, but also I want a handler which can control and impact on everything that is happening in terminal (input and output) and perform some actions with interface.
What is a better approach to implement it with Windows Forms?
I tried to use https://github.com/dwmkerr/consolecontrol, but can't find how to make normal terminal (where arrows, tab and color work)?
Many thanks.

Is there an Easy way to add a keyboard in C# Windows Form? [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 3 days ago.
Improve this question
I want to make a Keyboard in my Windows Form C# program Not a OSK "On-Screen-Keyboard" But a keyboard with a German layout I only found the slow way to implement every key and give it a function because I want when key on screen pressed to add it to a Text-Box I know how to do that But is there a more efficient way to make a keyboard in the C# Form (FOR FREE)?

Looking for some advice coding an IP scan function [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 8 days ago.
Improve this question
Can anybody give some advice on the best way to approach this.
One of my WPF forms has a scan button.
This button looks at 2 textboxes from and to.
The value added here decides what up range to scan.
So if from 1 to 50 is entered
Then the scan button should scan 40.40.1.1 to 40.40.1.50
And if the IP's are active and can be pinged they should populate a drop-down.
Any advice would be appreciated.
Thanks

c# windows 10 permanent notification [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 6 years ago.
Improve this question
is it possible to create a permanent notification at the notification bar in Windows 10?
Also it is necessary to do this in a windows form application and not an universal windows app.
Thanks for you help.
To do it in a WinForms app you'll need to use the desktop bridge to create the notifications.
It's not possible to have a toast that can't be dismissed from the action centre (which is what I assume you mean by "notifications area") but you can detect when it's removed and then add another back in. There are already a number of apps which do this as a way of having "permanent notifications".

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