AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Zurück Delphi-PRAXiS Programmierung allgemein Datenbanken Wie drucken Sie Name und Note in FASTREPORT?

Wie drucken Sie Name und Note in FASTREPORT?

Ein Thema von Alg2009 · begonnen am 12. Sep 2020 · letzter Beitrag vom 25. Sep 2020
Antwort Antwort
Seite 2 von 4     12 34   
Alg2009

Registriert seit: 12. Sep 2020
16 Beiträge
 
Delphi 10.3 Rio
 
#11

AW: Wie drucken Sie Name und Note in FASTREPORT?

  Alt 14. Sep 2020, 23:20
there is also an english version of Delphi-Praxis:
https://en.delphipraxis.net/

I meant only help generic i didn't see the english version of Delphi-Praxis before i post this topic here
I ask to move the topic to its rightful place .
  Mit Zitat antworten Zitat
TurboMagic

Registriert seit: 28. Feb 2016
Ort: Nordost Baden-Württemberg
2.812 Beiträge
 
Delphi 12 Athens
 
#12

AW: Wie drucken Sie Name und Note in FASTREPORT?

  Alt 15. Sep 2020, 08:33
By the way: FastReports themselves provide forums as well!
  Mit Zitat antworten Zitat
Alg2009

Registriert seit: 12. Sep 2020
16 Beiträge
 
Delphi 10.3 Rio
 
#13

AW: Wie drucken Sie Name und Note in FASTREPORT?

  Alt 16. Sep 2020, 19:36
I need your help
  Mit Zitat antworten Zitat
Alg2009

Registriert seit: 12. Sep 2020
16 Beiträge
 
Delphi 10.3 Rio
 
#14

AW: Wie drucken Sie Name und Note in FASTREPORT?

  Alt 18. Sep 2020, 10:28
Hello,
I still need your help haentschman
  Mit Zitat antworten Zitat
Benutzerbild von haentschman
haentschman

Registriert seit: 24. Okt 2006
Ort: Seifhennersdorf / Sachsen
5.289 Beiträge
 
Delphi 12 Athens
 
#15

AW: Wie drucken Sie Name und Note in FASTREPORT?

  Alt 18. Sep 2020, 11:25
I am at Work...at Weekend.
  Mit Zitat antworten Zitat
TurboMagic

Registriert seit: 28. Feb 2016
Ort: Nordost Baden-Württemberg
2.812 Beiträge
 
Delphi 12 Athens
 
#16

AW: Wie drucken Sie Name und Note in FASTREPORT?

  Alt 18. Sep 2020, 15:44
Which of your issues does still exist?
  Mit Zitat antworten Zitat
Alg2009

Registriert seit: 12. Sep 2020
16 Beiträge
 
Delphi 10.3 Rio
 
#17

AW: Wie drucken Sie Name und Note in FASTREPORT?

  Alt 18. Sep 2020, 19:56
Which of your issues does still exist?

my Program

The problem is my program it shows the first mark for all students and i want to show to every student its mark in the FastReport
when i click on the button Impression(print) it show the result of the query in the FastReoprt
  Mit Zitat antworten Zitat
TurboMagic

Registriert seit: 28. Feb 2016
Ort: Nordost Baden-Württemberg
2.812 Beiträge
 
Delphi 12 Athens
 
#18

AW: Wie drucken Sie Name und Note in FASTREPORT?

  Alt 18. Sep 2020, 22:07
Have you already looked into the manual for FastReport?
The one for version 5 can be found here: https://www.fast-report.com/public_d...ntent_dyn.html

A more complete one for 4.6 can be found in PDF format here:
https://origin2.cdn.componentsource....rmanual-en.pdf
  Mit Zitat antworten Zitat
Benutzerbild von haentschman
haentschman

Registriert seit: 24. Okt 2006
Ort: Seifhennersdorf / Sachsen
5.289 Beiträge
 
Delphi 12 Athens
 
#19

AW: Wie drucken Sie Name und Note in FASTREPORT?

  Alt 19. Sep 2020, 08:57
Hi...

you want this?

Question:
How long you programming Delphi?

You should read this information:
StyleGuide: https://wiki.delphi-jedi.org/wiki/Pr...ge_Style_Guide
* naming of units, variables
* indentation
* readable names
CamelCase:
https://en.wikipedia.org/wiki/Camel_...er_programming

Your Project:

Do you want to learn something? ...ok.

Plus:
+ SQL with parameters

Minus:
- naming of the components/units -> Do yourself a favor with it. It is better readable.
- Never write hardcoded folders/files, access data into the connection. This belongs, partly encrypted, into an INI file or into the registry.
Code:
object Conn: TFDConnection
    Params.Strings = (
      'Database=D:\Database Desktop\BaseDonee\SCOLAIRE.FDB'
      'User_Name=SYSDBA'
      'Password=masterkey'
      'DriverID=FB')
    Connected = True
    LoginPrompt = False
    Left = 79
    Top = 22
  end
- Never use DB tables. Better use Querys.
- DateTime Edit without check. Better use a DateTimePicker...
- Creation of the Datamodule before creating Main form. (in DPR)
- use Anchors for the components http://docwiki.embarcadero.com/Libra...ontrol.Anchors
- Firebird has a function for reading the new ID https://firebirdsql.org/refdocs/lang...21-insert.html
- write the code or/and names better in english.

what i do:
* formatting
* naming
* SQL was wrong
* assignment of the query to the report
* delete unused report datasets
* editing report
Miniaturansicht angehängter Grafiken
preview.png  
Angehängte Dateien
Dateityp: zip BaseDonee.zip (129,5 KB, 7x aufgerufen)

Geändert von haentschman (19. Sep 2020 um 10:57 Uhr)
  Mit Zitat antworten Zitat
Alg2009

Registriert seit: 12. Sep 2020
16 Beiträge
 
Delphi 10.3 Rio
 
#20

AW: Wie drucken Sie Name und Note in FASTREPORT?

  Alt 19. Sep 2020, 10:28
Hi...

you want this?

Question:
How long you programming Delphi?
About Year

https://www.delphipraxis.net/attachm...rt-preview.png

Yes this is What i want like the picture how did you do that?

Geändert von Alg2009 (19. Sep 2020 um 10:31 Uhr)
  Mit Zitat antworten Zitat
Themen-Optionen Thema durchsuchen
Thema durchsuchen:

Erweiterte Suche
Ansicht

Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 02:41 Uhr.
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