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 5 years ago.
Improve this question
I would like to know what type of field is used for a WebEditor (like WebBuilder) to Drag-and-Drop text, input,... in C# ?
I thinking of an HTML field, but not sure.
Thanks in advance.
If you mean Web based application, you should take a look at ASP.NET WebForms. If you want to build desktop application, Visual Studio has a project template called Windows Form Application consisting drag drop support. I don't recommend you using Web Form for web-based application, rather use ASP.NET MVC framework for this purpose which does not include drag-drop functionality in development.
Related
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 years ago.
Improve this question
Is it possible to create a C# splash screen and have the rest of the forms in vb in the same solution?
Yes, since Visual Basic and C# both are .NET languages (and both supported by the CLR), you can easily interop between the two and use them within the same application (e.g. calling C# from Visual Basic and vice versa) and solution:
Solution
- YourCSharpProject
- YourVisualBasicProject
In your specific scenario, it sounds like the two would be completely different areas of an application, so there's nothing from preventing the landing screen to be written using C# and simply navigating to another separate screen backed by Visual Basic.
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 years ago.
Improve this question
I was just wondering how I would put a download link of my windows form onto a webpage(I made in Visual Studio). I dont understand how I cant display it in a webpage in the first place, can someone explain?
Thanks
Using windows forms inside the bowser is not possible, the browser will not understand it, few years ago Silverlight was a promising solution which was not html based but can use some of your desktop skills, but it is not there anymore.
Currently there is a promising project https://blazor.net/ which is:
Build a Web UI with C# Blazor is an experimental .NET web framework
using C# and HTML that runs in the browser.
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 am developing an interface that customizes and generates forms for customers to use on their own site. When a user logs in to the interface, he can create a form, add or remove fields from existing forms, and the system will generate the file.
I want to know what's the best approach for doing this. Making these forms independent and just use HTML/Javascript? or have them part of the overall MVC solution inside a Views folder so it can have server side code?
Probabily the best way is not to store the entire form, but having some metadata that describe the forms, then generate the gui dynamically. There are many ways to doing this, it basically depends on your skill, and your specifics, personally im developing something similar right now and i chose Angular2.
Here an example:
https://angular.io/docs/ts/latest/cookbook/dynamic-form.html
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 have an existing MS access application for capturing information (normal add, edit forms with drop downs and so-forth) that I'd like to redesign into a WPF C# application using a Microsoft SQL database.
My question is, is WPF the easiest / quickest solution or are there any alternatives anyone can suggest?
I have some knowledge of WPF and a good understanding of SQL databases.
Thanks
It seems that your application is data driven so as an "easy but not so far" alternative to WPF I would suggest you to have a look at Visual Studio LightSwitch. It is especially designed to quickly create data driven screens with full CRUD hosted within Silverlight (desktop) or within HTML5 (web).
Silverlight is quite dead but it will be easy for you to jump on if you are already familiar with WPF.
Have a look here: https://www.youtube.com/watch?v=oIBJrGp-kOY
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.