1 / 32

Delphi i Acad cd.

Delphi i Acad cd. Delphi i Acad cd. Delphi i Acad cd. l_poz := MSpace.Count; Label3.Caption:=IntToStr(l_poz); ent:=Mspace.Item(0); for l_poz := 0 to MSpace.Count-1 do begin; ent:=Mspace.Item(l_poz); if ent.layer = Edit1.text then if ent.EntityName = 'AcDbText' then

gzifa
Download Presentation

Delphi i Acad cd.

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Delphi i Acad cd.

  2. Delphi i Acad cd.

  3. Delphi i Acad cd. • l_poz := MSpace.Count; • Label3.Caption:=IntToStr(l_poz); • ent:=Mspace.Item(0); • for l_poz := 0 to MSpace.Count-1 do • begin; • ent:=Mspace.Item(l_poz); • if ent.layer = Edit1.text then • if ent.EntityName = 'AcDbText' then • begin • ent.textString:=Edit3.Text; • ent.Update; • end; • end;//for

  4. Delphi i Acad cd. ……..i program zmienia obiekty na rysunku AutoCADa

  5. Acad 2k6 i SQL

  6. Acad 2k6 i SQL Uwaga! Ważna jest kolejność wybierania pól

  7. Acad 2k6 i SQL

  8. Acad 2k6 i SQL

  9. Acad 2k6 i SQL

  10. Acad 2k6 i SQL

  11. Acad 2k6 i SQL

  12. Acad 2k6 i SQL

  13. Acad 2k6 i SQL

  14. Acad 2k6 i SQL • Niestety nie chodzi taka składnia: SELECT u.nuc ASnazwisko,avg(s.oce) AS ocena FROM ((przedmioty p JOIN stopnie s ON (p.spr = s.spr)) JOIN uczniowie u ON u.id_uc = s.iuc) GROUP BY u.id_uc;

  15. Acad 2k6 i SQL

  16. Acad 2k6 i SQL • SELECT u.nuc AS nazwisko,avg(s.oce) AS ocena • FROM • ((przedmioty p JOIN stopnie s ON (p.spr = s.spr)) • JOIN uczniowie u ON u.id_uc = s.iuc) • GROUP BY u.id_uc; Ale to jest poprawne: SELECT u.nuc AS nazwisko,avg(s.oce) AS ocena FROM przedmioty p, stopnie s, uczniowie u WHERE (p.spr = s.spr) AND (u.id_uc = s.iuc) GROUP BY u.id_uc;

  17. Acad 2k6 i SQL

  18. Acad 2k6 i SQL

  19. Acad 2k6 i SQL

  20. Acad 2k6 i SQL Pokaż automatycznie połączone rekordy z bazy danych Pokaż automatycznie połączone obiekty na rysunku Pokaż połączone rekordy z bazy danych Pokaż połączone obiekty na rysunku Połącz

  21. Acad 2k6 i SQL Pokaż połączone obiekty na rysunku (meble)

  22. Pokaż automatycznie połączone rekordy z bazy danych (pokaz meble) Acad 2k6 i SQL To nie jest mebel !!!

  23. Acad 2k6 i SQL

More Related