Catatan

Ionic 2/Ionic 3 - How to delete pages and remove app module references

 https://www.techiediaries.com/ionic-delete-pages/

Cara setup Gitlab

Imej
TUTORIAL 2021 *NEW VERSION GITLAB To ease developer to do git things, We need to generate access key for our machine. For the security reason, just the linked key machine can access git through SSH. How to generate SSH for your machine ID 1) Go to User Settings > SSH Keys 2) Refer picture above. To generate keygen, we need to open command prompt and type...      ssh-keygen -t ED25519SSH -C "your email address" 3) Enter the directory we want to save the publish key and enter the password. 4) Go to the directory where we save the publish key. Open the file using text editor (Notepad, VS Code) 5) Open using text editor and copy all the key. 6) Enter the key on Gitlab setting 7) Done TUTORIAL 2020 1) Generate SSH     a) Buka terminal, taip ; ED25519 SSH          ssh-keygen -t ed25519 -C "email@gmail.com"     b) taipkan password     c) Buka gitBash          cat ~/.ssh/id_ed25519.pub | clip     d) Add SSH key to gitlab account          Setting > SSH Keys > paste

C# Escaping string character

Escaping string using @ string path = @"C:\Program Files\Microsoft Visual Studio 10.0\"; On mssql escaping character using ESCAPE  WHERE mycolumn LIKE '%\_%' ESCAPE '\' SELECT isTrack.id AS [translated_pf], platformno FROM stationtrack INNER JOIN isTrack ON isTrack.name = stationtrack.track WHERE stationcode = 'KL' AND isTrack.id LIKE '%KL\_%' ESCAPE '\' ORDER BY platformno ASC; References Why does using an Underscore character in a LIKE filter give me all the results - https://stackoverflow.com/a/19588588/10763264 Escaping in C#: characters, strings, string formats, keywords, identifiers -  https://www.codeproject.com/Articles/371232/Escaping-in-Csharp-characters-strings-string-forma

C# OpenFileDialog

  Rujukan : OpenFileDialog In C#

C# : SqlParameterCollection.Add(string, object)' is obsolete

Imej
'SqlParameterCollection.Add(string, object)' is obsolete: 'Add(String parameterName, Object value) has been deprecated. Rujukan :  https://stackoverflow.com/a/31731109/10763264   SqlParameterCollection.Add Method

Design references

Imej
Juice Mobile App UX-UI Design

C#: Add icon to Windows

Imej
Hai assalamualaikum. Kali ini, Lee nak share cara untuk tukar icon pada Windows Form di .NET C# 1. Klik pada 'Icon' di panel 'Properties' di sebelah kanan. 2. Pilih icon untuk dijadikan icon pada form. Klik 'Open'. 3. 'Icon' akan berubah. Itu sahaja perkongsian dari Lee. Semoga bermanfaat :-)