Pure Software code
 
www.puresoftwarecode.com

SOFTWARE Institute
Teach YourSelf
100 Software Programming Training Courses
For Free Download


CHRISTIANITY Institute
HUMANITIES Institute
more the 400 Subjects, All for Free Download.
 
Lebanon  
Python Programming Courses
Software Institute     
 
 
  Home : Software Institute : Python Page 4 Home

Python Pages   -   1    2    3   4   5    6

1  Introduction   7  Show Frames\Images\open/write txt file in Form
 
     
2  display Circle and Line   8  GUI Functions, Tkinter - Horizontal Radio Button
         
3  Calculator Designs   9  GUI Functions, Tkinter - Vertical Radio Button
 
 3.1 Calculator,Design 1  3.2 Calculator,Design 2
   
     
4  display multi Forms - Py-tkinter11   10  display Menu\TabControl\image\Progress +
         
5  ListBox Operations   11   Mini Pharmacy Management System
         
6  Mini Restaurant  Bill   12  Mini Management Hotel
         
 
 
  1- Introduction
    Note:
      1- in Visual Studio 2017, 2019 or 2022. I ended up with a folder where new projects were created by default in C:\users\%username%\source\repos
      2- C:\users\%username%\source\repos = C:\users\...\source\repos
 
  1.1- Best Practices to Make Your Python More Readable
  1. One Statement of Code per Line.
  2. Explicit code.
  3. Passing args to Functions.
  4. Return Statements.
  5. Writing Idiomatic Python.
  6. Access a Dictionary Element.
  7. Filtering a List.
  8. Updating Values in a List.
  1.2- The tkinter package (“Tk interface”) :
  • The Canvas widget supplies graphics facilities for Tkinter. Among these graphical objects are lines, circles, images, and even other widgets. With this widget it's possible to draw graphs and plots, create graphics editors, and implement various kinds of custom widgets.
  • The tkinter package (“Tk interface”) is the standard Python interface to the Tk GUI toolkit. Both Tk and tkinter are available on most Unix platforms, as well as on Windows systems. (Tk itself is not part of Python; it is maintained at ActiveState.)
  • Running python -m tkinter from the command line should open a window demonstrating a simple Tk interface, letting you know that tkinter is properly installed on your system, and also showing what version of Tcl/Tk is installed
  1.3- The place Geometry Manager
  • The place geometry manager is different than grid or pack. Rather than referencing against a cell location or a window's side, most of the time you'll be using a relative form of x and y coordinates. You can also use place to overlap portions of widgets, which isn't allowed in either grid or pack.

    Invoking place is similar to calling the other geometry managers:

    $widget->place( [ option => value, . . . ] )

     
  •  more Detail, The place Geometry Manager:
     more Detail, The place Geometry Manager
 
 
2-  Python, Use Tkinter Moduke to display Circle and Line
 
  1. Python program, of tkinter  and random Module to display the complex Graphics facilities, Circles and Lines
  2. Create a new Python project In Visual Studio 2022
    1. the Microsoft Visual Studio (... or 2019 or 2022) is a powerful IDE for Python language
    2. Open/Run Microsoft Visual Studio 2022
    3. To view Python templates, search for python.
       Select the Python Application template, and select Next.
    4. Create a new Python project In Visual Studio 2022
              On the Configure your new project screen  -   (specify a name and file location for the project, and then select Create)
              Project name: Py_B3
              Location: C:\Users\...\source\repos    (default location for
      Visual Studio 2022)
       


  3. The new project opens in Visual Studio 2022  - (Visual Studio 2022 Compiler - IDE, to compile Python project / file )
    1. The Visual Studio Solution Explorer window shows the project structure
    2. Python Project Properieties - Py_B3
      • Projct Folder: C:\Users\...\source\repos\Py_B3
      • Startup File: Py_B3.py
      • Project file: Py_B3.sln
    3. Download Python Project : Py_B3.zip - (8.6 KB zip file)   Download
    4. Project consist of:
       One Python Form - (Py_B3.py )

     

    Download Python Project : Py_B3.zip - (8.6 KB zip file)   Download     

     

  4.    Source Code:

    Download this Source Code at python  file: Py_B3.py  - (1.52 KB Python file)   download  

      Python Code, to display  the complex Graphics facilities, Circles and Lines


  5. Output: "Mon Canevas Psychédélique !"
     
      the Code of the Python file Py_B3.py,  corresponding to to display Pic1 and Pic
     
     
     
     
     
    Click Button Crcle,  Pic 2 Click Button Lines,  Pic 3
   
