Daten über ClientSocket auf eine Html Seite schicken



  • Wie kann ich durch Einfügen von ClientSocket in ein Formula einen Zahlenwert auf meine Html Homepage z.B in einem Textfeld bekommen??
    z.B. den Wert durch eine Zufallzahl als Programmbeispiel:
    //---------------------------------------------------------------------------
    #include <vcl.h>
    #pragma hdrstop
    #include <stdlib.h>
    #include <stdio.h>
    #include <time.h>
    #include "Unit1.h"
    //---------------------------------------------------------------------------
    #pragma package(smart_init)
    #pragma resource "*.dfm"
    TForm1 Form1;
    //---------------------------------------------------------------------------
    __fastcall TForm1::TForm1(TComponent
    Owner)
    : TForm(Owner)
    {
    }
    //---------------------------------------------------------------------------
    void __fastcall TForm1::Timer1Timer(TObject *Sender)
    {
    int i;
    // randomize();
    Form1->Edit1->Clear ();
    Form1->Edit1->Text=("Ten random numbers from 100 to 299\n\n");
    for(i=200; i<=300; i++)
    Form1->Edit1->Text=("%d\n", rand() % 100);
    }
    //---------------------------------------------------------------------------
    void __fastcall TForm1::Beenden1Click(TObject *Sender)
    {
    Close();
    }
    //---------------------------------------------------------------------------


Anmelden zum Antworten