How do I code outside the console? [closed] - c#

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I'm trying to learn c#, and what I'm using like most beginner books teach me to program using the console. My friend who uses c# tells me to learn to code not using the console but won't help me with how to do that. So how do I code outside the console? And any recommendations on how I should learn this?

You can create a winform app from template, file->new->windows forms application.
Simply add a button and write code to the click event.
But as said, nothing wrong with console programming.

Related

Create an app to display an existing website using xamarin [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I would like to create an app to display a website in Android mobiles. I am been looking how to do it and I found Xamarin that uses C#. Somebody know any tutorial or web to learn how to do it?
You are looking for a webview inside an app which can easily be done using both the flavors of Xamarin and there are tutorials and samples available for both:
Using Xamarin.Forms
Tutorial: https://developer.xamarin.com/guides/xamarin-forms/user-interface/webview/
Github Sample: https://github.com/xamarin/xamarin-forms-samples/tree/master/WorkingWithWebview
Using Xamarin.Native
Tutorial: https://developer.xamarin.com/guides/android/user_interface/web_view/

QR code scanner using webcam with VB.net or C# [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm working on a a thesis and I'm in need of a QR-code scanner using a webcam..
I searched and the library is paid.
I need a tutorial or a source code to finish this. I prefer a tutorial so I can learn it, not just download it and run it.. any links that can help me will do!
Please please..
https://code.msdn.microsoft.com/windowsapps/Capture-QR-code-in-Windows-f665a28d
check this example. This solution use a nuget package and it's free.

How to generate Captchas on C# Windows Forms? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I have an application which could easily be controlled by a bot over network or even on the local machine(which simuates keyboard and mouse e.g.).
I want to avoid this using a captcha. The source has to work without internet / has to be generated during runtime on the computer itself.
Is there any open-source project for this or can someone give me a code example or a link ?
I've found an article "Simple CAPTCHA, Create your own in C#" by Raymund Macaalay. It is for an ASP.NET app, but he generates a normal C# bitmap image using different random fonts in STEP2, so this should also work in your WinForms app.

free .NET translation libraries [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I am looking for a .net C# library that can do translations. I tried googles one but they charge money now for it.
I am looking for something that can preferably auto detect languages, translate blocks of text or download the entire page and convert it.
This all has to of course be done through code.
Thanks
Have you tried using bing?
http://www.microsofttranslator.com/
There is a translator .net library on codeplex that uses bing: http://translateit.codeplex.com/

C# XML and ListVies application [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
G'day.
I just want to write a simple application about XML and ListView Control with C#.
Any good tutorial? thank you!
Simple? With XML? And a ListView? Good luck.
However, this link shows how to start using an ObjectListView, which is a wrapper around a standard .NET WinForms ListView. In the demo of ObjectListView, the "Data" tab show how to load an XML file into a DataSet, and then show that DataSet in a DataListView (which is a data bindable version of an ObjectListView).
That should be a start, at least.

Categories

Resources