IAI : the four commandments

The four commandments  (四戒) for an Iai practicer are : astonishement, fear, doubt and hesitation. Astonishment or supprising matter lead to loss of one’s ordinary mental and body state. Fear lead to oppression, anxiety and loss of one’s mind and body. Doubt or suspicion lead to loss of one’s objective judgment. Hesitation lead to stop progressing.

Application for an extending of period of stay

What you need to apply for an extending of period of  stay in japan : 1.  Application form. 1copy (Ref : attached files) 2. The supporting documents : - Documents certifying the activity, its duration and position of the person concerned. 1copy - Documents certifying an annual income and tax payment. 1copy 3. Passport and alien registration card. 4. A document that proves the status (seem to be...

Iai – Kamae

There’s 5 main Kamae in Iai/Kendo. A) Chudan-no-Kamae is the core  stance,  it’s suitable for attacking and defending. Also called kamae of Water. A good posture can be an impenetrable stance. B) Jodan-no-Kamae is the most offensive stance but also have weakest defense. Know as kamae of Fire. When the left foot is forward,  we call it “Hidari-morote (Kakate)-jodan”. And...

Changer la connexion d’un report C#

Cet article vous montrera comment changer la connexion de la base de donnée d’un report (Crystal Report). 1) Dans le dataset, double cliquez sur le TableAdapter et ajouter la méthode ChangeConnection. 2) Appelez la méthode lorsque vous afficher le report This Article will show you how to change a database connexion from a report (Crystal Report). 1) In your dataset, double click on TableAdapter...

Interroger un DataTable avec LINQ C#

Salut, Cet article vous montrera comment interroger un composant DataTable avec LINQ C# This Article will show you how to interrogate a DataTable with LINQ C# ?View Code CSHARP  //DataTable declaration DataTable dtableBook = new DataTable("BOOK");   dtableBook.Columns.Add("BOK_CODE", Type.GetType("System.Int32")); dtableBook.Columns.Add("BOK_NAME",...

Lire un fichier csv avec LINQ C#

Bonjour Cet article vous montrera comment lire un fichier csv et sauvegarder les lignes dans une variable avec C# LINQ. this article will show you how to get a csv file with LINQ C#. ?View Code CSHARP//open and save all the lines in csvFile variable var csvFile = File.ReadAllLines("C:\books.csv", Encoding.Default);   //get all separated fields (with ,) in a string array except...

Set Datagrid Maxlength

Bonjour Ce ticket vous montrera comment modifier la propriété Maxlength d’un datagrid en C# How to set Datagrid Maxlength property by coding in C# ?View Code CSHARP// Create column DataGridView1.Columns.Add("COL_NAME", "Name"); //Cast the Columns in DataGridViewTextBoxColumn and set MaxInputLength ((DataGridViewTextBoxColumn)DataGridView1.Columns["COL_NAME"]).MaxInputLength...