Posts

Showing posts from 2018

I make github

Image
Hello. Guys. I feel to need open source. So, I make Github. hope Many people are visited to my Github.  My Github Click .

My program personal connect is last version.

Image
Hello. Finally, I make last version. You use my program by perfect version. Error 1. it saves same content twice. Download Click

My program had updated and modified error.

Image
Hello. How are you today? I am known error by my program. Error 1. All database called at content. Update 1. I modify error. 2. I change to write at content.  - You can write at content.  - You click save.  - Do you want to modify?  - You can just write at content and you save. Version Latest 3.0 Program download Click

My program personal connections is updated by me

Image
Hello guys. I did update my program personal connections. Update Content 1. It was been comfortable interface what cleaned textbox after click button and you insert word. 2. Change of coding. It unify DB code. You can download this site below Download Address

I make a program with Winforms.

Image
Hello. Long time no see. I make the simplest program. Let me show you right now! Topic is personal connections program. Using way 1. Add personal. 2. Search that you are needed to insert personal number and name. 3. You insert contents after you carry out number 2. Add 1. Do you want delete? You must insert personal number. Check 1. Do you see the adding personal? You can click top middle refresh icon. I make using database. Database is Mssql 2017. Mssql is very good. Do you wanna use my program? You must do two something. 1. You install Mssql 2017 version. 2. You make database information below. Server name : J-PC Login : localhost Password : 1234 database = personal connection Because My DB code is information above. So, You should do same with me. If You did same with me, You insert DB table information. Blogspot don't offer file upload. So, You can do it download at  the other blog.

C# fundamental

Image
Today, I am written this posting. I don't want the fundamental post. C# fundamental is like Variables, Array, if~else, for etc. You can search at google.com. You will know  through google.com to access a lot of information. If you don't know I recommend you will buy the book below. This book is basic book. This book is sold at Amazon.com.

C# standard explanation

Hi. I am Chris. It is first posting. I do upload about C#. C# is OOP(Object-Oriented Programming). So, C# use the function. I am used VSC(Visual Studio Community). You can install VSC go to "https://www.visualstudio.com/vs/community/" You can coding below source code Using System namespace HelloWorld { class Program { static void Main(string[] args) { Console.WriteLine("Hello World"); Console.Read(); } } } 1. It is about Using System explaining below System is located in mscorlib.dll file. So, If a compiler case It load about System in mscorlib.dll. mscorlib.dll is located in C drive at windows/Microsoft.NET/Framework/V.4.0.30319 Do you want to see System source code? You reference at website https://referencesource.microsoft.com/ 2. It is about namespace HelloWorld explaining below namespace is biggest mass. class belong to namespace. namespace name is not overlap. But class possible to ov...