How To
How to fix 'The specified directory for the INSTALLSHAREDDIR parameter is not valid'
5/21/2024 9:47:27 AM 462
How to fix 'The specified directory, “C:\Program Files (x86)\Microsoft SQL Server\”, for the INSTALLSHAREDDIR parameter is not valid because this directory is compressed or is in a compressed directory. Specify a directory that is not compressed.'
How to fix "HTTP Error 500.0 - ANCM In-Process Handler Load Failure"
5/21/2024 3:01:31 AM 518
This post shows you How to fix "HTTP Error 500.0 - ANCM In-Process Handler Load Failure" when deploying your ASP.NET Core on IIS.
How to use datepicker directive with AngularJS and Bootstrap
5/17/2024 4:49:34 AM 250
This post shows you how to fix the datepicker not binding value when using AngularJS.
How to add class to tr using jQuery datatable
5/16/2024 8:18:45 AM 868
This post shows you how to add a class name to jquery.datatables
How to fix Assets file 'project.assets.json' not found
5/16/2024 8:13:00 AM 632
This post shows you how to fix 'Assets file '..\obj\project.assets.json' not found. Run a NuGet package restore to generate this file.
How to use Oracle linked server shows all tables
5/15/2024 9:04:50 AM 277
How to use Oracle linked server shows all tables from all schemas in SQL Server Management Studio
How to select rows with same Id but different value in SQL Server
5/15/2024 4:02:02 AM 773
How to get a list of rows that have the same Id but different values in the same field in SQL Server.
How to fix 'ILoggingBuilder' does not contain a definition for 'AddNLog'
5/14/2024 4:21:41 AM 694
This post shows you How to fix 'ILoggingBuilder' does not contain a definition for 'AddNLog' and no extension method 'AddNLog' accepting a first argument of type 'ILoggingBuilder'.
How to change progress bar color in html
3/14/2024 4:04:11 PM 345
This post shows you how to change progress bar color in html
How to make a placeholder for a 'select' box
3/2/2024 2:52:48 AM 318
This post shows you How to make a placeholder for a 'select' box.
How to Include Crystal Reports Runtime into your application setup
2/24/2024 2:34:17 AM 690
To include Crystal Reports Runtime into your application setup, you typically need to perform the following steps:
How to make a file copy progress in C#
2/20/2024 6:34:33 AM 516
To implement file copy progress in C#, you can use the File.Copy method along with FileStream to read from the source file and write to the destination file while monitoring the progress.