Programmes D'échantillons (Visual C# 2017) - Hioki BT3564 Manuel D'instructions

Table des Matières

Publicité

Programmes d'échantillons (Visual C#
Un exemple similaire à Visual Basic
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;
using System.IO.Ports;
namespace CSSample
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
//Effectuer le processus si le bouton1 est enfoncé
private void button1_Click(object sender, EventArgs e)
{
StreamWriter sw;
string recvstr;
int i;
try
{
button1.Enabled = false;
button2.Enabled = false;
//Réglage du port de communication...................(b)
SerialPort1.PortName = "COM1";
SerialPort1.BaudRate = 9600;
SerialPort1.DataBits = 8;
SerialPort1.Parity = Parity.None;
SerialPort1.StopBits = StopBits.One;
SerialPort1.NewLine = "\r\n";
SerialPort1.ReadTimeout = 2000;
SerialPort1.Open();
SendSetting();
sw = new StreamWriter(@"data.csv"); //Créer un fichier texte à enregistrer.........(e)
for (i = 0; i < 10; i++)
{
®
2017)
®
®
2017 dans Visual C#
2017 suit :
//Désactiver les boutons pendant la communication........(a)
//Réglage de terminateur...........................(c)
//Inactivité de 2 secondes..........................(d)
//Ouvrir un port
//Réglages de l'appareil
HIOKI BT3564A964-01
8.8 Programmes d'échantillons
163
8

Publicité

Table des Matières
loading

Table des Matières