Catatan

Tunjukkan catatan dari November, 2020

C# .NET Positioning

Imej
Kat sini, Lee senaraikan kaedah untuk membuat positioning (Location) di C# Windows Form. FlowLayoutPanel  TableLayoutPanel  Location Point() method  // // tableLayoutPanel1 // this.tableLayoutPanel1.ColumnCount = 1; this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel1.Controls.Add(this.stationCodeTBB, 0, 1); this.tableLayoutPanel1.Controls.Add(this.pfUp, 0, 0); this.tableLayoutPanel1.Controls.Add(this.pfDown, 0, 2); this.tableLayoutPanel1.Location = new System.Drawing.Point(19, 0); this.tableLayoutPanel1.Name = "tableLayoutPanel1"; this.tableLayoutPanel1.RowCount = 3; this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 40F)); this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Fo

C# CustomList Using UserControl And FlowLayoutPanel

Imej
Reference:  https://www.youtube.com/watch?v=cL3aO1QkgvM

ICED LATTE

Imej
Resepi Ais Latte ( Homemade) Bahan-bahan 1 shot espresso atau satu cawan kecil nescafe gold. 200ml susu segar Kaedah Masukkan ais didalam gelas tinggi. Masukkan susu hingga memenuhi tiga suku gelas tadi. Akhir sekali masukkan espresso. Credit : Resepi.my - https://resepi.my/resepi-ais-latte-homemade/

How to: Add an application configuration file to a C# project

Imej
To add an application configuration file to a C# project 1. On the menu bar, choose Project > Add New Item. The Add New Item dialog box appears. 2. Expand Installed > Visual C# Items, and then choose the Application Configuration File template.  3. In the Name text box, enter a name, and then choose the Add button. 4. A file named app.config is added to your project. Rujukan: How to: Add an application configuration file to a C# project - https://docs.microsoft.com/en-us/visualstudio/ide/how-to-add-app-config-file?view=vs-2019

Run my personal server

Imej
  Rujukan How to convert your laptop/desktop into a server and host internet accessible website on it: Part 1 https://afteracademy.com/blog/how-to-convert-your-laptop-desktop-into-a-server-and-host-internet-accessible-website-on-it-part-1-545940164ab9 How to convert your laptop/desktop into a server and host internet accessible website on it: Part 2 https://afteracademy.com/blog/how-to-convert-your-laptop-desktop-into-a-server-and-host-internet-accessible-website-on-it-part-2-cdb4b3633fa9

Install sqlsrv into local XAMPP

Imej
Cara - cara untuk setup sqlsrv di local dddddd ddddd ddddd Rujukan  Download driver (my version for backup purpose only) -  https://drive.google.com/file/d/1KVhUuJiO31aV4a77OVuEYFl1l7juvkse/view?usp=sharing PHP Version Support - https://docs.microsoft.com/en-us/sql/connect/php/microsoft-php-drivers-for-sql-server-support-matrix?view=sql-server-2017#php-version-support How to install an SQLSRV extension to php XAMPP -  https://stackoverflow.com/a/50648896 -  https://stackoverflow.com/a/55134712 Download Microsoft driver - https://docs.microsoft.com/en-us/sql/connect/php/download-drivers-php-sql-server?view=sql-server-ver15#download Addon notes (Tapi tak jadi pun haha) https://sarn.phamornsuwana.com/2018/10/09/installing-xampp-on-windows-10-with-sqlsrv-drivers/

Data Migration MSSQL to My SQL

Imej
  How to Migrate from MSSQL to MySQL https://severalnines.com/database-blog/how-migrate-mssql-mysql

JQUERY Live Clock

  See the Pen jQuery Live Clock by Martynas Linkevicius ( @iiSeptum ) on CodePen .

Cara masukkan custom font di server

How to Host Google Fonts on Your Own Server https://themify.me/blog/how-to-host-google-fonts-on-server

Convert sql format

Imej
Cara mudah untuk menukar format antara SQL. MSSQL ke MySQL. Di bawah ni Lee letak rujukan.  http://www.sqlines.com/online

SYSTEM DESIGN DOCUMENT TEMPLATE

 Rujukan https://www.projectmanagementdocs.com/template/project-documents/system-design-document/#axzz6dGF8les2

SQL Server: “The password of the account has expired.”

Imej
 Solution. untick Enforce password expiration Rujukan SQL Server: “The password of the account has expired.”

How to create .exe extension for deployment

Imej
*Tutorial here Rujukan How to Create Setup.exe Visual Studio 2019 https://www.youtube.com/watch?v=-oIf6lGdaik

Apa itu Git? Nota ringkas Git

Imej
Ringkasan Git * Nanti akan dijelaskan :) * Doakan Lee rajin untuk buat video tutorial :) Nota command Git Check if Git has already been installed git --version Add your Git username & set your email git config --global user_name "YOUR USERNAME" git config --global user_name git config --global user_email "YOUR EMAIL" git config --global user_email Check your information git config --global --list Initialize a local directory for Git version control git init Clone a repo git clone https://__________ Switch to master branch git checkout master Download the latest changes in the project git pull <REMOTE> <NAME OF BRANCH> View remote repo git remote -v Add remote repo git remote add <SOURCE_NAME><REPOSITORING _PATH>