Delphi-PRAXiS
Seite 4 von 5   « Erste     234 5      

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   GUI-Design mit VCL / FireMonkey / Common Controls (https://www.delphipraxis.net/18-gui-design-mit-vcl-firemonkey-common-controls/)
-   -   Delphi Animierte Splash Form (https://www.delphipraxis.net/135464-animierte-splash-form.html)

Andy BitOff 13. Jul 2009 20:49

Re: Animierte Splash Form
 
Zitat:

Zitat von Super_Chemiker
okay, thanks.

Now the problem, it tells me, is:

Zitat:

[DCC Fataler Fehler] ASFMain.pas(102): F1026 Datei nicht gefunden: 'GDIPAPI.dcu'

You need to install GDI+
Download GDI+ 5,75 MB

Super_Chemiker 27. Jul 2009 13:26

Re: Animierte Splash Form
 
Thank you, but now:
Code:
[DCC Fehler] DirectDraw.pas(358): E2154 Typ 'IDirectDrawSurface' benötigt Finalization - nicht im varianten Record erlaubt
[DCC Fehler] DirectDraw.pas(365): E2154 Typ 'IDirectDrawSurface' benötigt Finalization - nicht im varianten Record erlaubt
[DCC Fehler] DirectDraw.pas(375): E2154 Typ 'IDirectDrawSurface' benötigt Finalization - nicht im varianten Record erlaubt
[DCC Fehler] DirectDraw.pas(382): E2154 Typ 'IDirectDrawSurface' benötigt Finalization - nicht im varianten Record erlaubt
[DCC Fehler] DirectDraw.pas(394): E2154 Typ 'IDirectDrawSurface' benötigt Finalization - nicht im varianten Record erlaubt
[DCC Fehler] DirectDraw.pas(834): E2154 Typ 'IDirectDrawSurface' benötigt Finalization - nicht im varianten Record erlaubt
[DCC Fehler] DirectDraw.pas(836): E2154 Typ 'IDirectDrawSurface' benötigt Finalization - nicht im varianten Record erlaubt
[DCC Fataler Fehler] GDIPAPI.pas(38): F2063 Verwendete Unit 'DirectDraw.pas' kann nicht compiliert werden

Andy BitOff 28. Jul 2009 15:54

Re: Animierte Splash Form
 
Zitat:

Zitat von Super_Chemiker
Thank you, but now:
Code:
[DCC Fehler] DirectDraw.pas(358): E2154 Typ 'IDirectDrawSurface' benötigt Finalization - nicht im varianten Record erlaubt
[DCC Fehler] DirectDraw.pas(365): E2154 Typ 'IDirectDrawSurface' benötigt Finalization - nicht im varianten Record erlaubt
[DCC Fehler] DirectDraw.pas(375): E2154 Typ 'IDirectDrawSurface' benötigt Finalization - nicht im varianten Record erlaubt
[DCC Fehler] DirectDraw.pas(382): E2154 Typ 'IDirectDrawSurface' benötigt Finalization - nicht im varianten Record erlaubt
[DCC Fehler] DirectDraw.pas(394): E2154 Typ 'IDirectDrawSurface' benötigt Finalization - nicht im varianten Record erlaubt
[DCC Fehler] DirectDraw.pas(834): E2154 Typ 'IDirectDrawSurface' benötigt Finalization - nicht im varianten Record erlaubt
[DCC Fehler] DirectDraw.pas(836): E2154 Typ 'IDirectDrawSurface' benötigt Finalization - nicht im varianten Record erlaubt
[DCC Fataler Fehler] GDIPAPI.pas(38): F2063 Verwendete Unit 'DirectDraw.pas' kann nicht compiliert werden

Installing the GDI+ of Delphi above 7
http://bitoff.ru/content/ustanovka-asf




.

Super_Chemiker 29. Jul 2009 11:49

Re: Animierte Splash Form
 
Thanks, but now...:
Code:
[DCC Warnung] ASFMain.pas(250): W1055 PUBLISHED verursachte, dass RTTI ($M+) zu Typ 'TAnimationSplashForm' hinzugefügt wurde
[DCC Hinweis] ASFMain.pas(950): H2077 Auf 'TAnimationSplashForm.AnimationsAddFromFile' zugewiesener Wert wird niemals benutzt
[DCC Hinweis] ASFMain.pas(970): H2077 Auf 'TAnimationSplashForm.AnimationsAddFromStream' zugewiesener Wert wird niemals benutzt
[DCC Warnung] ASFMain.pas(1705): W1036 Variable 'it' ist möglicherweise nicht initialisiert worden
[DCC Fehler] ASFMain.pas(1799): E2010 Inkompatible Typen: 'TGPRectF' und 'TGPRect'
[DCC Fataler Fehler] ASFLists.pas(146): F2063 Verwendete Unit 'ASFMain' kann nicht compiliert werden

Andy BitOff 29. Jul 2009 16:27

Re: Animierte Splash Form
 
Zitat:

Zitat von Super_Chemiker
Thanks, but now...:
Code:
[DCC Fehler] ASFMain.pas(1799): E2010 Inkompatible Typen: 'TGPRectF' und 'TGPRect'

Try to change
Result := MakeRect(
on
Result := TGPRectF(MakeRect(...)

I work in D7, but this error appears in the D2009, on the other I do not know



.

Andy BitOff 12. Aug 2009 12:06

Re: Animierte Splash Form
 
New version 2.2.3
Changes:
+ OnEndFade - Event occurs when splesh fully revealed
+ Fixed 100% load CPU on some machines

http://bitoff.ru/asf-main




.

Andy BitOff 13. Aug 2009 09:26

Re: Animierte Splash Form
 
In this regard (link), all the demo ASF was rebuilt again and is already uploaded.

Offer our apologies to all.



.

Andy BitOff 28. Aug 2009 07:19

Re: Animierte Splash Form
 
Google translate.

Version 2.3.0

+ onDblClick - Messages coming from the mouse
+ onMouseDown
+ onMouseUp
+ onMouseMove
* Renamed
.....ProgressBarPercent -> ProgressBarPercentSection
* ProgressBarPercentSection now Double
+ ProgressBarPercentFull (ReadOnly) - the number of performed relative to the total progress bar
+ Property Visible for animation
+ WaitModeStart - The method of introducing the progress bar and icons in the standby mode with the corresponding indication
+ WaitModeEnd - Output from standby
+ isWaitMode - Are we in standby
+ onWaitModeCustomDraw - events allow himself to draw on the progress standby mode if you do not like default 'drawing.
* Changed the order of drawing, now first drawn animation, then the icons, then the progress bar and finally the text.

New demo ASFDemoPool showing the work with the mouse (multiple cursors, move, clicks, handling events associated with it). Also demonstrates the implementation of the process of waiting for the progress bar. In the same demo you can see how you can use to splash a so-called windows About .

Updated SplashCreator to version 1.2
Support for the Visible property for the animation and minor fixes.

Details and explanations ...

Download version 2.3.0 as usual here


========================
Deutsch


Version 2.3.0

+ onDblClick - Nachrichten aus der Maus
+ onMouseDown
+ onMouseUp
+ onMouseMove
* Umbenennung
.....ProgressBarPercent -> ProgressBarPercentSection
* ProgressBarPercentSection jetzt Double
+ ProgressBarPercentFull (ReadOnly) - die Anzahl der durchgeführten bezogen auf die Gesamtmenge Fortschrittsbalken
+ Immobilien Sichtbar für Animation
+ WaitModeStart - Die Methode der Einführung der Fortschrittsbalken und Symbole im Standby-Modus mit den entsprechenden Angaben
+ WaitModeEnd - Leistung im Standby-Modus
+ isWaitMode - Sind wir im Standby-Modus
+ onWaitModeCustomDraw - Veranstaltungen können sich über die Fortschritte zu ziehen Standby-Modus, wenn Sie nicht wie Zeichnung Standard ".
* Changed die Reihenfolge der Zeichnung, jetzt erste Animation erstellt, dann die Symbole, dann der Fortschrittsbalken und schließlich den Text.

Neue Demo ASFDemoPool zeigt die Arbeit mit der Maus (mehrere Cursor bewegen, Klicks, die Behandlung von Ereignissen im Zusammenhang mit IT). Auch wurden bei der Durchführung des Prozesses des Wartens auf den Fortschrittsbalken. In der gleichen Demo sehen Sie, wie Sie verwenden, um ein so genanntes Fenster Über .

aktuell SplashCreator auf Version 1.2
Unterstützung für die Visible-Eigenschaft für die Animation und einzelne Korrekturen.

Details und Erklärungen ...

Download Version 2.3.0 as usual hier



.

Alois 1. Sep 2009 13:36

Re: Animierte Splash Form
 
Liste der Anhänge anzeigen (Anzahl: 1)
Deutsche Übersetzung für Splash Creator 1.2 / German Translation for Splash Creator 1.2

Andy BitOff 1. Sep 2009 18:54

Re: Animierte Splash Form
 
Zitat:

Zitat von Alois
Deutsche Übersetzung für Splash Creator 1.2 / German Translation for Splash Creator 1.2

Thanx Alois. I rarely watch mail.


SplashCreator re-uploaded. German.lng v.1.2 included



.


Alle Zeitangaben in WEZ +1. Es ist jetzt 09:49 Uhr.
Seite 4 von 5   « Erste     234 5      

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