Catatan

Tunjukkan catatan dari Julai, 2020

C# Windows Form

Imej
Preventing Winform from being maximized https://stackoverflow.com/a/15598128/10763264 C#: making a form non-resizable https://stackoverflow.com/a/5169169/10763264

Rujukan HTML

https://www.html.am/

How to implement a simple logger in C#

How to implement a simple logger in C# https://www.infoworld.com/article/2980677/implement-a-simple-logger-in-c.html

TCP Socket Tutorial (C#, Visual Studio, Networked Console Apps)

Imej
TCP Socket Tutorial (C#, Visual Studio, Networked Console Apps) https://www.youtube.com/watch?v=g5yEWLJxNmI Source from wolfs cry games client app code using System; using System.Net.Sockets; using System.Text; using System.IO; namespace ClientSocketApp { class Program { static void Main(string[] args) { connection: try { TcpClient client = new TcpClient("127.0.0.1", 1302); string messageToSend = "My name is Neo"; int byteCount = Encoding.ASCII.GetByteCount(messageToSend + 1); byte[] sendData = Encoding.ASCII.GetBytes(messageToSend); NetworkStream stream = client.GetStream(); stream.Write(sendData, 0, sendData.Length); Console.WriteLine("sending data to server..."); StreamReader sr = new StreamReader(stream); string response = sr.ReadLine();

FTP Using C# .NET

Imej
Coder : Maruthi Palllamalli Sumber :  https://www.c-sharpcorner.com/UploadFile/0d5b44/ftp-using-C-Sharp-net/ Retrieving list of FTP file names only, without additional details https://stackoverflow.com/a/31511155/10763264 Open a file from ftp server in C# https://stackoverflow.com/questions/1702426/httpwebrequest-not-passing-credentials/1702529#1702529 FTP Configuration in IIS https://www.windowscentral.com/how-set-and-manage-ftp-server-windows-10

How To Setup Website Hosting On Windows 10 Using IIS

How To Setup Website Hosting On Windows 10 Using IIS https://www.youtube.com/watch?v=I32AnqJzD58 How to Change File Permissions in Windows 10 https://www.youtube.com/watch?v=yio0IYrZhtw How to Setup an FTP Server in Windows 10 - AvoidErrors https://www.youtube.com/watch?v=Cd2k9nQSdro Enabling FTP on Firewall https://www.secureclub.net/Help/acm/UG/ug_ftp.htm Sebagai rujukan je.

How to create window service C#

Save it for reference purpose.  Solution get from Stackoverflow Windows service start failure: Cannot start service from the command line or debugger [duplicate] https://stackoverflow.com/a/17267161 C# - How to Create a Windows Service - Part 1/3 https://www.youtube.com/watch?v=uM9o8GsO_u4

Basic C# knowledge

Activity Lifecycle https://stackoverflow.com/questions/6812003/difference-between-oncreate-and-onstart