Search results

  1. mrm_code

    How to sort strings ending with numbers in c sharpt c#

    Question : How to sort strings ending with numbers in c sharpt c# Answer: List = List.OrderBy(c => c.Value.Length).ThenBy(c => c.Value).ToList();
  2. mrm_code

    How to use JSTree to create a nested tree like list ?

    Question / Problem: How to use JSTree to create a nested tree like list ? Answer / Solution: 1. Add the jstree .js and .css files in your .php or .html file 2. Add JQuery in your file. 3. Now add the div as a container of the tree structure <div id="html" class="demo" style="direction:rtl...
  3. mrm_code

    How to setup Samurize Equalizer and Visualisations

    Question / Problem How to setup Samurize Equalizer and Visualisations Answer / Solution 1. Download the attached zip file for winamp and samurize 2. Watch the video and read the readme file given.
  4. mrm_code

    How to show visualization for mp3 on microphone input in winamp

    Question / Problem How to show visualization for mp3 on microphone input Answer / Solution 1. Press Ctrl + L to open "Open Url" Dialog 2. Now paste this in the path textbox "linein://" without quotes and press open 3. now the visualization will work with your microphone
  5. mrm_code

    Question: How to use OpenFileDialog to select a folder?

    Question / Problem : How to use OpenFileDialog to select a folder? Answer / Solution: 1. Install Microsoft.WindowsAPICodePack-Shell from Nuget Package Manager or by using the following command. Install-Package Microsoft.WindowsAPICodePack-Shell 2. Include it in your code file. using...
  6. mrm_code

    How to add webview and load a website in it in android app using java.

    Question / Problem: How to add webview and load a website in it in android app using java. Answer / Solution: 1. Add the webview control on the app xmlview. 2. add following code in the .java file // ----------------------------------------------- // Code to load a website...
  7. mrm_code

    How to add google translator to your website html or php?

    Question / Problem: How to add google translator to your website ? Answer / Solution: 1. Add this as javascript part at the end of the html document <script type="text/javascript"> function googleTranslateElementInit() { new google.translate.TranslateElement({...
  8. mrm_code

    How to download all images on a webpage ?

    Quesiton / Problem: How to download all images on a webpage ? Answer / Solution: 1. Right click on the webpage and click on view page info. 2. Now click on Media tab. 3. Now click on select all 4. Now click on Download All and select folder where you want to save all images. Thats...
  9. mrm_code

    How to use Ag-Grid Enterprise to export table data to excel in Angular?

    Question / Problem: How to use Ag-Grid Enterprise to export table data to excel in Angular? Answer / Solution: 1. Add this to your package.json "ag-grid-angular": "24.1.0", "ag-grid-community": "24.1.0", "ag-grid-enterprise": "24.1.0", 2. run this -> npm install --force 3. Add...
  10. mrm_code

    How to access God Mode in windows 10 ?

    Question / Problem How to access God Mode in windows 10 ? Answer / Solution 1. Crate a new folder any where you want. 2. Rename it and paste this text as its name. Gott-Modus.{ED7BA470-8E54-465E-825C-99712043E01C} 3. After you press enter it will convert to a link to the God Mode. Thanks
  11. mrm_code

    Question. How to make a searchable PDF file from Microsoft Word

    Question / Problem: How to make a searchable PDF file from Microsoft Word Answer / Solution: 1. Click on File Menu 2. Click on Export 3. Select Save as 4. Select PDF from type 5. Give it a name with these simple steps you have a searchable urdu pdf. Thanks
  12. mrm_code

    How to get tabular data as excel file from asp.net core web api to angular 6 to download

    Question / Problem How to get tabular data as excel file from asp.net core web api to angular 6 to download. Answer / Solution Backend C# Asp.net core web api: [Route("GetExportExcel/{dueDate}/{type}/{id}/{timespan}")] [HttpGet] [ProducesResponseType(typeof(FileStreamResult)...
  13. mrm_code

    How to show the content of a directory recursively detecting files and folders using PHP

    Question / Problem: How to show the content of a directory recursively detecting files and folders using PHP Answer / Solution: function getDirContents($dir, &$results = array()) { $files = scandir($dir); foreach ($files as $key => $value) { $path =...
  14. mrm_code

    How to solve pdf.js pdf file is not on the same origin problem

    Problem / Question: How to solve pdf.js pdf file is not on the same origin problem Solution / Answer: Modify viewer.js to include your hosts origins in the HOSTED_VIEWER_ORIGINS list.
  15. mrm_code

    Google Chrome - software reporter tool using 60 to 80 percent cpu and ram

    Problem / Question: Google Chrome - software reporter tool using 60 to 80 percent cpu and ram Solution / Answer: it is present in C:\Users\<user-name>\AppData\Local\Google\Chrome\User Data\SwReporter\<chrome-version> 1. kill the process from Task Manager 2. rename the .exe file inside You...
  16. mrm_code

    Question: How to check & stop which program is using a port like 80 or 443

    Question / Problem : How to check which program is using a port like 80 or 443 Answer / Solution: 1. Command prompt netstat -anb | findstr :80 2. Powershell $proc = @{}; Get-Process | ForEach-Object { $proc.Add($_.Id, $_) }; netstat -aon | Select-String...
  17. mrm_code

    How To Get Free SSL Certificate For Self Hosted Websites XAMPP ?

    Question / Problem : How To Get Free SSL Certificate For Self Hosted Websites XAMPP ? Answer / Solution : You can get it here. It is easy to get and setup. https://freessl.org/ Type the website address in the given box and click on create a free ssl certificate Select Cert Type: RSA +...
  18. mrm_code

    How to force SSL with .htaccess?

    Question / Problem: How to force SSL with .htaccess? Answer / Solution: Add this in you .htaccess file RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] Done. Thanks
  19. mrm_code

    Sennheiser GSP 370 - Mic Does Not Work In Google Chrome & Some Apps

    Question / Problem: Sennheiser GSP 370 - Mic Does Not Work In Google Chrome & Some Apps Answer / Solution: Go to Microphone Settings. Choose Advanced Tab. In Exclusive Mode section disable both Allow applications to take exclusive control of this device and Enable audio enhancements Remove...
  20. mrm_code

    Why Adobe Captivate hangs on startup ?

    Question / Problem: Why Adobe Captivate hangs on startup ? Answer / Solution: This is most of the times because of the additional fonts. 1. Copy all your fonts directory to another place. Don't delete the default windows fonts. 2. Now open the adobe captivate it will start working. 3. You can...
Top