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 learning winforms and I'm wonder is it possible to work with some test data like in unit tests that on every startup of aplication dummy data load and work with them for simple crud operations?
Thanks
Use NBuilder. But you will have to create a separate test data layer. I have been using this for quite a while now. Really good for mockup/dummy screens where some random data is required.
Related
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 2 years ago.
Improve this question
I have many tests for which I now want to create a test report. I wanted to see how exactly this works. Do I have to write the code for the report for each test individually or is it possible to write it once and link it to each test?
Would anyone have a sample code, how it is structured?
Thanks
Maybe try to add allure reports module to your solution:
http://allure.qatools.ru/
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
i am working on open layer map worked that is related to driver tracking, making shortest path, poly line and polygons so my question is that how can i use open layer map API on Windows Form .net
You can use the WebBrowser control and the Navigate method to load your HTML-Script.
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 want to reuse partial view in multiple ASP MVC applications. Is it possible to do that?
I have some partialview.cshtml which uses MyViewViewModel.cs and lots of typescripts/javascripts.
Is it possible to reuse all this code in different application?
If so, how I use views from external assembly?
look at razor generator: https://github.com/RazorGenerator/RazorGenerator
and look for samples in the internet
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 want my interface to look more elegant though professional and i want to make it good as web/android UI's. But how do i do it? I have heard about TELERIK UI. but i have no idea about how to use it. I have downloaded it and initialised it but do not know what and how to do next. any help would be really appreciated.Thanks.
You can start here
http://www.telerik.com/winforms/winforms-guide
http://www.telerik.com/videos/wpf
If you are not super attached to Telerik you can also look at Electron for native desktop apps (as it should have slightly easier learning curve):
http://electron.atom.io/
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 have a question:
I have to do a project, which has something to do with reading data from txt into MSSQL. This function I solved it with a click-event. Right now, the reading process has to read the whole data automatically every day on the server, even without open the website. Can I do it with a cronjob or there are also other better solutions?
Have a look at Quartz.Net - it's a decent job-scheduling system.
It's probably overkill if you only have a single job.
Quickstart documentation is here: http://www.quartz-scheduler.net/documentation/quartz-2.x/quick-start.html
In addition to Quartz.NET you can also look at http://hangfire.io/.