![]() |
im Interface abschnitt typ aus anderer Unit
Habe volgendes Problemm
Delphi-Quellcode:
die procedure SetServerOnVST(Shuwak : Tuser); soll im interface Abschnit sein damit sie fur andere
unit VSTFunctions;
interface procedure SetServerOnVST(Chuwak : Tuser); implementation Uses Main_Unit, Options_Unit, Protokol_Unit, Users_Clas; Units sichtbar ist, sie benutzt aber selber einen typ aus andrer Unit(Tuser) und kann ihn nicht "sehen " weil die "uses" klausel erst später kommt.....!!!!! Wie kann man dieses Problemm umgehen....!!!! |
Re: im Interface abschnitt typ aus anderer Unit
Wieso bindest du dann die entsprechende Unit nicht im Interface ein? :wink: Also z.B.:
Code:
Grüsse !
unit VSTFunctions;
interface uses users_clas; procedure SetServerOnVST(Chuwak : Tuser); implementation Uses Main_Unit, Options_Unit, Protokol_Unit; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 14:35 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