3-  Python Programs, to display  Calculator (Functions ...)
 
   3.1- Python Calculator, Design 1
  1. Python program, of tkinter Module to display  Calculator (Functions ...)
  2. Create a new Python project In Visual Studio 2022
    1. the Microsoft Visual Studio (... or 2019 or 2022) is a powerful IDE for Python language
    2. Open/Run Microsoft Visual Studio 2022
    3. To view Python templates, search for python.
       Select the Python Application template, and select Next.
    4. Create a new Python project In Visual Studio 2022
              On the Configure your new project screen  -   (specify a name and file location for the project, and then select Create)
              Project name: calc
              Location: C:\Users\...\source\repos    (default location for
      Visual Studio 2022)
       


  3. The new project opens in Visual Studio 2022  - (Visual Studio 2022 Compiler - IDE, to compile Python project / file )
    1. The Visual Studio Solution Explorer window shows the project structure
    2. Python Project Properieties - calc
      • Projct Folder: C:\Users\...\source\repos\calc
      • Startup File: calc.py
      • Project file: calc.sln
    3. Download Python Project : calc.zip - (9.1 KB zip file)   Download
    4. Project consist of:
       One Python Form - (calc.py )

     

    Download Python Project : calc.zip - (9.1 KB zip file)   Download     

     

  4.     Source Code:

    Download this Source Code at python file: calc.py  - (2.6 KB python file)   download   

      Python Code, to display   Calculator (Functions ...)

  5. Output:
    no data Entry, Empty data entry : 96*23 resultat: 96*23 = 2208
 
  3.2- Python Calculator, Design 2
  1. Python program, of tkinter Module to display  Calculator Design 2
  2. Create a new Python project In Visual Studio 2019
    1. the Microsoft Visual Studio (... or 2019) is a powerful IDE for Python language
    2. Open/Run Microsoft Visual Studio 2019
    3. To view Python templates, search for python.
       Select the Python Application template, and select Next.
    4. Create a new Python project In Visual Studio 2019
              On the Configure your new project screen  -   (specify a name and file location for the project, and then select Create)
              Project name: Pycalculator1
              Location: C:\Users\...\source\repos    (default location for
      Visual Studio 2019)
       


  3. The new project opens in Visual Studio 2019  - (Visual Studio 2019 Compiler - IDE, to compile Python project / file )
    1. The Visual Studio Solution Explorer window shows the project structure
    2. Python Project Proprieties -  Pycalculator1.
    3. Download Python Project :  Pycalculator1.zip - (12.7 KB zip file)   Download
    4. Project consist of One Python Form - ( Pycalculator1..py)

     

        Download Python Project :  Pycalculator1.zip - (12.7 KB zip file)   Download     


     

  4.  Source Code:

    Download this Source Code at python file:  Pycalculator1..py  - (4 KB python file)   download    

    Download this Source Code at txt file: PyCalculatorText.txt - (3.6 KB txt file)    download    

      Python Code, to display   Calculator desigm 2 - (Build a Python GUI Calculator)

  5. Output:
    no data Entry, Empty data entry : 852*5 resultat: 852*5 = 4260
   
4-  Python, Program to display multi Forms - Py-tkinter11
 
  1.  Python program, of tkinter Module to display  rectangle design
  2. Create a new Python project In Visual Studio 2019
    1. the Microsoft Visual Studio (... or 2019) is a powerful IDE for Python language
    2. Open/Run Microsoft Visual Studio 2019
    3. To view Python templates, search for python.
       Select the Python Application template, and select Next.
    4. Create a new Python project In Visual Studio 2019
              On the Configure your new project screen  -   (specify a name and file location for the project, and then select Create)
              Project name: Py-tkinter11
              Location: C:\Users\...\source\repos    (default location for
      Visual Studio 2019)
       


  3. The new project opens in Visual Studio 2019  - (Visual Studio 2019 Compiler - IDE, to compile Python project / file )
    1. The Visual Studio Solution Explorer window shows the project structure
    2. Python Project Proprieties -  Py-tkinter11.
      • Projct Folder: C:\Users\...\source\repos\Py-tkinter11
      • Startup File: Py-tkinter11.py
      • Project file: Py-tkinter11.sln
    3. Download Python Project : Py-tkinter11.zip - (8.6KB zip file)   Download
    4. Project consist of:
       One Python Form - (Py-tkinter11.py)
    5. this python Form ( Py-tkinter11.py) to be create 8 output Forms

    Download Python Project : Py-tkinter11.zip - (8.6 KB zip file)   Download   


     

  4.   Source Code:

      Download this Source Code at python file :Py-tkinter11.py - (6.2 KB Python file)   download

      Python Code, to display multi Forms - Py-tkinter11.py

  5. Output :

    - Py-tkinter1 , 8 Forms, multi Forms, multi Links 
   
5-   Python, ListBox Operations
 
  1. Python program of tkinter Module, ListBox Operations
  2. Create a new Python project In Visual Studio 2019
    1. the Microsoft Visual Studio (... or 2019) is a powerful IDE for Python language
    2. Open/Run Microsoft Visual Studio 2019
    3. To view Python templates, search for python.
       Select the Python Application template, and select Next.
    4. Create a new Python project In Visual Studio 2019
              On the Configure your new project screen  -   (specify a name and file location for the project, and then select Create)
              Project name: Py
      _listFunct
              Location: C:\Users\...\source\repos    (default location for
      Visual Studio 2019)
       


  3. The new project opens in Visual Studio 2019  - (Visual Studio 2019 Compiler - IDE, to compile Python project / file )
    1. The Visual Studio Solution Explorer window shows the project structure
    2. Python Project Propeieties - Py_listFunct.
      • Projct Folder: C:\Users\...\source\repos\Py-listFunct
      • Startup File: Py_listFunct.py
      • Project file: Py_listFunct.sln
    3. Download Python Project : Py_listFunct.zip - (186 KB zip file)   Download
    4. Project consist of:
       1- One Python Form - (Py_listFunct.py )
       2- png picture files -  images (caribat1.png+ caribat2.png)
      3- txt file - chem_data.txt
    5. show Images & Display txt file at Form

     

    Download Python Project : Py_listFunct.zip - (186 KB zip file)   Download    


     

  4.   Source Code:

    Download this Source Code at python   file: Py_listFunct.py  - (6.12 KB Python file)   download  

    Download this Source Code at txt file: chem_data.txt  - (0.2 KB txt file)   download  
      Python Code, to display ListBox Operations

  5. Output:
   
 6-   Python, Mini Restaurant  Bill 
 
  1. Python program, of tkinter  and random Module to display Mini Restaurent Bill
  2. Create a new Python project In Visual Studio 2019
    1. the Microsoft Visual Studio (... or 2019) is a powerful IDE for Python language
    2. Open/Run Microsoft Visual Studio 2019
    3. To view Python templates, search for python.
       Select the Python Application template, and select Next.
    4. Create a new Python project In Visual Studio 2019
              On the Configure your new project screen  -   (specify a name and file location for the project, and then select Create)
              Project name: pyt_restau
      rent
              Location: C:\Users\...\source\repos    (default location for
      Visual Studio 2019)
       


  3. The new project opens in Visual Studio 2019  - (Visual Studio 2019 Compiler - IDE, to compile Python project / file )
    1. The Visual Studio Solution Explorer window shows the project structure
    2. Python Project Properieties - pyt_restaurent
      • Projct Folder: C:\Users\...\source\repos\pyt_restaurent
      • Startup File: pyt_restaurent.py
      • Project file: pyt_restaurent.sln
    3. Download Python Project : pyt_restaurent.zip - (28.0 KB zip file)   Download
    4. Project consist of:
       3 Python Forms - (pyt_restaurent.py + restaurant_management_system.py + price.py
       and 1 file txt (value.txt) used to stores Data
    5. Login Details:
      Username: chk
      Password: 2345

     

    Download Python Project : pyt_restaurent.zip - (28.0 KB zip file)   Download    


     

  4.  Source Code:
      1-

    Download this Source Code at python file: pyt_restaurent.py  - (1.74 KB Python file)   download  

      2- Download this Source Code at python file: restaurant_management_system.py  - (13.3 KB Python file)   download  
      3- Download this Source Code at python file: price.py  - (7.5 KB Python file)   download  
      4- Download this Source Code at txt file: value.txt  - (0.39 KB txt file)   download  
     3 Python Code files, to display Mini Restaurant  Bill Project

  5. Output:
      Pic 1, pyt_restaurent.py
                

    Pic 2, restaurant_management_system.py

            
      Pic 3, price.py
 
7-  Python - Show Frames / Images & open/write/Display txt file in Form
 
  1.  Python program, of tkinter Module to display Images and write txt file
  2. Create a new Python project In Visual Studio 2019
    1. the Microsoft Visual Studio (... or 2019) is a powerful IDE for Python language
    2. Open/Run Microsoft Visual Studio 2019
    3. To view Python templates, search for python.
       Select the Python Application template, and select Next.
    4. Create a new Python project In Visual Studio 2019
              On the Configure your new project screen  -   (specify a name and file location for the project, and then select Create)
              Project name: Py
      _FrameImage
              Location: C:\Users\...\source\repos    (default location for
      Visual Studio 2019)
       


  3. The new project opens in Visual Studio 2019  - (Visual Studio 2019 Compiler - IDE, to compile Python project / file )
    1. Using Visual studio 2019 Compiler - IDE, to compile Python project / file
    2. Show Frames / Images & open/write/Display txt file IN PYTHON Form
    3. Python Project Propeieties - Py_FrameImage
    4. Download Python Project : Py_FrameImage.zip - (24.4 KB zip file)   Download
    5. Project consist of:
       1- One Python Form - (Py_FrameImage.py )
       2- png picture files -  images (0MzarGazir.png+ 0Mzarpictures.png + mzard.png)
      3- txt file - MzarGazir.txt
    6. show Images & Display txt file at Form

     

    Download Python Project : Py-FrameImage.zip  - (1.25 MB zip file)   download     


     

  4.   Source Code:
    Download this Source Code at python file: Py_FrameImage.py - (3.7 KB Python file)   download   
    History Info -  (st Louis school Gazir / Palais du Mzar Gazir-Lebanon ), txt file: MzarGazir.txt - (3 KB Python file)   download   
      Python Code of tkinter Module to display Images and write txt file

  5. Output:
    pic 1 after loading
    Pic 2, after click info button, contents of txt file Display
   
8-  Python GUI Functions, Tkinter - Horizontal Radio Button Design
 
  1. Python GUI Functions, Tkinter - Horizontal Radio Button Design
  2. Create a new Python project In Visual Studio 2022
    1. the Microsoft Visual Studio (... or 2019 or 2022) is a powerful IDE for Python language
    2. Open/Run Microsoft Visual Studio 2022
    3. To view Python templates, search for python.
       Select the Python Application template, and select Next.
    4. Create a new Python project In Visual Studio 2022
              On the Configure your new project screen  -   (specify a name and file location for the project, and then select Create)
              Project name: Py_GUI_Check
              Location: C:\Users\...\source\repos    (default location for
      Visual Studio 2022)
       


  3. The new project opens in Visual Studio 2022  - (Visual Studio 2022 Compiler - IDE, to compile Python project / file )
    1. The Visual Studio Solution Explorer window shows the project structure
    2. Python Project Properieties - Py_GUI_Check
      • Projct Folder: C:\Users\...\source\repos\Py_GUI_Check
      • Startup File: Py_GUI_Check.py
      • Project file: Py_GUI_Check.sln
    3. Download Python Project : Py_GUI_Check.zip - (11.1 KB zip file)   Download
    4. Project consist of:
       One Python Form - (Py_GUI_Check.py )

     

    Download Python Project : Py_GUI_Check.zip - (11.1 KB zip file)   Download     

     

  4.    Source Code:

    Download this Source Code at python  file: Py_GUI_Check.py  - (3.68 KB Python file)   download  

      Python Code, to display GUI Functions

  5. Output:

     1- Default View, of  Python GUI Functions - Horizontal Radio Button Design

     
     
       

      2- View1, Enter an name, Choose a number, Checked

      3- View2, Enter an name, Choose a number, Checked , Radio - Blue

       

       4- View3, Enter an name, Choose a number, Checked , Radio - Gold

     
     
   
9-  Python GUI Functions, Tkinter - Vertical Radio Button Design
 
  1. Python GUI Functions, Tkinter - Vertical Radio Button Design
  2. Create a new Python project In Visual Studio 2022
    1. the Microsoft Visual Studio (... or 2019 or 2022) is a powerful IDE for Python language
    2. Open/Run Microsoft Visual Studio 2022
    3. To view Python templates, search for python.
       Select the Python Application template, and select Next.
    4. Create a new Python project In Visual Studio 2022
              On the Configure your new project screen  -   (specify a name and file location for the project, and then select Create)
              Project name: Py
      _GUI_radio
              Location: C:\Users\...\source\repos    (default location for
      Visual Studio 2022)
       


  3. The new project opens in Visual Studio 2022  - (Visual Studio 2022 Compiler - IDE, to compile Python project / file )
    1. The Visual Studio Solution Explorer window shows the project structure
    2. Python Project Properieties - Py_GUI_radio
      • Projct Folder: C:\Users\...\source\repos\Py_GUI_radio
      • Startup File: Py_GUI_radio.py
      • Project file: Py_GUI_radio.sln
    3. Download Python Project : Py_GUI_radio.zip - (10.5 KB zip file)   Download
    4. Project consist of:
       One Python Form - (Py_GUI_radio.py )

     

    Download Python Project : Py_GUI_radio.zip - (10.5 KB zip file)   Download     

     

  4.   Source Code

    Download this Source Code at python  file: Py_GUI_radio.py  - (3.78 KB  Python file)   download

      Python GUI Functions, Tkinter - Vertical Radio Button Design

  5. Output:

      1- Default View, of  Python GUI Functions - Vertical Radio Button Design

     
     
       

     2- View1, Enter an name, Choose a number, Checked

      3- View2, Enter an name, Choose a number, Checked, Radio - Gold
       

      3- View3, Enter an name, Choose a number, Checked, Radio -gray

     
     
   
10-  Python Program to display Menu + TabControl + image + Progress + ...
 
  1. Python Project (Program) to display Menu + TabControl + image + Progress + ...
  2. Create a new Python project In Visual Studio 2019
    1. the Microsoft Visual Studio (... or 2019) is a powerful IDE for Python language
    2. Open/Run Microsoft Visual Studio 2019
    3. To view Python templates, search for python.
       Select the Python Application template, and select Next.
    4. Create a new Python project In Visual Studio 2019
              On the Configure your new project screen  -   (specify a name and file location for the project, and then select Create)
              Project name: Py
      _progresss
              Location: C:\Users\...\source\repos    (default location for
      Visual Studio 2019)
       


  3. The new project opens in Visual Studio 2019  - (Visual Studio 2019 Compiler - IDE, to compile Python project / file )
    1. The Visual Studio Solution Explorer window shows the project structure
    2. Python Project Properieties - Py_progresss
      • Projct Folder: C:\Users\...\source\repos\Py_progresss
      • Startup File: Py_progresss.py
      • Project file: Py_progresss.sln
    3. Download Python Project : Py_progresss.zip - (24.9 KB zip file)   Download
    4. Project consist of:
       One Python Form - (Py_progresss.py )
       and two gif file -  images (istotab1a.gif + istotab2.gif)

     

    Download Python Project : Py_progresss.zip - (24.9 KB zip file)   Download     

     

  4.   Source Code

    Download this Source Code at python  file: Py_progresss.py  - (8.18 KB Python file)   download  

      Python Code, to display Menu + TabControl + image + Progress + ...

  5. Output:
    1-    (Python, to display Menu + TabControl(Tab1) + image + ...) 2-    (Python, to display Menu + TabControl + image + Progress + ...)
     
     
            
    3-     (1- show Menu, 2 SubMenus.   2- when to select Help Menu, Click Submenu About:  to Display Form: Message into Box)
   
11-  Python, Mini Pharmacy Management System
 
  1. Mini Pharmacy Management System to display Group of database Functions: Navigation, Add, Update, Delete,Search.
  2. Create a new Python project In Visual Studio 2022
    1. the Microsoft Visual Studio (... or 2019 or 2022) is a powerful IDE for Python language
    2. Open/Run Microsoft Visual Studio 2022
    3. To view Python templates, search for python.
       Select the Python Application template, and select Next.
    4. Create a new Python project In Visual Studio 2022
              On the Configure your new project screen  -   (specify a name and file location for the project, and then select Create)
              Project name: Py-project
              Location: C:\Users\...\source\repos    (default location for
      Visual Studio 2022)
       


  3. The new project opens in Visual Studio 2022  - (Visual Studio 2022 Compiler - IDE, to compile Python project / file )
    1. The Visual Studio Solution Explorer window shows the project structure
    2. Python Project Proprieties -  Py-project
      • Projct Folder: C:\Users\...\source\repos\Py-project
      • Startup File: Py_project.py
      • Project file: Py-project.sln
    3. Download Python Project :  Py-project.zip  - (27.3 KB zip file)   download
    4. Project consist of:
       One Python Form - (Py_project.py )
       and two data files -  (database_proj3.txt + database_proj3a.txt)

     

    Download Python Project : Py-project.zip  - 27.3 KB zip file)   download     

     

  4.   Source Code

    Download this Source Code at python  file: Py_project.py  - (7.8 KB Python file)   download   

    Download this DataBase  file: database_proj3.txt  - (0.15 KB  file)   download   

    Download this DataBase  file: database_proj3a.txt  - (0.15 KB  file)   download   

      Python Code, to display database Functions of Mini Pharmacy Management System (Navication, Add, Update, Delete,Search).

  5. Output:
    pic 1- Resultat after load application
     
    Pic 2- Resultat after click Buttons: FIRST ITEM & CONTENTof database_project3.txt
   
12-  Python Program, Mini Management Hotel
 
  1. Python program of tkinter,  Mini Management Hotel
  2. Create a new Python project In Visual Studio 2019
    1. the Microsoft Visual Studio (... or 2019) is a powerful IDE for Python language
    2. Open/Run Microsoft Visual Studio 2019
    3. To view Python templates, search for python.
       Select the Python Application template, and select Next.
    4. Create a new Python project In Visual Studio 2019
              On the Configure your new project screen  -   (specify a name and file location for the project, and then select Create)
              Project name: Py-sys-avrg
              Location: C:\Users\...\source\repos    (default location for
      Visual Studio 2019)
       


  3. The new project opens in Visual Studio 2019  - (Visual Studio 2019 Compiler - IDE, to compile Python project / file )
    1. The Visual Studio Solution Explorer window shows the project structure
    2. Python Project Proprieties -  Py-sys-avrg.
      • Project Folder: C:\Users\...\source\repos\Py-sys-avrg
      • Startup File:  checkin_gui_and_program.py 
      • Project file:  Py-sys-avrg.sln
    3. Download Python Project :  Py-sys-avrg.zip  - (578 KB zip file)   download
    4. Project consist of:
       two Python Forms - (checkin_gui_and_program.py + recipt.py )
       and two data files -  (hotel.dat + recipt.txt)
      and one picture file -  (lcars_C1.png)

     

    Download Python Project : Py-sys-avrg.zip  - (578 KB zip file)   download     


     

  4.  Source Code:

    Download this Source Code at python  file: checkin_gui_and_program.py - (24.0 KB Python file)   download  

    Download this Source Code at python  file recipt.py - (2.8 KB Python file)   download  

    Download this DataBase  file: hotel.dat   - (4.92 KB  file)   download  
    Download this DataBase  file: recipt.txt  - (0.37 KB  file)   download  
      Python Code, Mini Management Hotel

  5. Output:
                      Pic 1- Mini Management Hotel  after load
            Pic 2 - Mini Management Hotel, View with data entry
             pic 3 -  Reciption         >>>>>     ( at recipt.py)
 

