Ici le problème est que le résultat de compilation est en anglais.
Je veux modifier ce code pour que les messages de compilations soient en français.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13 Dim myprocess As New Process Dim lines As String = "" With myprocess .StartInfo.FileName = "C:\Program Files\Pascal\lib\rtl\ppc386.exe" .StartInfo.Arguments = source .StartInfo.WindowStyle = ProcessWindowStyle.Hidden .StartInfo.RedirectStandardOutput = True .StartInfo.UseShellExecute = False .Start() End With lines = myprocess.StandardOutput.ReadToEnd Me.Compile_resultat.Text = lines
Partager