Catatan

Next Project Reference 2020

Imej
 Belajar buat logo animate sendiri. chaiyokkk 1) Logo Avatar See the Pen Vincent van Git w/ GSAP 🎨 by Jhey ( @jh3y ) on CodePen . 2) Animated Text See the Pen css text animation by ABC ( @abc-analytics ) on CodePen .

Upload APK failed (API 28)

Imej
Error Error ni muncul waktu Lee nak upload apk ke Google Console. Solution Tak semua berjaya guna solution ni.. tapi apa2 pun good luck. Ni solution yg Lee dapat.

Alert! Google AdSense

 https://www.google.com/adsense/new/u/0/pub-4874613530779588/sites/my-sites Ads.txt guide https://support.google.com/adsense/answer/7532444?hl=en

Cara duplicate database

Imej
 Lee simpan kat sini supaya tak lupa cara - cara duplicate database di MSSQL. Right click pada Databases.  Open Restore file and filegroups.  Isi database name dan pilih from device.  select backup device.  locate backup file.  Click OK ➡ OK ➡ Right checkbox restore.  Ok Done. 

Cannot ping other PC

Imej
 Request timed out Suggestion Solution Check firewall, check port TCP & UDP. Kalau tak dapat akses juga. Off firewall untuk sementara waktu.  Check switch (pastikan pasang cable LAN). Kadang - kadang cable LAN problem. Kena cabut pasang balik. Check config default gateway LAN. Pastikan sama dengan machine lagi satu.  - Rujukan :  A Can Ping B, but B Cannot Ping A, Randomly How do I add a secondary IP address to a computer?

How to search a Record in DataTable C#

Contoh coding DataRow[] foundRows = dtvstations.Select("stationname =  'KL' "); conn = foundRows[0]["connstring"].ToString(); Apply method private void CB_vstation_SelectedIndexChanged(object sender, EventArgs e)         {             if(CB_vstation.Text.ToString() != "")             {                 string exp = "stationname = '" + CB_vstation.Text.ToString() + "'";                 MessageBox.Show(exp);                 DataRow[] foundRows = dtvstations.Select(exp);                 conn = foundRows[0]["connstring"].ToString();                 viewByStation(conn);             }         } Rujukan : C# -syntax error: missing operand after 'TAG' operator.

C# The underlying connection was closed (Solved)

Imej
 C# The underlying connection was closed: The server committed a protocol violation. Solutions: you might also try doing an IIS reset. Failed!  - Alhamdulillah... The Solution The real problem is I can't access my FTP after I changed my LAN IP Address. So its not the coding problem.. its just misconfig settings on IIS. Open IIS then right click to the FTP Sites. Click Edit Bindings. Change IP Address for ftp and http.  Rujukan :  https://stackoverflow.com/questions/13769613/why-am-i-getting-the-server-committed-a-protocol-violation-section-responsestat How to set up and manage an FTP server on Windows 10