Python Pages   -   1    2    3   4   5    6

 
 www.puresoftwarecode.com  :    HUMANITIES Institute  ART Institute & Others
 SOFTWARE Institute - "Free, 120  Training Courses"  CHRISTIANITY Institute    
 Python, Teach yourSelf Programs in 6 pages, in English    Le HANDICAP c'est quoi ?   (in French)  Basilica Architecture, in the Shape of a Cross
 VISUAL STUDIO 2019, C# Programs, in English  Holy BIBLE in 22 Languages and Studies ...  Drugs and Treatment in English, french, Arabic  Old Traditional Lebanese houses
 VISUAL STUDIO 2010 in English  220 Holy Christian ICONS  Classification of Wastes from the Source in Arabic  5 DRAWING Courses & 3 Galleries
 VISUAL STUDIO .NET, Windows & ASP in English  Catholic Syrian MARONITE Church    Meteora, Christianity Monasteries - En, Ar, Fr
 VISUAL STUDIO 6.0 in English  HOLY MASS of  Maronite Church - Audio in Arabic  Christianity in the Arabian Peninsula in Arabic  Monasteries of Mount Athos & Pilgrimage
 Microsoft ACCESS in English  VIRGIN MARY, Mother of JESUS CHRIST GOD  Summary of the Lebanese history in Arabic  Carved Rock Churches, in Lalibela, Ethiopia
 PHP & MySQL in English  SAINTS of the Church  LEBANON EVENTS 1840 & 1860, in Arabic  
 SOFTWARE GAMES in English  Saint SHARBEL - Sharbelogy in 10 languages, Books  Great FAMINE in LEBANON 1916,  in Arabic  my PRODUCTS, and Statistiques ...
 WEB DESIGN in English  Catholic RADIO in Arabic, Sawt el Rab  Great FAMINE and Germny Role 1916,  in Arabic  
 JAVA SCRIPT in English  Читать - БИБЛИЯ и Шарбэль cвятой, in Russe  Armenian Genocide 1915  in Arabic  4 Different STUDIES
 FLASH - ANIMATION in English     Sayfo or Assyrian Genocide 1915 in Arabic  SOLAR Energy & Gas Studies
 PLAY, 5 GAMES      
     Christianity in Turkey in Arabic  WELCOME to LEBANON
 SAADEH BEJJANE Architecture Andree Zouein Foundation    YAHCHOUCH, my Lebanese Village
 CARLOS SLIM HELU Site.  new design  REPORT, Cyber Attack Attacks the Current Site  Prononce English and French and Arabic Letters  ZOUEIN, my Family - History & Trees
       Chucri Simon Zouein, Computer engineer
     
echkzouein@gmail.com
© pure software code - Since 2003