Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Netzwerke (https://www.delphipraxis.net/14-netzwerke/)
-   -   Delphi Problem mit senden mit Indy (https://www.delphipraxis.net/20197-problem-mit-senden-mit-indy.html)

Bigmichi 14. Apr 2004 15:18


Problem mit senden mit Indy
 
ich hab folgende Types

Code:
type
  TCommBlock = record  // the Communication Block used in both parts (Server+Client)
                 Command,
                 MyUserName,                // the sender of the message
                 Msg,                       // the message itself
                 ReceiverName: string[250]; // name of receiver
               end;

und sendne tue ich so :

Code:

var
  CommBlock : TCommBlock;

begin

  if EditMessage.Text = '' then exit;

  CommBlock.Command     := EditCommand.Text;        // assign the data
  CommBlock.MyUserName  := Client.LocalName;
  CommBlock.Msg         := EditMessage.Text;
  CommBlock.ReceiverName := EditRecipient.Text;

  Client.WriteBuffer (CommBlock, SizeOf (CommBlock), true);

  editmessage.Clear;

nur das Problem ist ich kann dan nur 250 Zeichen senden unddas max steht bei ar auf 255 -.- nur wie bekomem ich es nun hin solch ein Block mit Größenangabe zu senden ? wäre cool wenn mir jemand helfenkann =)


Alle Zeitangaben in WEZ +1. Es ist jetzt 01:23 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz