Showing posts with label C#. Show all posts
Showing posts with label C#. Show all posts

Friday, August 23, 2019

CSharpBeginner - Beginner of Dot NET Development in C#


  
**********Online compiler Microsoft of c#******************

Click on below link:
https://www.microsoft.com/net/learn/in-browser-tutorial/1
https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/operators/index-operator
---------------------- About Access Modifier in C#:----------------------------------------
Public: Anywhere from the class
Private: Only within the class
Protected: Only within that class and the sub classes of that class
Internal: Within the assembly of the class
Protected Internal: Within that class, sub classes of that class and and assembly
**************************Web Session Management in C#****************************************
C:\Windows\Microsoft.NET\Framework\v4.0.30319>aspnet_regsql -S localhost -U root -P root -ssadd -sstype p (SQL server session mode)
****************************Session timeout:**************************************************
https://www.aspsnippets.com/Articles/Display-Session-Timeout-message-before-Session-expires-in-ASPNet.aspx
https://www.c-sharpcorner.com/UploadFile/225740/introduction-of-session-in-Asp-Net/
----------call in direcctly page_load() in <class-name>.cs :-------------------
HtmlMeta meta = new HtmlMeta();
meta.HttpEquiv = "Refresh";
meta.Content = Convert.ToString(Session.Timeout * 60) + ";url=LogIn.aspx";
this.Page.Header.Controls.Add(meta);
*****************Some useful links for C# Beginner .NET Development:*********************
https://www.1keydata.com/sql/sql.html
https://demo.aspnetawesome.com/
https://www.javatpoint.com/c-sharp-systemexception --> I Prefer this link as beginner.
https://www.youtube.com/watch?v=JhxC-K-Eehg
https://www.completecsharptutorial.com/
https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/accessibility-levels
https://www.questpond.com/demo.html
https://www.youtube.com/watch?v=lx2tSY4joDg
---------------------------Registration Adult Validation URLs;------------------------------------------------------------
https://www.c-sharpcorner.com/UploadFile/cd7c2e/apply-client-side-validation-on-dob-selected-by-user/
https://www.c-sharpcorner.com/UploadFile/cd7c2e/apply-server-side-validation-on-dob-selected-by-user/
https://www.aspsnippets.com/Articles/Validate-Date-of-Birth-18-Minimum-Age-validation-in-ASPNet.aspx1
--------------------------------------FORGOT PWD:----------------------------------------------------------------
https://www.aspdotnet-suresh.com/2012/11/code-for-forgot-password-in-aspnet.html
-----------------------------------GIT HUB LINK:---------------------------------------------------------------
https://github.com/hb20007/miscellaneous-programs
https://github.com/DotnetMob/
https://github.com/dbugtime/Csharp-For-Beginners
https://github.com/MicrosoftDocs/visualstudio-docs/tree/master/docs/ide
https://github.com/dotnetcurry?utf8=%E2%9C%93&tab=repositories&q=&type=&language=c%23


Prefer below URL for more details:

             https://github.com/autom99/CSharpBeginner

Saturday, August 17, 2019

Mini Bug - Issue Tracker and To-do List

Mini Bug is a barebones, simple issue tracker and to-do list. It is a Windows desktop single-user application.

MiniBug main window
MiniBug does not use a database to store data: instead the application stores each project in a .json file. This means that if you need to work on projects, in different computers, you can share a MiniBug project between computers, by putting the .json file in something like Dropbox.

Features

  • Issues: create, edit, delete, clone
  • Tasks: create, edit, delete, clone
  • Show/hide/sort columns
  • Some user defined settings
  • Export issues and tasks to CSV format

Sample project

I've made a small sample project, with bugs and tasks copied from some applications' public bug trackers (Inkscape, Firefox, MariaDB and Kodi).
Download the file minibug-MiniBug Sample Project.json and open it in MiniBug.

Getting Started

Prerequisites

  • Microsoft Windows 7 (maybe it works on older versions but I haven't tested)
  • Microsoft .NET Framework 4.6.1

How To Use

First you need to create a new project (File > New Project), define a project name and choose a location to save it:
New project window
Next you can start adding issues and tasks:
  • issues are bugs/problems
  • tasks are items in a to-do list

Issues

Edit issue

Tasks

Edit task

Settings

The user can modify some settings (File > Settings) in order to customize the look and feel of the application:
Edit settings
Settings in action:
Edit settings

Sorting

You can sort the grid rows in two ways:
  • by clicking on a column header:
Sort rows (first method)
  • by using the Configure Columns window:
Sort rows (second method)
Using the second method you can sort by up to two columns and with different criteria (ascending or descending).

Column visibility

You can show/hide any column (except the ID column, which is always visible), using the Configure Columns window:
Show/hide columns

Exporting

You can export a project's issues and tasks to CSV (comma separated values) files:
Export project
Because issues and tasks have a slightly different structure, they are exported to separate files. If a project only has issues or tasks, only one file will be generated:
Export project only with issues

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

Acknowledgments

This project uses the following libraries: