C# Allow the user to draw their signature on the form [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 6 years ago.
Improve this question
I'm building an ibanking system with my friends and I'm in charge for the credits part. I want to allow the user to have their signature on a webform and is it possible ?

You won't be able to do that in C#, on the web if you want user interactivity like drawing you'll have to do it in javascript (on the browser), the user isn't going to go in your datacenter and draw on the server :)
If you're fine with limiting yourself to HTML 5 browsers you should be able to do this with drawing in a canva and then sending the finished drawing to the server. Here is another SO question that covers user drawing in a canva: Draw on HTML5 Canvas using a mouse

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.

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

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)?

How to programmatically create list of buttons that fill client browser based on its resolution in asp.net [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 years ago.
Improve this question
I am new to ASP.net web application development. I try to create a page that contains a number of buttons (based on the data from database), all the buttons have the same size, and fill the client browser (no scroll bars on either side).
The questions that I have are:
How can I get client browser's resolution? (By jQuery)
Is the size of each button will be Resolution / Number of Buttons?
Thanks
I recommend learning a templating framework like Bootstrap. It allows you to quickly develop grid-based web pages that you can easily throw a customized template on.

Video capture in VPF [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
What is the best way to capture video in a WPF application? I am looking for a way to detect the video devices, and then capture video from the selected one.
There is no WPF support for this. You need to use the traditional, expected windows APIs for video capture, such as DXVA.
If you are OK with using ActiveX controls in WPF app, you can use VideoCapX from http://www.fathsoft.com/videocapx.html

Categories