Page 2 of 2 FirstFirst 12
Results 13 to 23 of 23

Thread: School Management - For Beginner

  1. #13
    khan3795 is offline Member
    Last Online
    28th March 2019 @ 01:46 PM
    Join Date
    19 Mar 2012
    Location
    Layyah
    Age
    34
    Gender
    Male
    Posts
    997
    Threads
    146
    Thanked
    44

    Default

    plz give screen shot if u don't mind

  2. #14
    Qutib Nangrj's Avatar
    Qutib Nangrj is offline Senior Member+
    Last Online
    21st February 2021 @ 04:43 PM
    Join Date
    06 Jan 2015
    Age
    29
    Gender
    Male
    Posts
    77
    Threads
    22
    Credits
    116
    Thanked
    0

    Default

    ye to setup hy dear

    Sent from my H30-U10 using Tapatalk

  3. #15
    Join Date
    15 Sep 2016
    Age
    27
    Gender
    Male
    Posts
    44
    Threads
    0
    Credits
    284
    Thanked
    0

    Default

    Thanks borther for sharing

  4. #16
    modern khan's Avatar
    modern khan is offline hamzababa
    Last Online
    13th January 2024 @ 03:29 AM
    Join Date
    10 Jul 2014
    Location
    PESHAWAR,SWABI
    Age
    26
    Gender
    Male
    Posts
    1,115
    Threads
    63
    Credits
    231
    Thanked
    35

    Default

    Bhai Screen Shot Ki Madad Sa Batao Samajh Nahe Arahe

  5. #17
    Join Date
    17 Jul 2017
    Age
    22
    Gender
    Male
    Posts
    2,731
    Threads
    256
    Thanked
    801

    Default

    بہت ہی اچھی شیئرنگ ہیں
    شکریہ بھائی


    Sent from my QMobile X2i using Tapatalk

  6. #18
    Sadafraan's Avatar
    Sadafraan is offline Advance Member
    Last Online
    20th September 2022 @ 06:46 PM
    Join Date
    18 Aug 2013
    Location
    AHMAD PUR SIAL
    Gender
    Male
    Posts
    1,365
    Threads
    120
    Credits
    3,437
    Thanked
    128

    Default

    بھائی صحیح طریقے سے سکرین شوٹس کی مدد سے بتائیں پلیز
    کچھ سمجھ نہیں آیا کہ کیا کرنا ہے اور نتیجہ کیا نکلے گا۔
    آپکے کمپیوٹر/موبائل کے متعلق

  7. #19
    Bindass666 is offline Senior Member+
    Last Online
    4th August 2021 @ 01:14 AM
    Join Date
    13 May 2011
    Age
    31
    Gender
    Male
    Posts
    134
    Threads
    0
    Credits
    978
    Thanked
    7

    Default

    is main eror hai bhai.... koi bata sakta hai K c ++ kay bad is ke layout kis soft say kya jata hai...

  8. #20
    khan3795 is offline Member
    Last Online
    28th March 2019 @ 01:46 PM
    Join Date
    19 Mar 2012
    Location
    Layyah
    Age
    34
    Gender
    Male
    Posts
    997
    Threads
    146
    Credits
    1,366
    Thanked
    44

    Default

    Quote A_Qayoom said: View Post
    Hi,
    school Management System FOR Program Languages Beginner..

    Code Below Code And Paste It
    Your Compiler And Try


    Code:
    /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    //SCHOOL MANAGEMENT PROGRAM
    //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
    //Headers inclusion
    #include <iostream>
    #include <fstream>
    #include <string>
    #include <conio.h>
    #include <windows.h>
    using namespace std;
    //Structure defining
    //For students
    struct student
    {
     string fname;//for student first name
    string lname;//for student last name
    string Registration;//for Registration No number
    string classes;//for class info
    }studentData;//Variable of student type
    //For teachers
    struct teacher
    {
     string fst_name;//first name of teacher
    string lst_name;//last name of teacher
    string qualification;//Qualification of teacher
    string exp;//Experiance of the person
    string pay;//Pay of the Teacher
    string subj;//subject whos he/she teach
    string lec;//Lecture per Week
    string addrs;//Adders of teacher home
    string cel_no;//Phone number
    string blod_grp;//Bool Group
    string serves;//Number of serves in School
    }tech[50];//Variable of teacher type
    ///////////////////////////////////////////////////
    //Main function
    void main()
    {
    int i=0,j;//for processing usage
    char choice;//for getting choice
    string find;//for sorting
    string srch;
    while(1)//outer loop
    {
     system("cls");//Clear screen
    //Level 1-Display process
     cout<<"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\";
    cout<<"\n\n\t\t\tSCHOOL MANAGEMENT PROGRAM\n\n";
    cout<<"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\";
    cout<<"\n\n\t\t\tMAIN SCREEN\n\n";
    cout<<"Enter your choice: "<<endl;
    cout<<"1.Students information"<<endl;
    cout<<"2.Teacher information"<<endl;
    cout<<"3.Exit program"<<endl;
    cin>>choice;
    system("cls");//Clear screen
    switch(choice)//First switch
    {
    case '1': //Student
    {
    while(1)//inner loop-1
    {
    system("cls");//Clear screen
    //Level-2 display
    cout<<"\t\t\tSTUDENTS INFORMATION AND BIO DATA SECTION\n\n\n";
    cout<<"Enter your choice: "<<endl;
    cout<<"1.Create new entry\n";
    cout<<"2.Find and display entry\n";
    cout<<"3.Jump to main\n";
    cin>>choice;
    switch (choice)//Second switch
    {
    case '1'://Insert data
    { ofstream f1("student.txt",ios::app);
    for( i=0;choice!='n';i++)
    {
    if((choice=='y')||(choice=='Y')||(choice=='1'))
    {
     cout<<"Enter First name: ";
    cin>>studentData.fname;
    cout<<"Enter Last name: ";
    cin>>studentData.lname;
    cout<<"Enter Registration number: ";
    cin>>studentData.Registration;
    cout<<"Enter class: ";
    cin>>studentData.classes;
    f1<<studentData.fname<<endl<<studentData.lname<<endl<<studentData.Registration<<endl<<studentData.classes<<endl;
    cout<<"Do you want to enter data: ";
    cout<<"Press Y for Continue and N to Finish:  ";
    cin>>choice;
    }
    }
    f1.close();
    }
    continue;//control back to inner loop -1
    case '2'://Display data
    { ifstream f2("student.txt");
    cout<<"Enter First name to be displayed: ";
    cin>>find;
    cout<<endl;
    int notFound = 0;
    for( j=0;(j<i)||(!f2.eof());j++)
    {
    getline(f2,studentData.fname);
    if(studentData.fname==find)
    {
     notFound = 1;
    cout<<"First Name: "<<studentData.fname<<endl;
    cout<<"Last Name: "<<studentData.lname<<endl;
    getline(f2,studentData.Registration);
    cout<<"Registration No number: "<<studentData.Registration<<endl;
    getline(f2,studentData.classes);
    cout<<"Class: "<<studentData.classes<<endl<<endl;
    }
    }
    if(notFound == 0){
    cout<<"No Record Found"<<endl;
    }
    f2.close();
    cout<<"Press any key two times to proceed";
    getch();//To hold data on screen
    getch();//To hold data on screen
    }
    continue;//control back to inner loop -1
    case '3'://Jump to main
    {
    break;//inner switch breaking
    }
    }
    break;//inner loop-1 breaking
    }
    continue;//Control pass to 1st loop
    }
    case '2'://Teachers biodata
    {
    while(1)//inner loop-2
    {
    system("cls");//Clear screen
    //Level-2 Display process
    cout<<"\t\t\tTEACHERS INFORMATION AND BIODATA SECTION\n\n\n";
    cout<<"Enter your choice: "<<endl;
    cout<<"1.Create new entry\n";
    cout<<"2.Find and display\n";
    cout<<"3.Jump to main\n";
    cin>>choice;
    switch (choice)//Third switch
    {
    case '1'://Insert data
    {
    ofstream t1("teacher.txt",ios::app);
    for(i=0;choice!='n'&& choice!='N';i++)
    {
     if((choice=='y')||(choice=='Y')||(choice=='1'))
    {
    cout<<"Enter First name: ";
    cin>>tech[i].fst_name;
    cout<<"Enter Last name:: ";
    cin>>tech[i].lst_name;
    cout<<"Enter qualification: ";
    cin>>tech[i].qualification;
    cout<<"Enter experiance(year): ";
    cin>>tech[i].exp;
    cout<<"Enter number of year in this School: ";
    cin>>tech[i].serves;
    cout<<"Enter Subject whos teach: ";
    cin>>tech[i].subj;
    cout<<"Enter Lecture(per Week): ";
    cin>>tech[i].lec;
    cout<<"Enter pay: ";
    cin>>tech[i].pay;
    cout<<"Enter Phone Number: ";
    cin>>tech[i].cel_no;
    cout<<"Enter Blood Group: ";
    cin>>tech[i].blod_grp;
    t1<<tech[i].fst_name<<endl<<tech[i].lst_name<<endl
    <<tech[i].qualification<<endl<<tech[i].exp<<endl
    <<tech[i].serves<<endl<<tech[i].subj<<endl<<tech[i].lec
    <<endl<<tech[i].pay<<endl<<tech[i].cel_no<<endl<<tech[i].blod_grp<<endl;
    cout<<"Do you want to enter data: ";
    cin>>choice;
    }//if
    }//for loop
    //for finding through name
    system("cls");
    t1.close();
    }//case 1
    continue;//Control pass to inner loop-2
    case '2'://Display data
    {
    ifstream t2("teacher.txt");
    cout<<"Enter name to be displayed: ";
    cin>>find;
    cout<<endl;
    int notFound = 0;
    for( j=0;((j<i)||(!t2.eof()));j++)
    {
     getline(t2,tech[j].fst_name);
    if(tech[j].fst_name==find)
    {
    notFound = 1;
    cout<<"First name: "<<tech[j].fst_name<<endl;
    getline(t2,tech[j].lst_name);
    cout<<"Last name: "<<tech[j].lst_name<<endl;
    getline(t2,tech[j].qualification);
    cout<<"Qualification: "<<tech[j].qualification<<endl;
    getline(t2,tech[j].exp);
    cout<<"Experience: "<<tech[j].exp<<endl;
    getline(t2,tech[j].serves);
    cout<<" number of year in this School: "<<tech[j].serves<<endl;
    getline(t2,tech[j].subj);
    cout<<"Subject whos teach: "<<tech[j].subj<<endl;
    getline(t2,tech[j].lec);
    cout<<"Enter Lecture(per Week): "<<tech[j].lec<<endl;
    getline(t2,tech[j].pay);
    cout<<"pay: "<<tech[j].pay<<endl;
    getline(t2,tech[j].addrs);
    cout<<"Address: "<<tech[j].addrs<<endl;
    getline(t2,tech[j].cel_no);
    cout<<"Phone Number: "<<tech[j].cel_no<<endl;
    getline(t2,tech[j].blod_grp);
    cout<<"Bool Group: "<<tech[j].blod_grp<<endl;
    }//if
    }//for loop
    t2.close();
    if(notFound == 0){
    cout<<"No Record Found"<<endl;
    }
    cout<<"Press any key two times to proceed";
    getch();//To hold data on screen
    getch();//To hold data on screen
    }//case 2
    continue;//Control pass to inner loop-2
    case '3'://Jump to main
    {
    break;//inner switch
    }//case 3
    }//inner switch
    break;//inner while
    }//inner loop
    continue;//control pass to 1st loop
    }//outer case 2
    case '3':
    {
    break;//outer case 3
    }//outer case 3
    }
    break;//outer loop
    }
    }
    bro mn ny dev mn code paste kia hai ab is ky bad software bny ga khud se jb save kren gy? mn ny save b kia hai, but jb us saved file ko again open krta hun wo as it is jesy mn ny paste kia tha wesy hi open hogya jysy compiler mn paste kia tha. but ab tu mhjy soft hi chahye tha na? please guide

  9. #21
    talhaaltaf872 is offline Junior Member
    Last Online
    3rd November 2018 @ 07:27 PM
    Join Date
    21 Jul 2017
    Gender
    Male
    Posts
    15
    Threads
    0
    Credits
    109
    Thanked
    0

    Default

    Nice keep it up

  10. #22
    Muh_Bilal's Avatar
    Muh_Bilal is offline Senior Member+
    Last Online
    23rd March 2019 @ 10:40 PM
    Join Date
    09 Oct 2014
    Location
    Gujranwala,Pak
    Gender
    Male
    Posts
    321
    Threads
    46
    Credits
    72
    Thanked
    36

    Default

    your program has bug

  11. #23
    zahra098's Avatar
    zahra098 is offline Senior Member+
    Last Online
    22nd August 2019 @ 04:20 PM
    Join Date
    01 Dec 2017
    Age
    32
    Gender
    Male
    Posts
    306
    Threads
    12
    Credits
    1,383
    Thanked
    7

    Default

    nice sharing amazing one keep sharing thanks for all its lovely and amazing one fabulous
    any site link is not allowed in signatures.

Page 2 of 2 FirstFirst 12

Similar Threads

  1. School management Software
    By raoazeem in forum Ask an Expert
    Replies: 14
    Last Post: 28th April 2013, 05:21 PM
  2. Solved NEED school management software
    By ayub_khan in forum Solved Problems (IT)
    Replies: 5
    Last Post: 8th April 2013, 11:55 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •