Introduction To Computer Programming And Numerical Methods 1st Edition Xundong Jia - Downloadable PDF 2025 https://ebookfinal.com/download/introduction-to-computer-programming- and-numerical-methods-1st-edition-xundong-jia/ Visit ebookfinal.com today to download the complete set of ebooks or textbooks
Here are some recommended products that we believe you will be interested in. You can click the link to download. An Introduction to Numerical Analysis for Electrical and Computer Engineers 1st Edition Christopher J. Zarowski https://ebookfinal.com/download/an-introduction-to-numerical-analysis- for-electrical-and-computer-engineers-1st-edition-christopher-j- zarowski/ An Introduction to Numerical Methods A MATLAB Approach Third Edition Guenther https://ebookfinal.com/download/an-introduction-to-numerical-methods- a-matlab-approach-third-edition-guenther/ Essential Numerical Computer Methods Reliable Lab Solutions 1st Edition Michael L. Johnson https://ebookfinal.com/download/essential-numerical-computer-methods- reliable-lab-solutions-1st-edition-michael-l-johnson/ Practical Programming An Introduction to Computer Science Using Python 3 Second Edition Paul Gries https://ebookfinal.com/download/practical-programming-an-introduction- to-computer-science-using-python-3-second-edition-paul-gries/
Computer numerical control machines and computer aided manufacture Second Edition Radhakrishnan https://ebookfinal.com/download/computer-numerical-control-machines- and-computer-aided-manufacture-second-edition-radhakrishnan/ An introduction to computer simulation methods Applications to physical systems 3rd Edition Harvey Gould https://ebookfinal.com/download/an-introduction-to-computer- simulation-methods-applications-to-physical-systems-3rd-edition- harvey-gould/ Numerical Methods in Finance A MATLAB Based Introduction 1st Edition Paolo Brandimarte https://ebookfinal.com/download/numerical-methods-in-finance-a-matlab- based-introduction-1st-edition-paolo-brandimarte/ Introduction to 3 1 Numerical Relativity Miguel Alcubierre https://ebookfinal.com/download/introduction-to-3-1-numerical- relativity-miguel-alcubierre/ Introduction to Computer Music 1st Edition Nick Collins https://ebookfinal.com/download/introduction-to-computer-music-1st- edition-nick-collins/
Introduction To Computer Programming And Numerical Methods 1st Edition Xundong Jia Digital Instant Download Author(s): Xundong Jia, Shu Liu ISBN(s): 9780757538926, 0757538924 Edition: 1 File Details: PDF, 4.68 MB Year: 2007 Language: english
Chapter 1 Xudong Jia & Shu Liu Introduction to Computer Programming & Numerical Methods 1 Chapter 1 Visual Basic.Net Environment Welcome to Introduction to Computer Programming and Numerical Methods. The objective of this chapter is to introduce Microsoft Visual Basic.Net (or VB.Net), the most useful computer programming language. You will learn step-by-step the Integrated Development Environment (IDE) inside VB.Net for creating, running and debugging VB.Net programs. 1.1 Getting Started Assume you have a user account and a password for use of computers in a university or college lab. Now it is the time for you to enter the user account name and the password into a lab computer. [If you have a home computer where VB.Net and Windows XP is installed on it, you can also learn the VB.Net Integrated Development Environment using your home computer.] The procedures described in this chapter apply both your lab and home computers. After you log on to a computer (lab or home), you are in the Windows XP operating system. You are encouraged to change the password to a new one for security reasons. Otherwise, someone may break into your account and delete your files accidentally or with some purposes. The steps to change your password and start VB.Net are as follows: Press Alt+Del+Ctrl keys at the same time and follow the instructions provided in the window dialog to change your password. Click the Start button at the bottom of the Desktop using the left mouse button. Select Programs-> Microsoft Visual Studio .Net 2003 -> Microsoft Visual Studio .Net 2003. You will be in the .Net development environment (see Figure 1-1). It is noted that the Visual Studio .Net 2003 version is used in this book. All the programs listed in this book are tested under this version and saved in the CD at the back of this book. Inside the .Net development environment, you will see three tabs listed in the middle of the environment. These three tabs are Projects, Online Resources, and My Profile. Click the Projects tab and New Project button. Highlight Visual Basic Projects in the Project Type window and Windows Application in the Templates window.
Chapter 1 Xudong Jia & Shu Liu Introduction to Computer Programming & Numerical Methods 2 Specify a name called Lab1 and a location of the VB application to be developed. The location you specify is the place where your VB.Net project data and code is located. Figure 1-1 VB.NET Development Environnent Click OK. Now you are in the Visual Basic.Net Integrated Development Environment (IDE). 1.2 VB.Net Integrated Development Environment The integrated development environment (IDE) is important in helping you create, run and debug VB.Net programs or applications. You can consider VB.Net IDE as Microsoft Word and VB.Net programs as Word documents. A Word document is created in Microsoft Word, while a VB.Net program is created in the VB.Net IDE. The VB.Net IDE consists of a set of Graphical User Interfaces (GUIs) and components (see Figure 1-2). You need to understand this IDE because all VB.Net programs or applications are developed within this environment. Let us look at this environment in detail. On the top of the window, you can see the following components:
Chapter 1 Xudong Jia & Shu Liu Introduction to Computer Programming & Numerical Methods 3 Figure 1-2 VB.Net Integrated Development Environment Title Bar It shows the title of the VB.Net project you are currently working on. The default project title is the project name you have specified when you create a new project. If you would like to change the project name or title to other name, you can change it through Project -> Project Properties. Menu Bar It consists of menus that help you manipulate VB.Net programs in the project. The menus are listed from left to right as File, Edit, View, Project, Build, Debug, Tools, Window, and Help. Tool Bar Two built-in tool bars are provided when you open the VB.Net IDE. You can add more toolbars. The steps to do that are Select Views->Toolbars Check on the names of the toolbars. In addition to the above components, you should be aware of the five windows in the IDE when you are developing a VB.Net project or application. These five windows are as follows: Toolbox window The window is very important in the VB.Net IDE. It contains control templates or components that are available for you to use.
Chapter 1 Xudong Jia & Shu Liu Introduction to Computer Programming & Numerical Methods 4 These components are similar to the engine and transmission in a car. They are well built. Just as people do not need to know how to build an engine or a transmission to assemble a car, you do not need to know how to build a component or a control template in order to develop a VB.Net application. Your job is just to know how to use control templates for a VB.Net program. How to use these control templates? The solution is “drag and drop”. You need to first click on a control template, for example, a label control template and then move the control template into the form window while pressing and holding the mouse. Once you drag and drop an instance of an control template, a control that inherits the behavior of the control template is created. As you can see, the IDE is a VB.Net assembling line that allows you to take components available in the toolbox to make an application. Similar to a car assembling line that allows car builders to select various engines and transmissions to make different cars, the IDE can allow you to access millions of control components that are available through Microsoft VB.Net built-in libraries, third-party software, and user-defined libraries. Form Window The window is a blank window (or form) on which you can place controls. The form and its controls constitute the graphical user interface (GUI) of a VB.Net program. They are the visual part of the program with which the user can interact. Solution Explorer The window contains a Windows Explorer-like tree view of all the customizable forms and general code (modules) that make up a VB.Net application. The Solution Explorer provides you with an organized view of your project and program files associated with the project. A toolbar associated with this window lists a set of commands that allow you to see the graphical user interface (GUI) of your project and to see the code that supports the controls on the GUI. Select the Solution Explorer on the View menu when you cannot find the Solution Explorer in your IDE. Properties Window The properties window displays the properties for a form or a control. Properties describe attributes such as size, color, and font of a control. Each form or control has its own set of properties.
Chapter 1 Xudong Jia & Shu Liu Introduction to Computer Programming & Numerical Methods 5 When you click on a control or the form, the properties will be listed in the properties window. There are two columns in the properties window. The first column lists the property names and the second column shows the current value of the property. The value can be changed at the design phase of the form or through the program code. There are lots of properties associated with controls. You do not need to know all of them but understand how to use primary properties such as name, text, etc. 1.3 A Simple VB.Net Application Creating a simple application is a process that implements a logic used in solving a problem. It involves the steps to create forms (or Graphic User Interfaces) and to write code to support the forms. Each form contains a set of controls “dragged and dropped” from control templates. Each control has a set of properties and a group of events or actions such as click, double-click, mouse-up, and key-press. Each event is supported by a sequence of VB.Net code to tell the computer what to do when an event of a control is trigged or activated. Suppose you have a command button control in the form window. The name of the control is called aCommandButton. You can go to the code window through View - >Code, select the aCommandButton control from the control list, and select the click event from the event list. After the operations, you can see the procedure template as follows: Private Sub ACommandButton_Click(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles _ ACommandButton.Click End Sub Note that there are two arguments inside the parentheses. We will discuss these two arguments later. Now you just understand two arguments are important in this event procedure. When you compare the above procedure to that created by your IDE, you see the above procedure has two “_” letters inserted between the two parentheses. Each “_” letter indicates that the line after the letter is the continuation of its previous line. For example, the first “_” letter indicates that “ByVal e As System.EventArgs) Handles” is considered as part of the first line. With the use of the two “_” letters, the first three lines are considered as one line in VB.Net IDE. Example 1.1 A Simple VB.Net Application
Chapter 1 Xudong Jia & Shu Liu Introduction to Computer Programming & Numerical Methods 6 Type the following code between Private Sub and End Sub. Msgbox “Welcome to VB.Net” The entire code looks like: Private Sub ACommandButton_Click(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles _ ACommandButton.Click Msgbox “Welcome to VB.Net” End Sub Provided that the code has been written for the click event of the aCommandButton control, let us run the project and see what happens. You can find this simple application as Example 1_1 in Chapter 1 of CD. Select Debug -> Start A window that represents the form you just have designed is prompted. Click the command button control and see what the program will do for you. Surprisingly, you will see another window. The window shows the message “Welcome to VB.Net.” This message is created by the VB.Net statement Msgbox “Welcome to VB.Net.” More discussions of VB.Net statements will be provided in later chapters. From the above simple application, we can conclude that the VB.Net IDE takes the following steps to run a VB.Net program: Step 1: Visual Basic.Net monitors the forms and the controls in each form for all the possible events such as mouse movements, clicks, keystrokes and so on. Step 2: When VB.Net detects an event, it searches for a built-in response to the event. If there are not any built-in responses to the event, the VB.Net examines the program to see if an event procedure has been written for that event. If an event procedure is written for that event, VB.Net executes the procedure. VB.Net statements within the procedure will be executed statement by statement from top to bottom. Once all the statements are executed, the program will go back to Step 1. If an event procedure is not written for that event, VB.Net skips this event and waits for the next event and goes back to Step 1.
Chapter 1 Xudong Jia & Shu Liu Introduction to Computer Programming & Numerical Methods 7 1.4 VB.Net Application Development Process A VB.Net application development process involves five major steps, that is, 1) understand the logic needed to solve the problem by a VB.Net program, 2) design form(s) to implement the logic, 3) write program code to support the controls in the form(s), 4) debug the program, and 5) deliver the program to users. Let us use an example to describe the development process. Suppose we need to develop a VB.Net program to solve the following quadratic equation and find two real roots if they exist: Where a ≠ 0 and b ≠ 0 Two logical flows can be developed for the program. These two flows are: Logical Flow #1: A user is prompted a window on which three input boxes for parameters a, b, and c are listed. The user then enters a numerical value in each of these input boxes and clicks a button called Calculate. The program will find two real roots if they exist. The user terminates the execution of the program by clicking on a button called Cancel. We name this logical flow the simple flow. Logical Flow #2: A user is asked to enter a full quadratic function (like 1x^2+2x+1) into an input box. Once the user presses the Enter key, the three parameters (a, b, and c) will be parsed (or extracted) out from the function expression and displayed in the input boxes. The user then clicks a button called Calculate. The program will find two real roots if they exist. The user terminates the execution of the program by clicking on a button called Cancel. We name this logical flow the complex flow. These two logic flows will make the development of a VB.Net application different. Here we only concentrate on the VB.Net implementation of the simple logic and leave the complex logic in later chapters. Example1_2 within Chapter 1 of the CD is the VB.Net application for the simple logic. The development process to implement the simple logic flow involves the following steps: f x ax bx c ( ) = + + = 2 0 Example 1.2 Quadratic Equation VB. Net Application
Chapter 1 Xudong Jia & Shu Liu Introduction to Computer Programming & Numerical Methods 8 1) Form design 2) Program coding 3) Debugging and testing 4) Program packaging and delivery Let us go through these four basic steps: Step 1: Form Design The form design is a process that implements the logic for the program. For the simple logic flow, we need to develop the form as shown in Figure 1-3. Within this form, you can find a form control, five label controls, five text box controls, and two command controls. Figure 1-3 Form Designed for the Simple Logic Flow These controls are defined with the following names: Form Control: SimpleLogic Textbox for a: val_a Textbox for b: val_b Textbox for c: val_c Textbox for root1: root1 Textbox for root2: root2 Calculate button: calculate Cancel button: cancel Label for a: Label1 Label for b: Label2 Val_a Val_b Val_c SimpleLogic Calculate Cancel Root1 Root2
Chapter 1 Xudong Jia & Shu Liu Introduction to Computer Programming & Numerical Methods 9 Label for c: Label3 Label for root1: Label4 Label for root2: label5 These names must follow the VB.Net rules and conventions listed below: 1) Each control must have a unique name that can be no more than 40 characters long. 2) Each control name must start with a letter. The remaining characters can be any letters, numerical characters, or underscores. You cannot have spaces, special symbols, or punctuation characters in a control name. 3) It is a good practice to name a control to reflect the logic of the application. For example, we define Val_a, Val_b, and Val_c to represent the three parameters of a quadratic equation. The procedures to create these controls are as follows: 1) Within the VB.IDE, click the empty form and change its name to be SimpleLogic (see Figure 1-4). Also replace Form1 in the Text property by Simple Logic Application. 2) Highlight the Textbox template within the Toolbox window. Press and hold the cursor and drag the cursor into the Form window. Release the cursor. You will see a textbox control is created (see Figure 1-5). Figure 1-4 Form Window for Example1_2
Chapter 1 Xudong Jia & Shu Liu Introduction to Computer Programming & Numerical Methods 10 Figure 1-5 Create a Textbox Control 3) Note that the name of the textbox control created in 2) is Textbox1. Change it to Val_a. Also Clear the Text property. 4) Follow the same way to create other control names. Note that you do not need to change the label control names since they are not used in the program code. Step 2: Program Coding There are two event procedures to be developed. These two procedures will respond to two click actions (or events), one on the Calculate button and the other on the Cancel button. Public Class quadradic_equation Inherits System.Windows.Forms.Form Windows Form Designer Generated Code Private Sub cancel_Click(ByVal sender As System.Object, _ ByVal e As System.EventArgs) _ Handles cancel.Click End End Sub
Chapter 1 Xudong Jia & Shu Liu Introduction to Computer Programming & Numerical Methods 11 Private Sub calculate_Click(ByVal sender As System.Object, _ ByVal e As System.EventArgs) _ Handles calculate.Click Dim a As Single Dim b As Single Dim c As Single Dim rt1 As Double Dim rt2 As Double Dim chk As Double a = Val(val_a.Text) b = Val(val_b.Text) c = Val(val_c.Text) chk = b ^ 2 - 4 * a * c If chk < 0 Then MsgBox("no real roots exist") Exit Sub Else rt1 = (-b + Math.Sqrt(chk)) / (2 * a) rt2 = (-b - Math.Sqrt(chk)) / (2 * a) End If root1.Text = Str(Rt1) root2.Text = Str(rt2) End Sub End Class As you can see the two procedures all begin with Private Sub and end at the End Sub. Between Private Sub and End Sub, there are various VB.Net statements. We will learn these statements one-by-one in later chapters. You do not need to know these statements right now. Enter the above two procedures into the code window and name the project SimpleLogic. Step 3: Debugging and Testing Debugging and testing a VB.Net application is a tedious task that often involves a systematic way of checking various potential errors in the application. You can read the article entitled “Testing of a Windows-Based Transportation Application: The LRSEdit Experience.” for more information on how to do the testing on Windows-based applications. The article was published on the ITE Journal on the Web, February 1999 and can be found as testing.pdf in the CD. The application developed in step 2 is a simple application. It does not involve a lot of testing efforts. However you need to know tools provided in VB.Net for the debugging and testing of programs. The tools can be accessed through the Debug menu in the VB.Net IDE.
Chapter 1 Xudong Jia & Shu Liu Introduction to Computer Programming & Numerical Methods 12 It is noted that this simple application does have some errors. What happens if a non- numeric value is entered into the Val_a, Val_b or Val_c textbox? When you enter “abc” into the Val_a textbox, the program will be terminated abnormally. In later chapters, we will add more VB.Net statements into this simple application to deal with various “what if” cases. Step 4: Project Packaging and Product Delivery Once the project is tested error free, it is the time to package the project and deliver it as a software product to users. The software product contains not only the executable program but also various documentations that guide users for installation and execution of the product. The professional product, once packaged, will have a setup program that allows users to install the product into any computers, even the ones without VB.Net. After installation, the product can be executed in a window environment. 1.5 Questions Q1. Explore Internet to see how many versions Visual Basic.Net has. Hint: Go to Microsoft web site or use Google search engine. You may see that VB.Net has Learning Version, Professional Version, and Enterprise Version. Q2. What is the difference between Visual Basic and Visual Basic .Net? Q3. Develop a VB.Net application that gets input from the user about the radius of a circle, calculates the diameter, circumference, and area of the circle, and displays the results in three textboxes. The three textboxes should be disabled for user input. A logic flow and the form that implements the flow are required for this problem. Q4. List the five windows inside the VB.Net IDE and describe the functions of each window. Q5. List all the properties for a textbox control, a label control, and a command button control. Q6. What are the steps for the development of a VB.Net Application? Explain each step briefly? Q7. Why do we need the “_” letter in VB.Net code? Hint: See the explanation in this chapter.
Chapter 1 Xudong Jia & Shu Liu Introduction to Computer Programming & Numerical Methods 13 Q8. List three VB.Net rules that should be considered when a control name is defined. Q9. What is the difference between a control template and a control? Q10. What is VB.Net IDE? Q11. Assume you have a command button control named Clear created in the Form window. When you double click on the button, you will see the empty event procedure created in the Code window. Can you write down the first line and last line of the empty procedure without looking at the procedure in the Code window? Q12 List steps required to create a VB.Net project called FirstProject and save the project files into C:temp folder. Q13. Assume you have already created a VB.Net project called SecondProject and saved it in the C:temp folder. How many files are there within the SecondProject folder? What is the file type of each file in the SecondProject folder? Q14. When you find a file in the Windows Explorer whose type is Visual Basic .Net Project, what happens when you click on it? Hint: Assume you create a project called SecondProject in Q13, you find the SecondProject file in the C:tempSecondProject folder whose type is Visual Basic .Net Project. Q15. How many controls are there in Figure 1.3? List these controls and explain their control type. Q16. How to change your password in Windows XP? Q17. What is a GUI?
Chapter 2 Xudong Jia & Shu Liu Introduction to Computer Programming & Numerical Methods 14 Chapter 2 Exploration of a Visual Basic.Net Application We will discuss in this chapter the structure of a typical Visual Basic.Net application and provide you with a simple project that describes the relationships of forms. In addition, we will explore a number of control templates or components that are listed in the VB.Net IDE. 2.1 Structure of a VB.Net Application The Visual Basic.Net IDE organizes a VB.Net application as a solution to a problem. A large VB.Net application may have one or more VB.Net projects in which each project is responsible for a single, well-defined task. Figure 2-1 shows the relationships among a VB.Net application, its solution, and its VB.Net projects. As you can see from Figure 2.1, the Application A has two VB.Net projects and Application B has one VB.Net project. In this book we assume each VB.Net application requires a solution that only contains one VB.Net project. With this assumption, VB.Net application and VB.Net project are used interchangeably in this book. Solution A Solution B Figure 2-1 VB.Net Application, Solution, and VB.Net Projects A VB.Net project consists of one or more forms. Each form, as discussed in Chapter 1, is a graphical user interface (GUI). It has a form file to store controls. Project1 Project 2 Application A Project 1 Application B
Chapter 2 Xudong Jia & Shu Liu Introduction to Computer Programming & Numerical Methods 15 Assume you create a VB.Net application or project called House Orientation that contains three forms House, Room1 and Room2. When you open this project in the VB.Net IDE, you can see the Solution is named as House Orientation in the Solution Explorer window. The Solution Explorer window contains a tree that lists all the form files inside the project House Orientation. It provides access to the form files and manipulates these files visually (see Figure 2.2). This application is saved as Example2_1 in Chapter 2 of CD. Figure 2-2 Three Form Files Listed in the Solution Explorer Window As shown in Figure 2-2, all of the controls on the House form are saved into a form file called House.vb. Similarly, the Room1 and Room2 forms have their corresponding form file called Room1.vb and Room2.vb, respectively. VB is the short name for “Visual Basic”. The executable file of the House Orientation project can be found as HouseOientation.exe in Chapter 2 of the CD. When you run this executable file, the House window as shown in Figure 2-3 will appear. If you click the GoToRoom1 menu, the Room1 window as shown in Figure 2-4 shows up. If you click the BacktoHouse menu of the Room1 window, the House window will appear again. Example 2.1 House Orientation Application
Chapter 2 Xudong Jia & Shu Liu Introduction to Computer Programming & Numerical Methods 16 If you click the GoToRoom2 menu of the House window, you will see the Room2 window as shown in Figure 2-5. When you click the Close menu of the Room2 window, the program terminates normally. Figure 2-3 House Window Figure 2-4 Room1 Window
Chapter 2 Xudong Jia & Shu Liu Introduction to Computer Programming & Numerical Methods 17 Figure 2-5 Room2 Window Figure 2-6 shows the detailed structure of the House Orientation project. Clearly, the project consists of three forms and code modules that support the forms. Each form is internally grouped as a form class. We will discuss the concept of a class in later chapters. Here we just assume a class is equivalent to a form that has a group of controls. Each project has a starting form. If you have several forms in your project, you need to define which form is your starting form. From the starting form, the application can navigate to any other forms. Provided that you are already in the VB.Net IDE environment, the procedure to set up the starting form for the VB.Net project House Orientation is as follows: In the VB.Net IDE, Select Project -> House Orientation Properties. You will see the following window (see Figure 2-7): The Startup Object box is the place where you can specify a form as the start-up form. In the above window, type House in the Start Object box to specify the House form is the start-up form.
Chapter 2 Xudong Jia & Shu Liu Introduction to Computer Programming & Numerical Methods 18 Figure 2-6 Structure of the House Orientation Project Figure 2-7 Project Properties Window for Specifying the Start-up Form 2.2 Developing the House Orientation Application In the previous section we describe the House Orientation executable application. Now you need to develop this application from scratch. The development of this application involves four primary steps: 1) form design, 2) program coding, 3) debugging and testing and 4) program packaging and delivery. Room1 Class House Class Room2 Class Starting Form Pointer
Chapter 2 Xudong Jia & Shu Liu Introduction to Computer Programming & Numerical Methods 19 Before you develop this application, you need to get three image files from the CD. The three files are called house.jpeg, room1.jpeg, and room2.jpeg. You have to copy these files into your working folder or the folder where the House Orientation project is located. With the image files available, let us go through the below steps for this application. 2.2.1 Form Design Step 1: House Form Design First, follow the same steps as used to create a VB.Net project called Example1_2 in Chapter 1. You name the new project as House Orientation and save all the files associated with the project in your working folder (or a folder you like to store your House Orientation project files.) When you are in the VB.Net IDE, note that the empty form has a default name Form1. Change the value of the Name property to House. Now your form is named House. Figure 2-8 shows the layout of the House form. As you can see, the form has a total of ten controls: one Form control, one PictureBox control, five Label controls that represent lines, and three Menu Item controls derived from the MainMenu control template. As the label controls just show where the rooms are, we do not need to worry about their properties. The rest of controls should be created with the properties listed in Table 2-1. a) Create Menu Items In order to create the GoToRoom1, GoToRoom2, and Close1 menu items, you need to do the following: 1) Highlight the MainMenu in the Toolbox window. 2) Hold and Drag the MainMenu template into the House form 3) Change the text of the first menu item to be Go To Room1 and the name of the control to be GoToRoom1. Note that the name of the control is one word and no space is inserted between “Go”, “To” and “Room1”. Do the same way to get GoToRoom2 and Close1 controls. It is noted that Close is a reserved word in VB.Net. We cannot use it to name a control. Instead we use Close1 to name a menu item for the project.
Chapter 2 Xudong Jia & Shu Liu Introduction to Computer Programming & Numerical Methods 20 Form 2-8 House Form Table 2-1 Control Name Table for the House Form Control Name: GoToRoom1 Control Name: House Control Type: Menu Item from MainMenu Control Type: Form Text: Go to Room1 Text: House Control Name: GoToRoom2 Control Name: PictureBox1 Control Type: Menu Item from MainMenu Control Type: PictureBox Text: Go to Room2 Image: House.jpeg Control Name: Close1 Control Type: Menu Item from MainMenu Text: Close GoToRoom1 GoToRoom2 Close1 House PictureBox1
Another Random Scribd Document with Unrelated Content
ranno, &' durò ja fila moglicrc, lioras'amddcro pò la fua morte lafiiafctta.nma iipC del popolo finoaldid'hog fuo e di rubbc)accorrcric,pidi lontano, pcr^ nazzaipoucri re, ne dominar IO auolo molto micino alla detta che già (il difcc Ito lierctico, dC dell'abbrcuia^ Africani, e diochi. fono ncU •liorgi.vcgra nella corta del L:a cauallo.gli lamifchia con o. fono molto pcnfochcnoii quaranta mi> illaibuonpoc 'orthogallcfì, quelb città, è ctllo,nelqualc mura, (attedi 10 fra gli Imon hanno autI egli trouato J alo fette anni, angiunti deichi, domelhtà.peralloga nelle cale de •arueio altre)rina,&: dello a i pafcoli loloro camere, ben fatto,chc e la maggior I prima parte , & cltendclì li Sus.c larga marediveraTefemaet ichabitafo« fonui D E L LA F R I C A llfonuimoItevilIe.Vcafali.glihabitatoriviuonodelIelorc-.Dredioru.oA'^' „ , n '^ vfano portar canucia.ne cofa fatta con a^o DerciochVfr,^? ' ''[>''°'^ '^' nicllc.ncl vcflire nò portanoipanni,ntornolaIoroperfonaS.XS^^^^^^^^^^^^^ cofhnìKdiportareagliorecchirerteaneiKSdl™^^^^ ne porta quattro per ciafcuna orecchia . VVano anchn? T, "'°''f.S,''?"^-^ "'«^ ^«^ " ''a, che che peiano vna onc.a,con lequali attaccano r^?,ion^^^^^^^^^ lcmani,8^nellegan,bealcumcercl"SurdC^^^^^ perc.ocheIepopolari,5^pot,eregIvE^^^^^^^^^^^ V f>''a.ura&rnongI.fer.a;;oA'io!^ocotai"niX^^ fonmmoIi,lepacapnoli.etcerui,maqtrellegent. rgS^^^^ ro,a^ alberi,main„ìamentc noci.qucft popoli per la mS S n^» ? ""' "] "1°^'" """^^^ no di vn luoco in vn'altro. le loro armi fono cotah t Ìpp S f Ì °"° come gli ArabiA' va. c,ua.hannolafch,enagroira,comeèqurdv3fc^^^^^ .or^.dettoalS.fp..pe.nla|U^^^ Qiiefìo monte è fìmilmentevna narrarli Art, .«„«/• . . . B vcWoleuamec.rcaacinqtian m"gS.„oa mo^^^^^^ uidebuonapartcdiHeadaSusA^icIfrcoSjd naS i a^^ I)ahtato,madagentebarberacdaanederiuato ilnomfHdhH^r,, : *' i 'I
JDatteiiclie nò ù'.iiano tutto TauQO. ' n mienc. Ambiaca ne. Zucchero negro . Cordouan I Mano chini. _ Me[]a città, MclTa fono tre pfccoIcc.tt3,IVnav,dna all'altra quali vnni.gI,o,cdifi'catc dacliafìtfcfi.' Afi-,' gm accofio la .ma del mare oceano, & fotto la punta,nella quale ha prSoVi n oS ec fono .nurate d. p.etre crude, palli fra le dette terr.couole .1 gran HunieSiVenebate varca' f quelto fiume a 8ua.=o.ncl verno nò vi 1. può palTarc A" hanno cer^baSt^e he non ^^^^^^^^ atte fé .m per I. fatto tragetto.l I, to,dcuc fono polle qlle p.cdole dtti,rvn bSò faìuat^o iJ^^ di palme,.k,.iale e la loro poiTcITÌone. vero è che i dat cri che vi nafcnn,. nn^n f? *'» "«'«^o=ma percoche non durano per tutto Faiino . gli hab'tatSo tu7t"aIrS^^^^^^^^ "'^ '° ^°"'' no,auando crefce ,1 fiume.ilche e nel iettLbreS né .W d Anni? 1 ' ""T"" '' 1"''*^' g.oA- fe,lfiamefc.emaircnelVnodu erdueme n^ no poche beft.e.d.fuor.- fu la marina è vn temp.oTqu'rk ter^^no cS .n ^.^^'^^ ? '"^• cono molti h.ftona.che di quello tempio vfamprtScS^^ to.d.conoanchora,chealIhira,chelon%rofetafuSS^^^^^ terreno di Mc(ra.Hrau,celli del detto tempio fonotur^ XXd baìen.'&^r.n T ° °P? Ì marcmoltegroirebalenegettanelluomo^tejequahconlatg^^^^^^^^ ^^^ ma eh elle hunncporgono terrore à chi le vede.d.ceua ,1 volgo che oenfbalcna ci e mSr.n to il tempio,mi:ore per la v.rtu data da Iddio à quel tcmnio io non. P^., S . Y ^r T vedendoallagiorn/aapparnc,ualdKbalenaLrtaZn̰f^^^^^^ fo.dipoiragionandontconvngiudeo.midilTcchcnoneradTmnrnW I r . f . ^'^ requandu?miglud.lcollofonoaIcun fcogS^^^^ tohn,uouonolebalened.iuocomluoco,'d'^^uelladie?a"b^^^ fcogli.di facilec macerata &f muorli . per ilche pofc/a il mire I , nctn H W 1 !i i ^ ^" qudbmiparueairaim,gl.orrag,onedic,udla'Ìdv"4rFu fo c^^^^^^^^^ h citta . & per ilìrada trouammo apunio vna colta dvni di dette Irilrnr n,T, ,n fi À fotto laquale.con,e per vna porta /u camelli pallando , .rommo d^^^^^^^^^^^^^ aggiugnemmo con la telia.a- d.cdi che fono'preflo a cento ^ e que la cóft m oud luT' h ene.i^ ferbai, per cofa marauigl.ofa . nelu. pia v.c.nial maro ruouKrVe P^eh 1 3 e ne perlctt.l umo ilquale e venduto a mereatanu Ì
Ponhogallch^o a qud d R^'Ì le D è^zo eh e quali meno dVn ducato per oncia.molti dicono die I VlW^n-. . , ' ." V^ per vi ic prezzo cane li crea, ahn aflermano diere lo f icrco d 1 ^S ,' X^^^^ --"f^^ genual.ddmafd.o,quandocvuolevrarcconlafe;nnaAÌacq^^^^^^^^^ —, .. , Teijcut città c{iSus, leneutcvnaanticacittàedificatadac!iAfricaniinvnaMlifnr«n„.-,« ^j- •/- . tiJVna parte d.rcollo dall altra quali vnfmghS^^^ quattromila fuochi. palTa accanto di lei il fiume Sroudocrr^n lf-T"^'}'^ '""° to,do, gio cV d altri grani S.' Icgumi.nafceui and Sn rnn nnnn?> "^^''°"f »"'^"^° d' fornicn. nobencuocere,nepurgare,pek.lde toS S^^^ mole, mercatanti diFcS, di Marocco , 6^ dal nacfe d' néa?^?n ' q^f'^^ citta vengono quant.ta d. datteri, quiui^ltra mone^anl fi Se iXoc^^^^^^^^ genti nel ipendere alcuni pannicdliapprenatiV^dùcato IvL vTfunro^^^ '"'' ^"^''S^"^''^ poco fogl.ono portar le donne per loro ornamento ?n?, 1:. truoua poco argcto, & quel ferro del^elo crea dVna onc.a.n ouanfi pod "S 'ecc t?i. -f 1 '^"'""" r'f "^'^^''" ^'^^' ''' non VI nalccma portauifi lol-o da alcum n on d Kcco i^^ ^.^^«^"' * ^^'"^ canta.o,chccceniocinquantal.bbreltal.ane ilorodurr,f nf T . ^^ valutano lette e vn terzo per vna onc a So: bncia e Sn^f ^^^^^^^^^^ ^'"T, T^T ^'"""' c.otto.d7ìlad.amanoR^thel.centorethcl°vnc^^^^^^^^^^ nuverromezzog.o;noeterXd"stS p^^^^^^ Arab,.nel mezzo della detta citta e vn bello & gnn ten pib ffl tf^tZ f '^ ^'^'"' noinpacc..c.alcunad^.lct^-::^^~^^ nel [ B A ncln Hea, pann drc/c none più h; lono^ maig! tornai tacittj piccio Tal lontan trcnta( ciuile,{ ffanza brii-ata J2 torivd fuccdìì ione pa laggi fv Io della Ja via ri( Garti prelTo o in qua, fi ucrquef pitanog aflcdiòd che lo lai m atener ualli.ilqu &"altemj nitiAda C Tedfii lontana d venti.cpa guado,&: dilei,iqua atta pallài tri.v'èvnt nella leggj gliAi-abì^ nellaqualc Tagauc fa di pietre Ver/o mcz: Sus.neline partii il p foccorfogli qud.'a.nclc
15 H t L' A F R i gli antichi Afriil monte Atlante, nella fiate varcattc,chcnon fono anòfaluatico.ma no molto buoni, l^uorano il terreccolgono il niag ^ mo vn folo.hanimadiuotionc.di iizrò Maumctvomitò fopra il ttì mtc auicne,clic1 on la brutta fori.chepaiìààcandiito , fenon clic iiciorcftarfofpc rciochc fra lima B j tornare è turba- in vn di quegli le la vcggiamo, id tempo del Se , cli'crafiioridd i foggia di arco, alto, clic non vi la in quel luogo tei pLìcfi ambraservile prezzo )ndc oliò ambra illa dai membri liuifa in tre parlano, fo in tutto imo di fornicn/ ma non lo fan- p i città vengono ilmcntc buona »c anche quelle argcto, acquei certi pezzi di
secondaparte no aMjdottj a I oniburto,c a Gualata tcrrcdcll/ iìcgru u.n d. are due volte la fetcmana.,! loro hab/to è honefto,& lefemme bcliaiìme & «"a i^Snó molti hMomu1i^run^.quah^ononat.•diblancIM•£^d.•ner^qum.•nonédl■t erm.^^^^^^ regna cb. ba m.gg.or poteremo fu, m detta c/ttà tred.ci g.omi coi caSS stTS^ per comperar certe «fcbiauc per lo detto principe rannof 9 1 p. pnncipe tJanilnlùmomc, noie paricgiaiic, Icquali vfano di portarc.in qucfio mcmic nnn natr C,™,™, — * I |acopia&„Kllc.,mu,,oil,c„,p„'iciran,,o^i„c„rZ8rSardS^^^^ ^ „ , sito dclkreo^ione ài Marocco, tri . , ^ . , HZ'"^»f''* (^ittàdelLifnbra(Iettare:^,o>7e, tlgiumuba e vna citta picciola nel piano.appreilò vn fiume detto SrOV,,^ ^.r.^a a 1 I ia;;d,gran'd,/.t:Siri,';^^^^^^^^^^^^ a... «""P"'C.lcorpo,&caua, „cfuorMccrniurcr£S?a„or^f^^^ s,nco„„„aòarmab,,are,mafola„,cnK„cUccc feSe ^n^^^^^^^^^^ Sci;i;ra£itT^x:K^^^^^ ^'■''fx.xf* Dd^Htnuhé Q «crii fium dcll'ii niilc forte: . AjJai molte fonol giani, giardi aliai g intenerente,! alchini Imir B taverfi te alla r laquale fonolji quiuin; tiirima. ra,chcl£ cÌ2no a 1 quiuiall Tumc ci migli; ti.hanno molelha dodici, 0( uor di coi Arabi,iqi ciole&:di C tomodo,< quelta tcri licdiPor Qyeftaè ncntc.i4.n daitcri,&: l fiume alle , mangiano gioronolu Maroc fia in vna j Giufeppc fi gente ni qu A|;'"et,ilc fulabricatai rcnoj&iquai quafch'vno ( fa, ftttcdic
iella città, vcngo> D et il mercato vfaSfgratfofe.fono iatodominio,ma lei Serif principe verfolcuantecfr uomini valentie. allo, co certe pic^ ma orgio in mo| mar poco il fi ederif tentò più voi • i l lanellarcgi'ondi tatori fono imoire guerra pera 0 vincitori, go- *. D E I r A F R I e A QlTcaacittncvnaqranfortez^atr'^''''^'''- "'^ «erli altri montKfouo la dcuaoneiana^^^^^ fiume di romorc. porci ,dc
SECONDA PARTE appellato Tcnfift . è fornita di tempi, dicollcgi.di ftufc,&: d'hoiìcnc, fecondo ilcofìumc d'Afri- D ca.a.' Ji qucfli tempi alcuni furono edihcati da i Re di Lontuiia,ct altri da i loro fucccirori,cioé da i Re di Lliniiachidin.ncI mezzo della città ce n'è vno veramente belliflìmo, edificato da Mali fi^ irliuoio di Gmfcppc primo Jic di Marocco, &: chiamaii il tempio dHaliben Giufeppc : ma'vi» lucceiior nel detto ietvio,il cui nome fu Abdiil Mumcn,fcce disfare &.' rifare il detto tempio non per altra ca.£;ionc,chc per kuarne i primi titoli di Hali,&: poncrui il fuo. tuttauia la fatica di coilui ^11 Mana.r fu polb indariio,perciochc le genti ancliora hanno in bocca l'antico titolo . Hauui etiandio xoMo. qi"*' vicino alla rocca vn altro tempio,ilqualc fece fare detto Habdul Mumcn,cliefu il fecondo, che per ribellione fuccedettc nel regno,^: dipoi il fuo nipote.xl Manfor l'accrebbe cinquata brac eia da ogni lato,ornandolo di molte colonne,lcquali fé conduccre di Spagna , dC fece tar fottodi elio vna cilìerna in volto tanto grandcquanto il tempio, &: tutte le coperte del tempio volle clic follerò di piombo con certi canaletti ne gli orli , fatti in guifa,clic tutta la pioggia che cadeua fu'l tcmpio,correndo per quei canaletti era riceuuta dalla cif ierna.fcce anchora edif. :c vna torre di pietre laiiorate OC grolTjrimCjCome e il Colifeo di Roma, il circuito di qucrta torrt, contiene ccn to braccia di Tholcana,&.' è più alta della torre degli Afcnclli da Bologna, la fcala, per cui s'afcca dee piana dC larga noue paimc.la grolfczza del muro di fuori dieci, &■ il maffo della torrec proffo cinque, ionui dentro lette ibnre agiate od molto belle, vna fopra l'altra , 5C per Tafcender di tutta la Icala li vede grandillimo lumc,percioche vi ha dal bado all'alto finenre bclliirimc 8C fatte con grande ingcgno,lequali fono più larghe di dentro,clic di fuori . come fi giunge alla fommi- £ ta della torrc,truouali vn'altra picciola torricclla,la cui cima, ccome vna guglia , dC cinge venticinque braccia,quafi tanio,quanto il maffo delia toncè alta come due gran lancic , SC fatta in tre k
Icoftumcd'Afn'-D fuccclì'ori,cioèda lifìcatodaHaIi,hGiiifcppc:mava detto tempio non ab fatica di coftui Hauui ctiandio ,chc fu li fecondo, )bccinquruabrac &^feccrarfottodi tempio volle che iachc cadeua fui ; .e viia torre dì Trt, contiene cen ila,pcrcuis'afccn delia torre e grof■ pcrrafccndcrdi bclliirimcà: fatte jnjreallafommi- £ , 5i cinge venti' rie, &: fatta in tre guglia e vno (pie 'quello difetto è bpva.cornclhuo l'alLuio dvnana kieiluuura , non intagnadi Azi^ ianuiCjClie fono tro non e uiolro ura, come molti pii,chc fi truouiji farui dentro le iH'habitationi, di. idarcj per cagiotto tempio fòleprefcnte non fé . il tcrrcn vacuo »oflbno tener di ^ adire, chequecntofci anni,che ;noric. Dette ventiquattro di aham fuo figli) nato &:accreAbraham , per^ « giornata , il Re | ittà, di maniera, nmino accanto icli non ii conti Mumen,clie afledio di Alale cgh' pcructiteua.MaHabinonvolea per to di notte a caìj&rfconofciutOjdrizzò D E L LA F R I e A A tOjdrizzòncaiialfoavnaruDcalri'mnn ^j,«^- j '^ iTtialii.furnnntrAiiirtr-,.,^ r-_ i ^ . - ..'"F'J"lti'runo, tutti rirninrf. u S'ande e qudlo di didanari nebifogni^mafempre^loroauuen K^q S^ ftrett. a lafciaruegl.;in tanto,che tennero a mara^iuno^^^^ ^" ''n"3le furano co quef^epomafurono iui meirefottoataleinfluffol I^^^^^^ qud luogo rimofre.aggiunge anchora,che cohdt vKó^ caperilqualccofirinlealcunifpiritiafiarliDeroe'tuL^^^^^^^^^ di Marocco,per difenderfi da i&hrift.anX òS cT'' ''"J^"' "°"^° '' ^lafuperfiitioneddpopolaz-o trarI^d.■H,^„.^w.l ' , ''' ""t^/c'ierncndoli della credila qudleefjl.Iamaglofnob'^FtS rtt^^^^^^^^^ poicheilmaritofeceedificar qudtempiopeH fafS an^ qualdiemcmoriadifefkiTa.vnodeipropionWr da Re,quandorandòan,arto,&:fattSar étren K^^ laS^apparentelacima. cetiandionXdett. S^^^^^^^^^ SoaaegnatoalloltudioAricettodiduei'r^hS n.S .^ ^ladouefileggeuanetempiantichiAogS^^^^^ C &: ,1 vdhre vna volta lanno.^ i dottori per loro filano .?.!., ^ ' ° '°"'8'° ' '^^"'^"^ '^ ^P^re, to,fecondo la qualità delle Icttioni^cheefTì e fno ob 4^^ ^'" cento ducati,^ dii dugen dcttocollegio,chinoncramoltobeneamn aefLto Si^^^W^^^^^^ beli. mofaichi,&: doue non ha mofaicht
fSmuS dKZ' l^"!,^^'^""^'»' '"°go è ornato di inuctriate, tagliate in fogliami fottili . à: altri°auod ù^^^ ^' ''"^ P'*""'^ di terra cotta fiIegge,&liportichico^perti.6^tut toSt^^^^^^^ E^zuleia come fi vfa anchora nella SpagnaTmc3^^^^^ ^^ ^'"'^«"ano «orata A fatta di bianchifsimi marmi mSSw-- ^ a ?''°^ ^ "^"^ ^°"''"' bdl.fsima, laododire,grannumerodifcholar/ SgS rant.fs.n,oIegifìa,ilqualepocointendedWaST^ '^'"J'J"'.'^*^"^ Marocco , hebbi domdlichezza con vn S ce Sr'r^nT° ^' ''-''' H''}''' ' '° l"'-""^- ^«' '" nni^orie Africane, ma pocoperitoneTewJrC^^^ fece.nquarantaanni,chefunotaio,& auSdelRr^H^ ^^''° P^f ^' P''^"'^^ ^'>'cgli bl«a,miparucrohuominidigroab,neepnon^rfpL^ ftoSignoreincampagnadoudoroSSv^^^^^^^^^^^ fonoanchorandIadettarocca,vndidodXnL^l^ r V"^^^^^^ fattied.hcardalManfore.nel pSche S^^^^^^^^ °'-"^"' '^"'^1' ^"^"ono «•> .qualifoIeuanocfrercinqueccmr^qfS ;iV^^^^^^^^ S"ore,quandoiìnioueuada vnluogo al alVroVneimbt'^n ''"'''"'"''' ^'"i^P'"^ ^'"^"^' ^'«'■' V/aLei P''^^'^°^
Il i} •'!;'.: SECONDA PARTE trctnm.- 3xckriA' vn poco auant.' al paIaz=o,c lalbcrgo dV canccll.cr.;^' fccrcrarulniialc nella Im D sua loro e cl..maia la c.fa d . ncsot.j.I terrò cdctto .1 palazzo Jclla tutoria, ik .uSof te e uano arni, e. le nionu.on. della cma.d e vn'altro v,, pico piii oltre al detto. , elquaE oyu uà Il nuìcl tro d. iUh del l.onore, &' viono allui fono tre i L.lle latte a voIte,,n c/afcu na I eS pof fonoca;m- apatamaKedapntocauall,.ronu.duealtrc(blle,.naperl.nu,^^ to nu,l,,.A 1 ..Itra per le cat.alle S^ mule che caualcaua .1 Rcapprello alle dette i al er'l due cn na.hut,pureavolt.a:„uiue(olaKnel/ola,od.gu,,teneuan 2o pe. I. e tiall..neli altro r.poneuano .1 tornìento,&: e tale,chc cape m vno ihìL p.u d. tré a nn' la rug,^,,a' ;Ut, et at. nell'altro.dottc fono fatti certi huchi a polla fopra ,1 vetto:&: eu .i vn ab ma na d. p,etra,aMe beli.e vanno car.chc hno fopra .1 te.to,& iui li mJfura , &: poi Ina I d n ro pej canato d mettono (enra fatica.piu oltre anchora ce vn bel palazzo ilouale cri I ìfclnioh d. fi Sl.uohdelReA'de.;lultridellaiuafan,iolK..inquenocvtì!u,e|.,irm^^^^^^ ^^^^ concerncorrK!orMntorno,f^c6lKll,conr,n,mmoa^^^^^^^^^^ oro.c e vn alno palazzo,nelquaIe d.moraua linuln,ente la gua, dia d. e rti armati vn ho mol. to grande doue .1 ignore daua venerale vd.enza,&: vnaltro doue tcneua pIì ambali^u dór° qut do gì. parlauan gì. kcretan, . ^'e ne vn altro fatto per albergo delle moglidel Re dam^ elleS . eh.aue . vn alno apprel o cjael to dutifo in molte piarti , per h figliuoli >t detto , e o paCelh . cKeeranoalquant,grandcttqMud.fcofto verfbil.mtrodellaro^^ ^licr.lpoS;:d aca™a ^ e vn bell.fs.mo 5^ gradiamo g.ardino,nclquaIe ha og.ìi forte d'alberi &: di Bori. &: etZK « a tutta d. marmo quadra,^: profonda (ette palme.nel cui mezz - i vna colina d,e ofilne vn icone pur duìiarmo fatto alllt. maelìreuolnientc, dalla bocca delqitale efee^-ln ^ aa,ua,che h nuerfc.a nella log^gnA' per ogni qttadro della detta bg.wfewo^^^^^^^^ ^"^"'^SShemvnnSnlcdiAf ,o ci, „uc- ^•^'^""' ' ^' ,*^ '" vn monte di Atlante,difcolto da Marocco centocinquanta m.olia . annrcHo del ch,c. verde K|ard.no v e certo fl^raglio, nelquale I. rinch.udeuano molte faluatiche herr a m
Sic et ...onde. PYHMcon,cTruK'capr,ol..evero,che.leo.aihauetunofeparatafbnradalSa T^^^^ linl,oraquJluogocdeuo,latanzad-.Ieoni. qudlepod.eidimqucd. ve .o | 4" o„;^ :ipe Wari(or. foi.]Uflln ni (]ual Ralis medico de dico I Tuo '" >^ ' . , ' ; '"'^"'"'" ^'-"tTc i iion,iono i nidi loro . fu certo audio M infor vn gran prmc.pe perc.odìe l.gnoregg.aua da MelTa per inhno a Tripol. d. Barbma chcTla nar ep.ut.ob,ledAfr.ca.&nonl.potcafornirqudtovia^^^^^^^^ ..,e..co ... ^pl^^f ^ •" qumd.c. l.gnoregg,aua etiand.0 nella Europa, tutta quella parte d^H H ^^.n det. F d.co .luoi taCjranata,&checda rariHafinone aprouinciadiAraaon &'vn, N,,.n. . ^' r>^a , hbn. fanchorad.Portogano.nefolan.ntefebbel.^rrdS^^^^^^ dd Mumen^Huopadre Gmfeppe,eIuilacobeIManfor,&ft,oftgl u^ che fu rotto d^ vinto nel regno d. Valenza,&: furon mortide fuof, à ga te da catello sTd^V fenantam.lahuonuni,egIdaIu6lafuaperfonaAtoniomaiMaro;coSc^^^^ ^^^^ vmor,a prdo ammo feguttarono Timprefì, anello (patio di tre.ua ann rmipe o "ò V^ Icnra,Uenia, Alleate Murzia,lanuouaCarthacine Cordona Siiiicrlh [..„«/ vi J^ lbmemorab,lrotta5coccilione,,ncomi,Ki6àd?c5;5arh^^^^^^ metto,la(cio dieci hgl.uoli huomini fatti,iquai tutti voleuano viurnarli^ Iwn^ ^M ? ne,che I. vccidellero tra loro A^ che app^efTo il popoSr^ que contorni , (. (olleuó etiandio il popolo di Habduluad S^ recano T^^^^^^^ m ' ^ '" re di Tunis S^ faceua Re chi gli pareua^cotal ftne hebb rmW^Io dTj^ f^ ° Ì''''% A ; cani Mu dini mot crea vno. Ncg allad rocce tjua,^ Jiain inors luron dacer trouai t]tiale B rocco, che pei ilnalci uerfa f pi, voi r vn ceri: rono a ■ 40 forfè me con Hani rocco cii mino pe glii.dal I da Marc «imnici ( Taallign C liberale a gnorc.or trecento ( porte dell iàvnagr^ aie perche di cz A' molti cau; tadi(chiO| glie del lig gouernaie Pofciac mente, hot fc,que(ioc «Hea.èm ièmiiuorz ■ciuilitàaicu guifa diedi re &: toccar*
l'Iqiialc nella fin D iiu|udtolitcnc ualo allog^iaua laddlcqualipof 'vicapcnoccne erano due gra :llo di fopra,l'or più di créta niiVlui vn. (cala pia ttali dentro per aprono, Sxl coli lafcliuoladìfv miin quadro, no al d'intorno ìmoazurro QC .vn'altromol^ ) a fa ad ori, qua^ :, damigelle 8^ cioi per quelli, « : illacampairna, V euui vna log rhefofticncvn ?i'abondeuole rdo di marmo oin altroluoi.apprdlo del icgirafcjcletri animali. 8^ iioionorima^ i del Manfor» )uc albergano ;o di colomba, :etto delle l'm^ , ff in altra di 0 Manfor vn jdicclapar^ irni, de per la lifpagna det' ] :di Cartiglia, 3 auolo Ab^ ietto Enaiir, allo de da pie, riliianiperla )erorno Va^ Jcda.pcrquc 11 orto Mau^ lidie fu cagio di Fez, Scili leuò il rctto> enne dipoi il n.vltimanici Arabi, qualonti. quan> ibnu AbduI ni delle diro «9 ( Agtn«crcrMdtta*,vicinaaMarorr^ *^"'"'' ""*• cam,iu la colla dVn mo.ne,pur d, queSdTA'tbm." r'^"'',?'' 7«''^' «•'^'^^«=' da gliantid,i Afr/ AI»adi.du,fumoltociu,le,&d,Jm^^^^^^^^^^ B «;mopcrlacoltaddm5tc.&:ilf.unieSXm^ giM.dal hume imo alla città e vna cai -paeS^bo£m^ , l'° ^' Han.mmci, cirVa a quindid rni da M arof co fino al fiume, poir.ede d I ,S d^M '^i^'-''"'"^'''^ ' '' c^^ ti.mmdcrotto.ldonun.o'Lfig^^^^^^^^ raall.gnordiiVlaroccoa:agli!rab.W Cl.beralea^animofo,neliaucuafcdtàanSnSL / T°'"P°P^ gnorconde rubito gli conuenne -noCf^no deZ ' ? """''^^° ^" ^"° ^'° ' ^ «^«0 «! .recenK.caualli leggieri de Clmftan. PorSS^^^ porte ddla cuta.6c egl* con cento cauall. Ì Si aS^^ '°''"i^ P^r mrmo alle favnagranquant.tadxdcmArabi,&deCWaninL^^^^ di czA' dimando a coUui certo tributo i!n„^£ . i r ".""«^«^"'o venti . venne dipoi il Re rioIt,cauaiI.^balelirteri..ir,gno3^^ tad. fL-iioppo nel pcno^ft" tolfo cadde mo'^Sl e t Sn ' ^k"^'^''^' '''^'^' ^'^'^^ P^'' ' gl.eddlignorecondufl-emolfi«ob,Iip„JnSr^^^^^^^^^^^ SouernaiwWidiparnndl'anno.pz./^ "^"''''"'"''"r"3n°ddRe.,lqualclarciatou"vS Porciad,edmol,abbiamoddIareg/onSwnf . , mente bora orilinatamcnte feguend^Sndvr' 'T'^'' ''^^ fe,que(ìo e vn nionic delqualedi vSfo t "emc f n ?"" f" ^^"^"^'•^ P^^ incominciare da S
raHea.cmo/tohabuaro,k:nellaSSb^^^^^^^^^^ iJrm.naorzo,iiquaIevinarcemmoltacopTarom^^^^^^^^
^n SECONDA PART E i r; % ■i' 1 li duicnto come vna nracaa di cucina, fanti firrno quell. che Io volfono siovzo a br canìho d vn («o cuuallo.chc potcua valer d.cci fcud. per vna mu fpada che non vT cua.nfcxvno5^nu'=.o &:c,ucaoproccde.perc.ochenon vanno m . ' t li'.'J^^'V"^ '''"1'',^" Icltradcperche que. luo^h, fono per lo p.u tenutrd" lUni m mal STciidaloa^^^^^^ Semede monte» Srf^lf V n;òtc incommc/a dacontìn. del fopradetto,a^ fono frparat.' iVno dall'altro dal fiume SeLaua A clitndcli yerfo Icuantc circa a venti ni.^I.a.i fuoi hal^ratori fono vii roz ° ^ nZ fcnon al e volte d. qualche pairag^icro.che paia loro che fia pcrfona intcndenl^b a iX ? vnà nottefuldettomontc,mcafadun reIi«iofotra loromoItoLorato^^^^^^^^^^ del cibo che eli . mang,ano,c.oc farina dor.?io téperata con acqua bollènte inlieme con cm^"^ nedtbeccoc Kmoltrauaalladure=zadihauerepiudifettea2n,deta S re^ ne dormircfu la nuda terra onde leuatomi la mattina per tempo, &'penfandonidW^rii Con,e quello che non fapeua i v/anza loro, mi fu fatto dm torno cerchio da più d°dna .?n a ner d I htiSMo loro nfpoh, che non fapeua niente de fatti loro.a!ll,ora vennero innàri ^e r^ "i^Shuo rìm.,c.oc tre d i pm riputati tra loro,dequali vno d.lic.sent.riiuomo voi forfè ntn oc^e" coftu B ' ine noltro.nol tro coitume c.che niun foreitiero fi parta da noi, per mfino ci -eZò ha bia n°ol ' to bene afcoltate &: decife le noUre caufe . ne appena hebbe fornite quX paSX m Wdd ef ' fcrIeuatoilcauaIIo.or.dee8l.m.fufor^ pcrilciboAliper.ldorm.re:HaoclK-oltreimolti.ntriciìMìòerachidilorofS^ ^Iapa^rola:&:conuennemiellereparimentea'giud.ccc',;otaio.incapo^ che cir. mi forebbono la feguentc mattina vn prefcntc honorato & nobile . peScSe narnc mille anni la notte,p.nfando fra me IfelFo d. riceuere qualche buona qu nt t?d.^^^^^^^^^^^^ onS parue la lucerli fecero federe fotto il portico d Vn lori tempio. & fatw ct?t o n ne nc^^^^^^^^^ ciocia cunodiloroavenireamecolfuoprefente,2Cbadorommi,lapoSd vngal!o,talcvnasuraad.noce,vnodueotretrecciedicipoIfeA'altrodiauho a'^^^n^^ rn. ccedonod vnbccco.lequalcofe non l.trouando alcun che lecomp a^^^ nari in quel mote le lafciai al padron della cafa,per non volermele portarSo miX adunaue
Fcmiohebbi,odellafanca&:d.fag.odique8iorn.- eglièverocheanqua^^^^^^^ mi accompagnarono buona pezza di viajaqual non crafìcura* i«*a>qu"K canaglie , Scufiud monte. Seijtuamonte, '^ ° ».fr, "^ 1 " r'ù " "^°"^7'P'^"o '^'OS"' faluatichezza , altiffimo & molto freddo . vi fono di nìol mm, bofchMie mai di quindi li leua la neue.gli habitatori fogliono por^rd e pò cert^canTel hb.anch.A'vilonofontaneinn,oltacopia.i dcunccordfccUcpcrdifmdcLclcJhnciT ".*'«^°PP'"''°'"°^ Tenmelle ì»]
iifvnvifiicficfniD ada che non vaitiin quella parda huominimal di s'incomincia a l'altro dal fiume rozri, de poucrai»ionc alcuna, io alloggiai vna nncnii mangiar ic con certa cardio mi conucn3mi di partire, fi cinquanta porrci: terminator :itrc gcntilhuo nfapctciicoftu E nò habbia meiche mi viddi efc amare notti, fi rncfcriucrevna ' giorni ditrcro, Ichcàmcparnc ucati.comcapione.uicomin-j ciicmi portò de il più nobile r non *;lTer daucflo adunque quelle canaglie ' I nome, quid icontinouoco inclc.ÒL'dicarrtc fabbrile, ài ^ he poche facce >.necalcina,ne detto . hanno conofciuti,chc pagnarmi , ( fono dimoi' acerticappcl' :1 detto monte ì dell'anno tc^ fieno &: certe in quello niU' ibutiro.fono nni, Scialerò negli anni «S^ nofcarpeseca gamba, con Tenmelle {»] lo dottifnmi,pcrciochc lutr. lìTnn n "?.^""fO" Tonogéte maligna & nel . l.' ' '®S'' G-j ' ('tdmcua monte, "«-vuipigae. '? Qiieflocvn J YT fi'*ntty
:J|| 4 y SECONDA PARTE cotqu.ilc vcJcfTc Fiimc.to veramente Io trouai tutto puro , tutto hcnfjrno.flif tutto pieno iUchirU fà.vcltoMo ciucile gnici.di certi camicioiii ^attl di lana.corti SiC (enza inaimhe . iquali tendono d< fopra .ilìai Urcttatiicnte.vfano di portar certi pugnali torti & larj;Ii/,mafottili(ìinii vcrfola punia,&: t igliano d amenduc le parti,et le fpade portano come quelli di Hca.fanno ne loro pacli vna tìera,clie dura due mcli,ncqualj danno mangiare a lutti i foreltieri che vi li truouano.qiiùilo ben follerò dicci milj.comc sauicina il giorno della detta fiera.fanno tra loro tre gua,fi<: cialcuna="" parte="" li="" cic="" vii="" capitanocon="" cento="" hnti.per="" guardia="" dc="" fecurti="" dclli="" fiera="" quelli="" vanno="" difcorren="" do.="" punifcono="" chi="" fa="" male.fecondo="" la="" grandezza="" del="" peccato.ma="" i="" ladri="" gli="" ammazzano="" panandogli="" da="" vn="" canto="" all="" certe="" loro="" partigiane="" lalciano="" ti="" corpo="" a="" cani="" .="" falli="" queita="" in="" vna="" pianura="" fra="" certi="" monti="" mercatanti="" tengono="" le="" robbe="" ne="" padiglioni="" ceree="" capannctte="" latte="" di="" lr.ifdic.etdiuidonolvn.v="" forte="" dall="" maniera="" che="" alirouc="" hanno="" venditori="" de="" pannia="" altrouc="" quegli="" vedono="" mercerie="" coli="" altri="" mano="" mano.a:="" bcllic="" liano="" fuori="" padiglioni.ogni="" padiglione="" ha="" daprcito="" cafettanuredi="" lrarche="" mangiare="" forefticri.="" loprartanti="" cura="" prouedcr="" dintorno="" alle="" fpefc="" fanno="" forclheri.ma="" anchora="" ciic="" fpendono="" ncllu="" vendita="" dette="" gua="" due="" tati="" li.="" perciochc="" vengono="" cotal="" licra="" huomini="" tutta="" quella="" regione.a:="" ctiandio="" paefc="" d="" negri="" fatmo="" gran="" facccndc.in="" ime="" quclii="" guzzula="" fono="" grolfo="" ingegno="" mirabih="" vero="" gouernar="" con="" quiete="" et="" pace.la="" detta="" ii="" comincia="" nel="" giorno="" della="" natiuita="" macometto="" alli.iz.di="" rabih="" mcfe.j.dellanno="" haraba="" fecondo="" il="" lor="" conto="" io="" luiin="" scrif="" principe.="" giorni="" per="" pucerc.l="" o.="" rmomdiduccm="" duccala="" prouincia="" dalla="" diponentc="" incomincia=""
tenlift="" vcrfo="" tramontana="" tcrm="" na="" mare="" oceano="" s="" dal="" lato="" mezzogiorno="" fiume="" habid="" qc="" vmmirabih="" quello="" poncnte.quelb="" regione="" e="" lunga="" quali="" tre="" giornate="" larga="" circa="" aduc="" mol="" co="" popolofa.ma="" popolo="" maligno="" ignorante="" poche="" citt="" murate="" vi="" truouano.noi="" diremo="" ci="" v="" degno="" notitia="" luoco="" luoco.="" azafi="" fu="" riua="" oceano.cdificata="" anuchf="" africani="" h="" quattro="" mila="" fuochi.a="" molto="" habitata="" pocaciuilt="" gi="" copia="" artigiani="" furonui="" cafc="" giudei.il="" terreno="" ottimo="" fruttifero="" habitatori="" poco="" pcr="" cloche="" noi="" fanrio="" coltiuarc.ne="" porui="" vignc.vfano="" bene="" far="" qualche="" picciolo="" horticello="" allho="" ra="" forze="" dikc="" marocco="" cominciarono="" indebolirli="" rcfle="" certa="" femiglia="" famiglia="" i-arhon="" tempo="" mio="" reggeua="" valete="" lignore="" era="" detfo="" nome="" cbdurrahma="" haueua="" regnare="" ammazzato="" fuo="" zio="" dipoi="" pacific="" atta="" re="" r="" popolare="" capo="" molte="" genti.detto="" hali="" figliuol="" goelimen="" opera="" f="" fl="" ichiaua="" madre="" lei="" giacque="" pi="" volte="" feco="" delche="" egli="" hauutone="" auifo="" fchiaua="" riprelc="" moglie="" minacciolla="" morte.ma="" dimoftr="" non="" farne="" ella="" nondimeno="" conofcendo="" maluagit="" signore="" fece="" intendere="" colui="" guardalte.="" adun="" que="" nomc="" fua="" vita="" rifolfe="" ammazzar="" jui="" fcouerto="" quclto="" fegreto="" ad="" vno="" giouane="" ammpfo="" molta="" cui="" fidar="" fi="" potcua.ambidvnmedellmo="" animo="" mctealtro="" chctempo.="" acio="" atto="" afpettauano.="" ke="" altra="" partc="" dvna="" felta="" folcnne="" fatto="" dire="" volcua="" doppo="" compimento="" delloranonecaualcarealquantoconeflblui="" cagionedi="" follazzo="" perci="" attendelfe="" certo="" luogo="" penfierc="" vcciderlo="" n="" al="" tempio="" tutto="" chiamo="" compagno="" dilte="" venuto="" congiura="" haudie="" eltetto.ilperche="" dicci="" fkmigliari="" armati="" bencsc="" prima="" ap="" prcttare="" bregantino="" volerlo="" mandar="" azamur="" poter=""
quando="" bifogno="" tolte="" fuggirc="" detto="" puto="" hora="" pocoil="" lignor="" vera="" entrato="" tutlama="" oraua.eftendo="" ripieno="" popolagli="" animofi="" ben="" difpofti="" giouani="" compagnia="" entrarono="" dentro="" apprclfanfi="" vicino="" faccrdote="" furono="" ano="" impediti="" fapendo="" quanto="" eft="" folfero="" gradi="" appreffo="" lui="" niente="" fofocttaua="" tz="" dalli="">o^'nvnmeddimo tempo, quel dmanzi gli cacciò la fpada nel corpo,&^^ «ógmiati. mor*ugrandeAlaguardiaprimieramente? nkjltòiduoi,.mafoprauenendoi4i€CÌcoaiefpadc ignude. A ign per pias satc aedi ronc certi fare ^ volle auifai fadoi ! fl^coi i quel e iicura duna archili lagabi nuocci 6 ardili! choler; no vnl ncfug^ la detta Icijcfli < fmarrin tocinqu fopragii di arme, ii,&:2oo lagne di lafabrica tocapo.t lifcruitoi pitano d< qual città ftahiftori Q na della ci teuohaue Ja campai; ne con il e •IRcdiJVl to venti,c< Contee rono qudl Titccitt pralamarii •n molta co che velie ali quando fu I «0'&:ndmi( potendo far wefTariOjfec frocradisha
pieno d/cfiaW- Ti ualncnj»ono dj invcr(ohpuneloropaciivna ino,i]iiàJobcn ^ciafcuna paranno diYcorren li ammazzano :ani. talli qucdixlioni, Oc in laniera clic al^li altri dimadaprcflb vna ì forcHicri , èc nnoaforcdic;nanoductan :I pacfc d'i ne^egno.mamiorno della na- l onto.ioluiin I intana termfcdi Vniniiraduc,&:èmollano.noidirc" :irca a quattro ,&^flironuida ingegno, pericello.&aliho erta famiglia, era det'o per icó la città, &: innamoratafì ien,per opera ] b dalla fciiia). ella nondire. Hall adun irJui,&^fcontcn'a.dicuì afpettauano, olcua doppo :o , de perciò tempio. Hali e la congiura rima fatto ap ndo bifogno rato ,&tut' ^iouani,con :, non furono bfpettaua.di ugnale lo ferì k fintilo, il ru icoaJe.rpade ignude. il igtitide, pcnfando qucfio e fTcr Hato rr .r Mr« ^ f '', ^ ' ^ ^ li pcrn,odo,cl,ealtrinonrin,areon" " '^^^^ ' acclKto,&
l l! S»ffo Te nercino. Gcaiio fcr uaio cento anui. :ri SECONDA PARTE ElmedinaaitàmDHCcalit, j EImcdina è vna città m Duccala,8(: quali capo di quella regione, laquafc e tutta murata di ccr fé mura,che fi vfano in quel pacrc,piu tolto vili, 8C triiìe che altrimenti.il popolo che nel vero fi può direignoran te, velie pure di certi panni di lana, che il fanno là,ct le loro donne portano mol ii ornamenti d'argento &: di corniole, gli huomini fono valorofi, dC hanno gran quantità di caualli. 8C quclh furono trasferiti dal Re di Fez, per fofpetto d'i Portogalleli nel fuo liato , perciò^ che egli 11 auidde d'un vecchio,capo di parte della terra, qual conligliaua il popolo a da'r tributo al kedi Portogallo . £C lo viddi menare in catena , fcalzo , dC n'hebbi grandilFima compaffìone, perche il pouero vecchio fu isforzato per necelTitaà far quellochc fcce,confiderando ch'era meglio à pagar il tributo, che perder la robba Od le perfone. per la liberatione delquale (e intromcHcno molti, apprefl'o al detto Re di Fez, talché lo fcciono liberare per via di pagamelo 8(:d*poi la città rimale dishabitata,nc!ranno..9xi. * Caiitopo'i^ città di Duccala, Qucfta è certa tcrricciuola fopra vii colle di falTo Teuer tino, fuori dellaquale fono molte folTe, doue gli habitanti folcuano nponere il grano. dC dicono quei del pacfc,chc nelle dette folle è (iato ferbuto detto grano cento anni continoui fenza guaftarli, ne uiutar odore,&: fj la moltitudine delle fopradette folìè limili à poz^i, è dettala città d'i cento pozzi, il popolo di quelia città e di niun conto, perciò non vi lì troua artigiano alcuno, eccetto certi giudei fabbri . 8C nel tépo che il Re di Fez condulTc il populo di iilmadina, ad habitar nella f uà regione, volle fimilmente con- v dur quelt altro, ma cllb non volendo far tal mutamento,fuggi in Azafi, per non voler laflarla patria, il Re ciò vedendo, facchcggiò la città d'i cento pozzi, nellaquale altro iion trouò,chcgra no, mele , àC cofc grauijSt: di poco valore. Siéeit Città nella medefima, Subeit è vna picciola città fopra il fiume di Ommirabih verfo mezzo giorno , 8C e lontana da Elmadina circa a quaranta miglia, è quelia città foggetta a gli Arabi di Uuccala.di grano è mol lo fruttifera OC di melcma per ignorantia del popoìo.non li truoua horto ne vigna alcuna.et pò fcia che Bulahuan fu rouinato, il detto popolo fu -idotto dal Re di Fez, nel fuo regno , Óc diegli vna
picciola città di Fez, ch'era dishabitaia, èC Subeit rimafe diiierta, 7 racoQ* Temcracoft è certa pica'ola città in Duce .., polla pure fopra il fiume di Ommirabih,S<: fu="" edificatadjllignorc.ch="" perci="" e="" detta="" da="" quel="" nome="" fhcir="" t="" ca="" a="" quattrocento="" fuochi.="" in="" ioggetta="" al="" popol="" di="" aremur="" ma="" nell="" anno="" che="" azcmur="" f="" u="" prc="" fo="" portogalleli="" la="" citta="" and="" rouina.="" il="" popolo="" l="" transferi="" tlmadina="" terrei="" terga="" picciola="" citt="" fopra="" fiume="" ommirabilvlontana="" circa="" tr="" miglia="" molto="" habitara="" fa="" quali="" trecento="" fuochi="" quelia="" fottopolta="" gli="" arabi="" cuccala="" poi="" prcfo="" azat="" capo="" parte="" chefucontra="" ha="" j="" bitouui="" alcun="" tempo="" inlicmc="" con="" molti="" valenti="" huomini.="" pofdail="" rcdiferlo="" fece="" andar="" nel="" fuo="" regno="" conia="" fua="" famiglia="" maniera="" rimafe="" albergo="" delle="" ciuettc.="" bulahuan="" bulahuaii="" vna="" edificata="" ommirabih="" .="" cerca="" cinquecento="" habitata="" nobili="" liberali="" huommi="" mezzo="" della="" lirada="" per="" cui="" fi="" va="" fez="" marocco="" cafa="" molte="" ftanze="" gran="" dillima="" itala.a:="" quanti="" padano="" paefe="" amoreuolmentcinuitati="" lianza="" fpe="" ie="" del="" popolo:="" perciochc="" cito="" ricco="" grano="" sc="" beliie.="" ogni="" cittadino="" cc.i="" to="" paia="" buoi="" o="" poco="" pi="" meno="" fonai="" quegli="" raccolgono="" intorno="" mille="" me="" alcuno="" tre="" mila="" ne="" fono="" compratori="" fornifcono="" tutto="" tanno="" nouccento="" diccnnoue="" re="" mand="" vn="" fratello="" difcfa="" goucrno="" rcgioti="" duccala.ilqualc="" giunto="" vi="" appreiro="" nuoua="" capitan="" azemur="" douea="" ve.="" nir="" facchcggiar="" ciit="" hr="" prigioni="" habitatori.ia="" onde="" egli="" fubito="" ifpedire="" due="" capitani="" duo="" caualli="" ottocento="" balcftrieri="" fauorc="" punto="" qucfte="" genti="" arriuaiono="" anchora="" gente="" portogallefc="" laquale="" haucndo="" aiu.="" oda="" facile="" fuper="" difez="" ch="" riflrctti="" piano="" tutti="" menati="" fil="" fpada="" dieci="" dodici="" infieme="" col="" rimanete="" deu="" lo="" efercito="" fuggirono="" i=""
monti.c="" vero="" mori="" rifecero="" tornando="" dietro="" dieron="" caccia="" portogallci="" amazzorono="" centocinquanta="" caualli.il="" de="" venne="" durr="" ala="" et="" rifcohe="" rifa="" nari="" trii="" imo="" non="" tilib="" uaaj="" feria="" a:="" fiunu="" grane="" rogali="" polo="" ciocia="" rei="" coniin="" b="" fuogr="" toiioc="" simez="" olio.in="" fce="" togallo="" dccofi="" moltitu="" idei="" j:="" altri="" pigliate.="" fiiani="" ig="" ta="" te="" collii="" prima="" peccato="" c="" merai="" siffaprel="" fij="" rono="" patto="" oliciic="" ni="" tempi="" adic="" noni="" nati="" dal="" verde="" verfo="" pc="" die="" un="" fanno="" iamud=""/>
I ta murata di ccr Jclie nel vero fi ne portano mol 1 quantità dica0 Uà to, perciò^ alo a dar tribùIfima compafjconfiderando me. delquale (e i di pagamelo. no molte fofTe, dette folle è (ia>E) la moltitudiquella città è di X neltcpoche milmentecon' j; ì voler laflarla itrouòjchcgra &fé lontana da di grano é niol f laaicuna.etpo rgno.&diegli lirabihj&ffuc' abitata . h cir f ^zcmurfupre ì tréta miglia, uccala. ma da/ Ita città, &: Il a p : Io fece andar te» queccntofuo" :o della iirada, con vna gran^ talbnza,afpe ttadino bacca rnoà mille fo' r tutto Fanno, iella rcgion di »ur, douea vc^ ceifpediredue a città, in quel hauendo aiu-r cti nel mezzo rimanete del' lieron la caccia in ■Jurr^f2. £t riTcoire - r (T r f ° ^ ^ I- A F R I C A AnrcoirciItnbutOjCtpromcttendocIrfa,,^ -ir ^ ^ ^ ^ narfiinFezaw I che vX?.;?n^ ?"!:"'/' ^ . mnbatoA'dùuunoaiucoglt^^ • montidiTcdletcn,endochel7pn r^ h''''""^''^""°''"P^"'-"^^ noni. P^^gando/un "om n pSf o ^ "'"l"^"'' ^ -"'^ffin^pt u ^it/ .'S ^^' ti li baldtr.cri,ma difcofto circa vnn^?-' '" '''"''^ ^iddi quando k ro io an "- ^^ «aaMarocco^partcndonudaLanSfc 5enf pnncipe,pcr nome del R e di FelTa cóme i f- if ^' n l'"'"'^''' '^ ^'^'^o»" ^' ^ I^^rocco S • fenaprouiiionecontraiPortogalldi:' '''^'^'''^''"^'-'''^'^^^^P'^'-iì'"^^ togalle .:d. maniera, chegidiabita?ori "io nerf^^^^ polo e d.u.ro m due parti'io.idimeno è fìaS '° ''"''' '.^' ^-"'"^ '" ''^1'' habftiVd do. c.oelac,pagna.egl.cverodìcnonvTronoS^^^^^^^ gl
sfTT". 11 f i; n t Alberi fimi Ha piai. :é S E CO NDA PARTE cfrca a vinticinquc miglw.trouanli ctiadio nel detto monte molti fantrSirnioItt altari fatti al mo^ O' do di Maitmcitani.tr iiouali liniilmente alcuni edifici) de gli antichi Africnni. fotto il monte e vn bellirsimo Iago grandc,comc e quello di Bolfena,in terra di Roma . hauui grandifìTima quantità di pcfcc,li come L-^no anguille,lafchc,Iucci,8d altri pcfcijch'io nò ho veduto in Italia,tutti in fom^ ma perfeitionc di bonta,iTia non e alcuno,che pefchi in qucfto lago.quado Maumetto Re difes andò a Duccalu,icrmofiì con l'cflercito,otto giorin appreffo il detto lago , & fece pcfcar ad alcU' ni,iquali,li come io viddi^cucirono il collo 8C le maniche a certe camicie, &: legado certe b jcchet> te dalla parte di (opra giù le calarono nel lago. &C in quciia guifa pigliarono gran quantità di pc^ fce.penfate quel che fecero quelli che haueuano le reti,&f quanta qualità ne prefcro.perchc il pc-fcc era come llordito dC imbriaco p la cagione ch'io dirò, fece il detto Re entrar nel lago forfè vn buon miglio dentro li caualli dcll'cflercitcche furon da.14.mila de gli Arabi venuti in fuo fauor Se d'alcuni fuoi vafalli,&: gli Arabi mcnoiono fcco molti camellijquali furono tre volte tanti, co^ me li caualli,6^ li camelli dclli carriaggi della corte del Re dC di fuo fratello, che furò.? 000.& infiriti alirijch'eran fu detto cHercitOjà: per caufa di tanti animali ch'introrono in detto lago, lo tur^ borono di forte, che non fi poteua haucr acqua pr r bcrc,& il pefce era come ftordito, dC fi laflaua pigliarc.tornàdo al lago,dico,che nelle fue fponde fono moltifsimi alberi , iquali hanno le fòglie, che fomigliano a quelle d'i pignari,&: tra i rami femprc e grandilFima quantità di nidi di tortore, li come a quc di,ch'cra il mcfc di maggio, di maniera , chcii dauano fci tortorini per vn viliffimo prcz20.ii Re poi clic ripofo quiui otto giorni,volle andare al Monte vcrdc,& coli v'andammo J molti con ciTo Iuiàìoc lac crdoti,8if cortigiani del dctto.cgli ad ogni altare che trouaua,faccua fer^ mar tutti'A' poUoù con li ginocchi a terra piangendo humilmentc diceua. Iddio mio tu fai che la mia intcntionc d'effer venuto a queiio faluatico paefc,altra non è, che d'aiutare 5i. liberare il po^ polo di Duccala.dallc mani de gli empi 8C ribelli Arabi,&: inliemc da i noitri fieri nimici Chriftia ni.ma fé tu vedi il
Welcome to our website – the ideal destination for book lovers and knowledge seekers. With a mission to inspire endlessly, we offer a vast collection of books, ranging from classic literary works to specialized publications, self-development books, and children's literature. Each book is a new journey of discovery, expanding knowledge and enriching the soul of the reade Our website is not just a platform for buying books, but a bridge connecting readers to the timeless values of culture and wisdom. With an elegant, user-friendly interface and an intelligent search system, we are committed to providing a quick and convenient shopping experience. Additionally, our special promotions and home delivery services ensure that you save time and fully enjoy the joy of reading. Let us accompany you on the journey of exploring knowledge and personal growth! ebookfinal.com

Introduction To Computer Programming And Numerical Methods 1st Edition Xundong Jia

  • 1.
    Introduction To ComputerProgramming And Numerical Methods 1st Edition Xundong Jia - Downloadable PDF 2025 https://ebookfinal.com/download/introduction-to-computer-programming- and-numerical-methods-1st-edition-xundong-jia/ Visit ebookfinal.com today to download the complete set of ebooks or textbooks
  • 2.
    Here are somerecommended products that we believe you will be interested in. You can click the link to download. An Introduction to Numerical Analysis for Electrical and Computer Engineers 1st Edition Christopher J. Zarowski https://ebookfinal.com/download/an-introduction-to-numerical-analysis- for-electrical-and-computer-engineers-1st-edition-christopher-j- zarowski/ An Introduction to Numerical Methods A MATLAB Approach Third Edition Guenther https://ebookfinal.com/download/an-introduction-to-numerical-methods- a-matlab-approach-third-edition-guenther/ Essential Numerical Computer Methods Reliable Lab Solutions 1st Edition Michael L. Johnson https://ebookfinal.com/download/essential-numerical-computer-methods- reliable-lab-solutions-1st-edition-michael-l-johnson/ Practical Programming An Introduction to Computer Science Using Python 3 Second Edition Paul Gries https://ebookfinal.com/download/practical-programming-an-introduction- to-computer-science-using-python-3-second-edition-paul-gries/
  • 3.
    Computer numerical controlmachines and computer aided manufacture Second Edition Radhakrishnan https://ebookfinal.com/download/computer-numerical-control-machines- and-computer-aided-manufacture-second-edition-radhakrishnan/ An introduction to computer simulation methods Applications to physical systems 3rd Edition Harvey Gould https://ebookfinal.com/download/an-introduction-to-computer- simulation-methods-applications-to-physical-systems-3rd-edition- harvey-gould/ Numerical Methods in Finance A MATLAB Based Introduction 1st Edition Paolo Brandimarte https://ebookfinal.com/download/numerical-methods-in-finance-a-matlab- based-introduction-1st-edition-paolo-brandimarte/ Introduction to 3 1 Numerical Relativity Miguel Alcubierre https://ebookfinal.com/download/introduction-to-3-1-numerical- relativity-miguel-alcubierre/ Introduction to Computer Music 1st Edition Nick Collins https://ebookfinal.com/download/introduction-to-computer-music-1st- edition-nick-collins/
  • 5.
    Introduction To ComputerProgramming And Numerical Methods 1st Edition Xundong Jia Digital Instant Download Author(s): Xundong Jia, Shu Liu ISBN(s): 9780757538926, 0757538924 Edition: 1 File Details: PDF, 4.68 MB Year: 2007 Language: english
  • 6.
    Chapter 1 XudongJia & Shu Liu Introduction to Computer Programming & Numerical Methods 1 Chapter 1 Visual Basic.Net Environment Welcome to Introduction to Computer Programming and Numerical Methods. The objective of this chapter is to introduce Microsoft Visual Basic.Net (or VB.Net), the most useful computer programming language. You will learn step-by-step the Integrated Development Environment (IDE) inside VB.Net for creating, running and debugging VB.Net programs. 1.1 Getting Started Assume you have a user account and a password for use of computers in a university or college lab. Now it is the time for you to enter the user account name and the password into a lab computer. [If you have a home computer where VB.Net and Windows XP is installed on it, you can also learn the VB.Net Integrated Development Environment using your home computer.] The procedures described in this chapter apply both your lab and home computers. After you log on to a computer (lab or home), you are in the Windows XP operating system. You are encouraged to change the password to a new one for security reasons. Otherwise, someone may break into your account and delete your files accidentally or with some purposes. The steps to change your password and start VB.Net are as follows: Press Alt+Del+Ctrl keys at the same time and follow the instructions provided in the window dialog to change your password. Click the Start button at the bottom of the Desktop using the left mouse button. Select Programs-> Microsoft Visual Studio .Net 2003 -> Microsoft Visual Studio .Net 2003. You will be in the .Net development environment (see Figure 1-1). It is noted that the Visual Studio .Net 2003 version is used in this book. All the programs listed in this book are tested under this version and saved in the CD at the back of this book. Inside the .Net development environment, you will see three tabs listed in the middle of the environment. These three tabs are Projects, Online Resources, and My Profile. Click the Projects tab and New Project button. Highlight Visual Basic Projects in the Project Type window and Windows Application in the Templates window.
  • 7.
    Chapter 1 XudongJia & Shu Liu Introduction to Computer Programming & Numerical Methods 2 Specify a name called Lab1 and a location of the VB application to be developed. The location you specify is the place where your VB.Net project data and code is located. Figure 1-1 VB.NET Development Environnent Click OK. Now you are in the Visual Basic.Net Integrated Development Environment (IDE). 1.2 VB.Net Integrated Development Environment The integrated development environment (IDE) is important in helping you create, run and debug VB.Net programs or applications. You can consider VB.Net IDE as Microsoft Word and VB.Net programs as Word documents. A Word document is created in Microsoft Word, while a VB.Net program is created in the VB.Net IDE. The VB.Net IDE consists of a set of Graphical User Interfaces (GUIs) and components (see Figure 1-2). You need to understand this IDE because all VB.Net programs or applications are developed within this environment. Let us look at this environment in detail. On the top of the window, you can see the following components:
  • 8.
    Chapter 1 XudongJia & Shu Liu Introduction to Computer Programming & Numerical Methods 3 Figure 1-2 VB.Net Integrated Development Environment Title Bar It shows the title of the VB.Net project you are currently working on. The default project title is the project name you have specified when you create a new project. If you would like to change the project name or title to other name, you can change it through Project -> Project Properties. Menu Bar It consists of menus that help you manipulate VB.Net programs in the project. The menus are listed from left to right as File, Edit, View, Project, Build, Debug, Tools, Window, and Help. Tool Bar Two built-in tool bars are provided when you open the VB.Net IDE. You can add more toolbars. The steps to do that are Select Views->Toolbars Check on the names of the toolbars. In addition to the above components, you should be aware of the five windows in the IDE when you are developing a VB.Net project or application. These five windows are as follows: Toolbox window The window is very important in the VB.Net IDE. It contains control templates or components that are available for you to use.
  • 9.
    Chapter 1 XudongJia & Shu Liu Introduction to Computer Programming & Numerical Methods 4 These components are similar to the engine and transmission in a car. They are well built. Just as people do not need to know how to build an engine or a transmission to assemble a car, you do not need to know how to build a component or a control template in order to develop a VB.Net application. Your job is just to know how to use control templates for a VB.Net program. How to use these control templates? The solution is “drag and drop”. You need to first click on a control template, for example, a label control template and then move the control template into the form window while pressing and holding the mouse. Once you drag and drop an instance of an control template, a control that inherits the behavior of the control template is created. As you can see, the IDE is a VB.Net assembling line that allows you to take components available in the toolbox to make an application. Similar to a car assembling line that allows car builders to select various engines and transmissions to make different cars, the IDE can allow you to access millions of control components that are available through Microsoft VB.Net built-in libraries, third-party software, and user-defined libraries. Form Window The window is a blank window (or form) on which you can place controls. The form and its controls constitute the graphical user interface (GUI) of a VB.Net program. They are the visual part of the program with which the user can interact. Solution Explorer The window contains a Windows Explorer-like tree view of all the customizable forms and general code (modules) that make up a VB.Net application. The Solution Explorer provides you with an organized view of your project and program files associated with the project. A toolbar associated with this window lists a set of commands that allow you to see the graphical user interface (GUI) of your project and to see the code that supports the controls on the GUI. Select the Solution Explorer on the View menu when you cannot find the Solution Explorer in your IDE. Properties Window The properties window displays the properties for a form or a control. Properties describe attributes such as size, color, and font of a control. Each form or control has its own set of properties.
  • 10.
    Chapter 1 XudongJia & Shu Liu Introduction to Computer Programming & Numerical Methods 5 When you click on a control or the form, the properties will be listed in the properties window. There are two columns in the properties window. The first column lists the property names and the second column shows the current value of the property. The value can be changed at the design phase of the form or through the program code. There are lots of properties associated with controls. You do not need to know all of them but understand how to use primary properties such as name, text, etc. 1.3 A Simple VB.Net Application Creating a simple application is a process that implements a logic used in solving a problem. It involves the steps to create forms (or Graphic User Interfaces) and to write code to support the forms. Each form contains a set of controls “dragged and dropped” from control templates. Each control has a set of properties and a group of events or actions such as click, double-click, mouse-up, and key-press. Each event is supported by a sequence of VB.Net code to tell the computer what to do when an event of a control is trigged or activated. Suppose you have a command button control in the form window. The name of the control is called aCommandButton. You can go to the code window through View - >Code, select the aCommandButton control from the control list, and select the click event from the event list. After the operations, you can see the procedure template as follows: Private Sub ACommandButton_Click(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles _ ACommandButton.Click End Sub Note that there are two arguments inside the parentheses. We will discuss these two arguments later. Now you just understand two arguments are important in this event procedure. When you compare the above procedure to that created by your IDE, you see the above procedure has two “_” letters inserted between the two parentheses. Each “_” letter indicates that the line after the letter is the continuation of its previous line. For example, the first “_” letter indicates that “ByVal e As System.EventArgs) Handles” is considered as part of the first line. With the use of the two “_” letters, the first three lines are considered as one line in VB.Net IDE. Example 1.1 A Simple VB.Net Application
  • 11.
    Chapter 1 XudongJia & Shu Liu Introduction to Computer Programming & Numerical Methods 6 Type the following code between Private Sub and End Sub. Msgbox “Welcome to VB.Net” The entire code looks like: Private Sub ACommandButton_Click(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles _ ACommandButton.Click Msgbox “Welcome to VB.Net” End Sub Provided that the code has been written for the click event of the aCommandButton control, let us run the project and see what happens. You can find this simple application as Example 1_1 in Chapter 1 of CD. Select Debug -> Start A window that represents the form you just have designed is prompted. Click the command button control and see what the program will do for you. Surprisingly, you will see another window. The window shows the message “Welcome to VB.Net.” This message is created by the VB.Net statement Msgbox “Welcome to VB.Net.” More discussions of VB.Net statements will be provided in later chapters. From the above simple application, we can conclude that the VB.Net IDE takes the following steps to run a VB.Net program: Step 1: Visual Basic.Net monitors the forms and the controls in each form for all the possible events such as mouse movements, clicks, keystrokes and so on. Step 2: When VB.Net detects an event, it searches for a built-in response to the event. If there are not any built-in responses to the event, the VB.Net examines the program to see if an event procedure has been written for that event. If an event procedure is written for that event, VB.Net executes the procedure. VB.Net statements within the procedure will be executed statement by statement from top to bottom. Once all the statements are executed, the program will go back to Step 1. If an event procedure is not written for that event, VB.Net skips this event and waits for the next event and goes back to Step 1.
  • 12.
    Chapter 1 XudongJia & Shu Liu Introduction to Computer Programming & Numerical Methods 7 1.4 VB.Net Application Development Process A VB.Net application development process involves five major steps, that is, 1) understand the logic needed to solve the problem by a VB.Net program, 2) design form(s) to implement the logic, 3) write program code to support the controls in the form(s), 4) debug the program, and 5) deliver the program to users. Let us use an example to describe the development process. Suppose we need to develop a VB.Net program to solve the following quadratic equation and find two real roots if they exist: Where a ≠ 0 and b ≠ 0 Two logical flows can be developed for the program. These two flows are: Logical Flow #1: A user is prompted a window on which three input boxes for parameters a, b, and c are listed. The user then enters a numerical value in each of these input boxes and clicks a button called Calculate. The program will find two real roots if they exist. The user terminates the execution of the program by clicking on a button called Cancel. We name this logical flow the simple flow. Logical Flow #2: A user is asked to enter a full quadratic function (like 1x^2+2x+1) into an input box. Once the user presses the Enter key, the three parameters (a, b, and c) will be parsed (or extracted) out from the function expression and displayed in the input boxes. The user then clicks a button called Calculate. The program will find two real roots if they exist. The user terminates the execution of the program by clicking on a button called Cancel. We name this logical flow the complex flow. These two logic flows will make the development of a VB.Net application different. Here we only concentrate on the VB.Net implementation of the simple logic and leave the complex logic in later chapters. Example1_2 within Chapter 1 of the CD is the VB.Net application for the simple logic. The development process to implement the simple logic flow involves the following steps: f x ax bx c ( ) = + + = 2 0 Example 1.2 Quadratic Equation VB. Net Application
  • 13.
    Chapter 1 XudongJia & Shu Liu Introduction to Computer Programming & Numerical Methods 8 1) Form design 2) Program coding 3) Debugging and testing 4) Program packaging and delivery Let us go through these four basic steps: Step 1: Form Design The form design is a process that implements the logic for the program. For the simple logic flow, we need to develop the form as shown in Figure 1-3. Within this form, you can find a form control, five label controls, five text box controls, and two command controls. Figure 1-3 Form Designed for the Simple Logic Flow These controls are defined with the following names: Form Control: SimpleLogic Textbox for a: val_a Textbox for b: val_b Textbox for c: val_c Textbox for root1: root1 Textbox for root2: root2 Calculate button: calculate Cancel button: cancel Label for a: Label1 Label for b: Label2 Val_a Val_b Val_c SimpleLogic Calculate Cancel Root1 Root2
  • 14.
    Chapter 1 XudongJia & Shu Liu Introduction to Computer Programming & Numerical Methods 9 Label for c: Label3 Label for root1: Label4 Label for root2: label5 These names must follow the VB.Net rules and conventions listed below: 1) Each control must have a unique name that can be no more than 40 characters long. 2) Each control name must start with a letter. The remaining characters can be any letters, numerical characters, or underscores. You cannot have spaces, special symbols, or punctuation characters in a control name. 3) It is a good practice to name a control to reflect the logic of the application. For example, we define Val_a, Val_b, and Val_c to represent the three parameters of a quadratic equation. The procedures to create these controls are as follows: 1) Within the VB.IDE, click the empty form and change its name to be SimpleLogic (see Figure 1-4). Also replace Form1 in the Text property by Simple Logic Application. 2) Highlight the Textbox template within the Toolbox window. Press and hold the cursor and drag the cursor into the Form window. Release the cursor. You will see a textbox control is created (see Figure 1-5). Figure 1-4 Form Window for Example1_2
  • 15.
    Chapter 1 XudongJia & Shu Liu Introduction to Computer Programming & Numerical Methods 10 Figure 1-5 Create a Textbox Control 3) Note that the name of the textbox control created in 2) is Textbox1. Change it to Val_a. Also Clear the Text property. 4) Follow the same way to create other control names. Note that you do not need to change the label control names since they are not used in the program code. Step 2: Program Coding There are two event procedures to be developed. These two procedures will respond to two click actions (or events), one on the Calculate button and the other on the Cancel button. Public Class quadradic_equation Inherits System.Windows.Forms.Form Windows Form Designer Generated Code Private Sub cancel_Click(ByVal sender As System.Object, _ ByVal e As System.EventArgs) _ Handles cancel.Click End End Sub
  • 16.
    Chapter 1 XudongJia & Shu Liu Introduction to Computer Programming & Numerical Methods 11 Private Sub calculate_Click(ByVal sender As System.Object, _ ByVal e As System.EventArgs) _ Handles calculate.Click Dim a As Single Dim b As Single Dim c As Single Dim rt1 As Double Dim rt2 As Double Dim chk As Double a = Val(val_a.Text) b = Val(val_b.Text) c = Val(val_c.Text) chk = b ^ 2 - 4 * a * c If chk < 0 Then MsgBox("no real roots exist") Exit Sub Else rt1 = (-b + Math.Sqrt(chk)) / (2 * a) rt2 = (-b - Math.Sqrt(chk)) / (2 * a) End If root1.Text = Str(Rt1) root2.Text = Str(rt2) End Sub End Class As you can see the two procedures all begin with Private Sub and end at the End Sub. Between Private Sub and End Sub, there are various VB.Net statements. We will learn these statements one-by-one in later chapters. You do not need to know these statements right now. Enter the above two procedures into the code window and name the project SimpleLogic. Step 3: Debugging and Testing Debugging and testing a VB.Net application is a tedious task that often involves a systematic way of checking various potential errors in the application. You can read the article entitled “Testing of a Windows-Based Transportation Application: The LRSEdit Experience.” for more information on how to do the testing on Windows-based applications. The article was published on the ITE Journal on the Web, February 1999 and can be found as testing.pdf in the CD. The application developed in step 2 is a simple application. It does not involve a lot of testing efforts. However you need to know tools provided in VB.Net for the debugging and testing of programs. The tools can be accessed through the Debug menu in the VB.Net IDE.
  • 17.
    Chapter 1 XudongJia & Shu Liu Introduction to Computer Programming & Numerical Methods 12 It is noted that this simple application does have some errors. What happens if a non- numeric value is entered into the Val_a, Val_b or Val_c textbox? When you enter “abc” into the Val_a textbox, the program will be terminated abnormally. In later chapters, we will add more VB.Net statements into this simple application to deal with various “what if” cases. Step 4: Project Packaging and Product Delivery Once the project is tested error free, it is the time to package the project and deliver it as a software product to users. The software product contains not only the executable program but also various documentations that guide users for installation and execution of the product. The professional product, once packaged, will have a setup program that allows users to install the product into any computers, even the ones without VB.Net. After installation, the product can be executed in a window environment. 1.5 Questions Q1. Explore Internet to see how many versions Visual Basic.Net has. Hint: Go to Microsoft web site or use Google search engine. You may see that VB.Net has Learning Version, Professional Version, and Enterprise Version. Q2. What is the difference between Visual Basic and Visual Basic .Net? Q3. Develop a VB.Net application that gets input from the user about the radius of a circle, calculates the diameter, circumference, and area of the circle, and displays the results in three textboxes. The three textboxes should be disabled for user input. A logic flow and the form that implements the flow are required for this problem. Q4. List the five windows inside the VB.Net IDE and describe the functions of each window. Q5. List all the properties for a textbox control, a label control, and a command button control. Q6. What are the steps for the development of a VB.Net Application? Explain each step briefly? Q7. Why do we need the “_” letter in VB.Net code? Hint: See the explanation in this chapter.
  • 18.
    Chapter 1 XudongJia & Shu Liu Introduction to Computer Programming & Numerical Methods 13 Q8. List three VB.Net rules that should be considered when a control name is defined. Q9. What is the difference between a control template and a control? Q10. What is VB.Net IDE? Q11. Assume you have a command button control named Clear created in the Form window. When you double click on the button, you will see the empty event procedure created in the Code window. Can you write down the first line and last line of the empty procedure without looking at the procedure in the Code window? Q12 List steps required to create a VB.Net project called FirstProject and save the project files into C:temp folder. Q13. Assume you have already created a VB.Net project called SecondProject and saved it in the C:temp folder. How many files are there within the SecondProject folder? What is the file type of each file in the SecondProject folder? Q14. When you find a file in the Windows Explorer whose type is Visual Basic .Net Project, what happens when you click on it? Hint: Assume you create a project called SecondProject in Q13, you find the SecondProject file in the C:tempSecondProject folder whose type is Visual Basic .Net Project. Q15. How many controls are there in Figure 1.3? List these controls and explain their control type. Q16. How to change your password in Windows XP? Q17. What is a GUI?
  • 19.
    Chapter 2 XudongJia & Shu Liu Introduction to Computer Programming & Numerical Methods 14 Chapter 2 Exploration of a Visual Basic.Net Application We will discuss in this chapter the structure of a typical Visual Basic.Net application and provide you with a simple project that describes the relationships of forms. In addition, we will explore a number of control templates or components that are listed in the VB.Net IDE. 2.1 Structure of a VB.Net Application The Visual Basic.Net IDE organizes a VB.Net application as a solution to a problem. A large VB.Net application may have one or more VB.Net projects in which each project is responsible for a single, well-defined task. Figure 2-1 shows the relationships among a VB.Net application, its solution, and its VB.Net projects. As you can see from Figure 2.1, the Application A has two VB.Net projects and Application B has one VB.Net project. In this book we assume each VB.Net application requires a solution that only contains one VB.Net project. With this assumption, VB.Net application and VB.Net project are used interchangeably in this book. Solution A Solution B Figure 2-1 VB.Net Application, Solution, and VB.Net Projects A VB.Net project consists of one or more forms. Each form, as discussed in Chapter 1, is a graphical user interface (GUI). It has a form file to store controls. Project1 Project 2 Application A Project 1 Application B
  • 20.
    Chapter 2 XudongJia & Shu Liu Introduction to Computer Programming & Numerical Methods 15 Assume you create a VB.Net application or project called House Orientation that contains three forms House, Room1 and Room2. When you open this project in the VB.Net IDE, you can see the Solution is named as House Orientation in the Solution Explorer window. The Solution Explorer window contains a tree that lists all the form files inside the project House Orientation. It provides access to the form files and manipulates these files visually (see Figure 2.2). This application is saved as Example2_1 in Chapter 2 of CD. Figure 2-2 Three Form Files Listed in the Solution Explorer Window As shown in Figure 2-2, all of the controls on the House form are saved into a form file called House.vb. Similarly, the Room1 and Room2 forms have their corresponding form file called Room1.vb and Room2.vb, respectively. VB is the short name for “Visual Basic”. The executable file of the House Orientation project can be found as HouseOientation.exe in Chapter 2 of the CD. When you run this executable file, the House window as shown in Figure 2-3 will appear. If you click the GoToRoom1 menu, the Room1 window as shown in Figure 2-4 shows up. If you click the BacktoHouse menu of the Room1 window, the House window will appear again. Example 2.1 House Orientation Application
  • 21.
    Chapter 2 XudongJia & Shu Liu Introduction to Computer Programming & Numerical Methods 16 If you click the GoToRoom2 menu of the House window, you will see the Room2 window as shown in Figure 2-5. When you click the Close menu of the Room2 window, the program terminates normally. Figure 2-3 House Window Figure 2-4 Room1 Window
  • 22.
    Chapter 2 XudongJia & Shu Liu Introduction to Computer Programming & Numerical Methods 17 Figure 2-5 Room2 Window Figure 2-6 shows the detailed structure of the House Orientation project. Clearly, the project consists of three forms and code modules that support the forms. Each form is internally grouped as a form class. We will discuss the concept of a class in later chapters. Here we just assume a class is equivalent to a form that has a group of controls. Each project has a starting form. If you have several forms in your project, you need to define which form is your starting form. From the starting form, the application can navigate to any other forms. Provided that you are already in the VB.Net IDE environment, the procedure to set up the starting form for the VB.Net project House Orientation is as follows: In the VB.Net IDE, Select Project -> House Orientation Properties. You will see the following window (see Figure 2-7): The Startup Object box is the place where you can specify a form as the start-up form. In the above window, type House in the Start Object box to specify the House form is the start-up form.
  • 23.
    Chapter 2 XudongJia & Shu Liu Introduction to Computer Programming & Numerical Methods 18 Figure 2-6 Structure of the House Orientation Project Figure 2-7 Project Properties Window for Specifying the Start-up Form 2.2 Developing the House Orientation Application In the previous section we describe the House Orientation executable application. Now you need to develop this application from scratch. The development of this application involves four primary steps: 1) form design, 2) program coding, 3) debugging and testing and 4) program packaging and delivery. Room1 Class House Class Room2 Class Starting Form Pointer
  • 24.
    Chapter 2 XudongJia & Shu Liu Introduction to Computer Programming & Numerical Methods 19 Before you develop this application, you need to get three image files from the CD. The three files are called house.jpeg, room1.jpeg, and room2.jpeg. You have to copy these files into your working folder or the folder where the House Orientation project is located. With the image files available, let us go through the below steps for this application. 2.2.1 Form Design Step 1: House Form Design First, follow the same steps as used to create a VB.Net project called Example1_2 in Chapter 1. You name the new project as House Orientation and save all the files associated with the project in your working folder (or a folder you like to store your House Orientation project files.) When you are in the VB.Net IDE, note that the empty form has a default name Form1. Change the value of the Name property to House. Now your form is named House. Figure 2-8 shows the layout of the House form. As you can see, the form has a total of ten controls: one Form control, one PictureBox control, five Label controls that represent lines, and three Menu Item controls derived from the MainMenu control template. As the label controls just show where the rooms are, we do not need to worry about their properties. The rest of controls should be created with the properties listed in Table 2-1. a) Create Menu Items In order to create the GoToRoom1, GoToRoom2, and Close1 menu items, you need to do the following: 1) Highlight the MainMenu in the Toolbox window. 2) Hold and Drag the MainMenu template into the House form 3) Change the text of the first menu item to be Go To Room1 and the name of the control to be GoToRoom1. Note that the name of the control is one word and no space is inserted between “Go”, “To” and “Room1”. Do the same way to get GoToRoom2 and Close1 controls. It is noted that Close is a reserved word in VB.Net. We cannot use it to name a control. Instead we use Close1 to name a menu item for the project.
  • 25.
    Chapter 2 XudongJia & Shu Liu Introduction to Computer Programming & Numerical Methods 20 Form 2-8 House Form Table 2-1 Control Name Table for the House Form Control Name: GoToRoom1 Control Name: House Control Type: Menu Item from MainMenu Control Type: Form Text: Go to Room1 Text: House Control Name: GoToRoom2 Control Name: PictureBox1 Control Type: Menu Item from MainMenu Control Type: PictureBox Text: Go to Room2 Image: House.jpeg Control Name: Close1 Control Type: Menu Item from MainMenu Text: Close GoToRoom1 GoToRoom2 Close1 House PictureBox1
  • 26.
    Another Random ScribdDocument with Unrelated Content
  • 27.
    ranno, &' duròja fila moglicrc, lioras'amddcro pò la fua morte lafiiafctta.nma iipC del popolo finoaldid'hog fuo e di rubbc)accorrcric,pidi lontano, pcr^ nazzaipoucri re, ne dominar IO auolo molto micino alla detta che già (il difcc Ito lierctico, dC dell'abbrcuia^ Africani, e diochi. fono ncU •liorgi.vcgra nella corta del L:a cauallo.gli lamifchia con o. fono molto pcnfochcnoii quaranta mi> illaibuonpoc 'orthogallcfì, quelb città, è ctllo,nelqualc mura, (attedi 10 fra gli Imon hanno autI egli trouato J alo fette anni, angiunti deichi, domelhtà.peralloga nelle cale de •arueio altre)rina,&: dello a i pafcoli loloro camere, ben fatto,chc e la maggior I prima parte , & cltendclì li Sus.c larga marediveraTefemaet ichabitafo« fonui D E L LA F R I C A llfonuimoItevilIe.Vcafali.glihabitatoriviuonodelIelorc-.Dredioru.oA'^' „ , n '^ vfano portar canucia.ne cofa fatta con a^o DerciochVfr,^? ' ''[>''°'^ '^' nicllc.ncl vcflire nò portanoipanni,ntornolaIoroperfonaS.XS^^^^^^^^^^^^^ cofhnìKdiportareagliorecchirerteaneiKSdl™^^^^ ne porta quattro per ciafcuna orecchia . VVano anchn? T, "'°''f.S,''?"^-^ "'«^ ^«^ " ''a, che che peiano vna onc.a,con lequali attaccano r^?,ion^^^^^^^^^ lcmani,8^nellegan,bealcumcercl"SurdC^^^^^ perc.ocheIepopolari,5^pot,eregIvE^^^^^^^^^^^ V f>''a.ura&rnongI.fer.a;;oA'io!^ocotai"niX^^ fonmmoIi,lepacapnoli.etcerui,maqtrellegent. rgS^^^^ ro,a^ alberi,main„ìamentc noci.qucft popoli per la mS S n^» ? ""' "] "1°^'" """^^^ no di vn luoco in vn'altro. le loro armi fono cotah t Ìpp S f Ì °"° come gli ArabiA' va. c,ua.hannolafch,enagroira,comeèqurdv3fc^^^^^ .or^.dettoalS.fp..pe.nla|U^^^ Qiiefìo monte è fìmilmentevna narrarli Art, .«„«/• . . . B vcWoleuamec.rcaacinqtian m"gS.„oa mo^^^^^^ uidebuonapartcdiHeadaSusA^icIfrcoSjd naS i a^^ I)ahtato,madagentebarberacdaanederiuato ilnomfHdhH^r,, : *' i 'I
  • 28.
    JDatteiiclie nò ù'.iianotutto TauQO. ' n mienc. Ambiaca ne. Zucchero negro . Cordouan I Mano chini. _ Me[]a città, MclTa fono tre pfccoIcc.tt3,IVnav,dna all'altra quali vnni.gI,o,cdifi'catc dacliafìtfcfi.' Afi-,' gm accofio la .ma del mare oceano, & fotto la punta,nella quale ha prSoVi n oS ec fono .nurate d. p.etre crude, palli fra le dette terr.couole .1 gran HunieSiVenebate varca' f quelto fiume a 8ua.=o.ncl verno nò vi 1. può palTarc A" hanno cer^baSt^e he non ^^^^^^^^ atte fé .m per I. fatto tragetto.l I, to,dcuc fono polle qlle p.cdole dtti,rvn bSò faìuat^o iJ^^ di palme,.k,.iale e la loro poiTcITÌone. vero è che i dat cri che vi nafcnn,. nn^n f? *'» "«'«^o=ma percoche non durano per tutto Faiino . gli hab'tatSo tu7t"aIrS^^^^^^^^ "'^ '° ^°"'' no,auando crefce ,1 fiume.ilche e nel iettLbreS né .W d Anni? 1 ' ""T"" '' 1"''*^' g.oA- fe,lfiamefc.emaircnelVnodu erdueme n^ no poche beft.e.d.fuor.- fu la marina è vn temp.oTqu'rk ter^^no cS .n ^.^^'^^ ? '"^• cono molti h.ftona.che di quello tempio vfamprtScS^^ to.d.conoanchora,chealIhira,chelon%rofetafuSS^^^^^ terreno di Mc(ra.Hrau,celli del detto tempio fonotur^ XXd baìen.'&^r.n T ° °P? Ì marcmoltegroirebalenegettanelluomo^tejequahconlatg^^^^^^^^ ^^^ ma eh elle hunncporgono terrore à chi le vede.d.ceua ,1 volgo che oenfbalcna ci e mSr.n to il tempio,mi:ore per la v.rtu data da Iddio à quel tcmnio io non. P^., S . Y ^r T vedendoallagiorn/aapparnc,ualdKbalenaLrtaZn̰f^^^^^^ fo.dipoiragionandontconvngiudeo.midilTcchcnoneradTmnrnW I r . f . ^'^ requandu?miglud.lcollofonoaIcun fcogS^^^^ tohn,uouonolebalened.iuocomluoco,'d'^^uelladie?a"b^^^ fcogli.di facilec macerata &f muorli . per ilche pofc/a il mire I , nctn H W 1 !i i ^ ^" qudbmiparueairaim,gl.orrag,onedic,udla'Ìdv"4rFu fo c^^^^^^^^^ h citta . & per ilìrada trouammo apunio vna colta dvni di dette Irilrnr n,T, ,n fi À fotto laquale.con,e per vna porta /u camelli pallando , .rommo d^^^^^^^^^^^^^ aggiugnemmo con la telia.a- d.cdi che fono'preflo a cento ^ e que la cóft m oud luT' h ene.i^ ferbai, per cofa marauigl.ofa . nelu. pia v.c.nial maro ruouKrVe P^eh 1 3 e ne perlctt.l umo ilquale e venduto a mereatanu Ì
  • 29.
    Ponhogallch^o a qudd R^'Ì le D è^zo eh e quali meno dVn ducato per oncia.molti dicono die I VlW^n-. . , ' ." V^ per vi ic prezzo cane li crea, ahn aflermano diere lo f icrco d 1 ^S ,' X^^^^ --"f^^ genual.ddmafd.o,quandocvuolevrarcconlafe;nnaAÌacq^^^^^^^^^ —, .. , Teijcut città c{iSus, leneutcvnaanticacittàedificatadac!iAfricaniinvnaMlifnr«n„.-,« ^j- •/- . tiJVna parte d.rcollo dall altra quali vnfmghS^^^ quattromila fuochi. palTa accanto di lei il fiume Sroudocrr^n lf-T"^'}'^ '""° to,do, gio cV d altri grani S.' Icgumi.nafceui and Sn rnn nnnn?> "^^''°"f »"'^"^° d' fornicn. nobencuocere,nepurgare,pek.lde toS S^^^ mole, mercatanti diFcS, di Marocco , 6^ dal nacfe d' néa?^?n ' q^f'^^ citta vengono quant.ta d. datteri, quiui^ltra mone^anl fi Se iXoc^^^^^^^^ genti nel ipendere alcuni pannicdliapprenatiV^dùcato IvL vTfunro^^^ '"'' ^"^''S^"^''^ poco fogl.ono portar le donne per loro ornamento ?n?, 1:. truoua poco argcto, & quel ferro del^elo crea dVna onc.a.n ouanfi pod "S 'ecc t?i. -f 1 '^"'""" r'f "^'^^''" ^'^^' ''' non VI nalccma portauifi lol-o da alcum n on d Kcco i^^ ^.^^«^"' * ^^'"^ canta.o,chccceniocinquantal.bbreltal.ane ilorodurr,f nf T . ^^ valutano lette e vn terzo per vna onc a So: bncia e Sn^f ^^^^^^^^^^ ^'"T, T^T ^'"""' c.otto.d7ìlad.amanoR^thel.centorethcl°vnc^^^^^^^^^^ nuverromezzog.o;noeterXd"stS p^^^^^^ Arab,.nel mezzo della detta citta e vn bello & gnn ten pib ffl tf^tZ f '^ ^'^'"' noinpacc..c.alcunad^.lct^-::^^~^^ nel [ B A ncln Hea, pann drc/c none più h; lono^ maig! tornai tacittj piccio Tal lontan trcnta( ciuile,{ ffanza brii-ata J2 torivd fuccdìì ione pa laggi fv Io della Ja via ri( Garti prelTo o in qua, fi ucrquef pitanog aflcdiòd che lo lai m atener ualli.ilqu &"altemj nitiAda C Tedfii lontana d venti.cpa guado,&: dilei,iqua atta pallài tri.v'èvnt nella leggj gliAi-abì^ nellaqualc Tagauc fa di pietre Ver/o mcz: Sus.neline partii il p foccorfogli qud.'a.nclc
  • 30.
    15 H tL' A F R i gli antichi Afriil monte Atlante, nella fiate varcattc,chcnon fono anòfaluatico.ma no molto buoni, l^uorano il terreccolgono il niag ^ mo vn folo.hanimadiuotionc.di iizrò Maumctvomitò fopra il ttì mtc auicne,clic1 on la brutta fori.chepaiìààcandiito , fenon clic iiciorcftarfofpc rciochc fra lima B j tornare è turba- in vn di quegli le la vcggiamo, id tempo del Se , cli'crafiioridd i foggia di arco, alto, clic non vi la in quel luogo tei pLìcfi ambraservile prezzo )ndc oliò ambra illa dai membri liuifa in tre parlano, fo in tutto imo di fornicn/ ma non lo fan- p i città vengono ilmcntc buona »c anche quelle argcto, acquei certi pezzi di
  • 31.
    secondaparte no aMjdottja I oniburto,c a Gualata tcrrcdcll/ iìcgru u.n d. are due volte la fetcmana.,! loro hab/to è honefto,& lefemme bcliaiìme & «"a i^Snó molti hMomu1i^run^.quah^ononat.•diblancIM•£^d.•ner^qum.•nonédl■t erm.^^^^^^ regna cb. ba m.gg.or poteremo fu, m detta c/ttà tred.ci g.omi coi caSS stTS^ per comperar certe «fcbiauc per lo detto principe rannof 9 1 p. pnncipe tJanilnlùmomc, noie paricgiaiic, Icquali vfano di portarc.in qucfio mcmic nnn natr C,™,™, — * I |acopia&„Kllc.,mu,,oil,c„,p„'iciran,,o^i„c„rZ8rSardS^^^^ ^ „ , sito dclkreo^ione ài Marocco, tri . , ^ . , HZ'"^»f''* (^ittàdelLifnbra(Iettare:^,o>7e, tlgiumuba e vna citta picciola nel piano.appreilò vn fiume detto SrOV,,^ ^.r.^a a 1 I ia;;d,gran'd,/.t:Siri,';^^^^^^^^^^^^ a... «""P"'C.lcorpo,&caua, „cfuorMccrniurcr£S?a„or^f^^^ s,nco„„„aòarmab,,are,mafola„,cnK„cUccc feSe ^n^^^^^^^^^^ Sci;i;ra£itT^x:K^^^^^ ^'■''fx.xf* Dd^Htnuhé Q «crii fium dcll'ii niilc forte: . AjJai molte fonol giani, giardi aliai g intenerente,! alchini Imir B taverfi te alla r laquale fonolji quiuin; tiirima. ra,chcl£ cÌ2no a 1 quiuiall Tumc ci migli; ti.hanno molelha dodici, 0( uor di coi Arabi,iqi ciole&:di C tomodo,< quelta tcri licdiPor Qyeftaè ncntc.i4.n daitcri,&: l fiume alle , mangiano gioronolu Maroc fia in vna j Giufeppc fi gente ni qu A|;'"et,ilc fulabricatai rcnoj&iquai quafch'vno ( fa, ftttcdic
  • 32.
    iella città, vcngo>D et il mercato vfaSfgratfofe.fono iatodominio,ma lei Serif principe verfolcuantecfr uomini valentie. allo, co certe pic^ ma orgio in mo| mar poco il fi ederif tentò più voi • i l lanellarcgi'ondi tatori fono imoire guerra pera 0 vincitori, go- *. D E I r A F R I e A QlTcaacittncvnaqranfortez^atr'^''''^'''- "'^ «erli altri montKfouo la dcuaoneiana^^^^^ fiume di romorc. porci ,dc
  • 33.
    SECONDA PARTE appellatoTcnfift . è fornita di tempi, dicollcgi.di ftufc,&: d'hoiìcnc, fecondo ilcofìumc d'Afri- D ca.a.' Ji qucfli tempi alcuni furono edihcati da i Re di Lontuiia,ct altri da i loro fucccirori,cioé da i Re di Lliniiachidin.ncI mezzo della città ce n'è vno veramente belliflìmo, edificato da Mali fi^ irliuoio di Gmfcppc primo Jic di Marocco, &: chiamaii il tempio dHaliben Giufeppc : ma'vi» lucceiior nel detto ietvio,il cui nome fu Abdiil Mumcn,fcce disfare &.' rifare il detto tempio non per altra ca.£;ionc,chc per kuarne i primi titoli di Hali,&: poncrui il fuo. tuttauia la fatica di coilui ^11 Mana.r fu polb indariio,perciochc le genti ancliora hanno in bocca l'antico titolo . Hauui etiandio xoMo. qi"*' vicino alla rocca vn altro tempio,ilqualc fece fare detto Habdul Mumcn,cliefu il fecondo, che per ribellione fuccedettc nel regno,^: dipoi il fuo nipote.xl Manfor l'accrebbe cinquata brac eia da ogni lato,ornandolo di molte colonne,lcquali fé conduccre di Spagna , dC fece tar fottodi elio vna cilìerna in volto tanto grandcquanto il tempio, &: tutte le coperte del tempio volle clic follerò di piombo con certi canaletti ne gli orli , fatti in guifa,clic tutta la pioggia che cadeua fu'l tcmpio,correndo per quei canaletti era riceuuta dalla cif ierna.fcce anchora edif. :c vna torre di pietre laiiorate OC grolTjrimCjCome e il Colifeo di Roma, il circuito di qucrta torrt, contiene ccn to braccia di Tholcana,&.' è più alta della torre degli Afcnclli da Bologna, la fcala, per cui s'afcca dee piana dC larga noue paimc.la grolfczza del muro di fuori dieci, &■ il maffo della torrec proffo cinque, ionui dentro lette ibnre agiate od molto belle, vna fopra l'altra , 5C per Tafcender di tutta la Icala li vede grandillimo lumc,percioche vi ha dal bado all'alto finenre bclliirimc 8C fatte con grande ingcgno,lequali fono più larghe di dentro,clic di fuori . come fi giunge alla fommi- £ ta della torrc,truouali vn'altra picciola torricclla,la cui cima, ccome vna guglia , dC cinge venticinque braccia,quafi tanio,quanto il maffo delia toncè alta come due gran lancic , SC fatta in tre k
  • 34.
    Icoftumcd'Afn'-D fuccclì'ori,cioèda lifìcatodaHaIi,hGiiifcppc:mava dettotempio non ab fatica di coftui Hauui ctiandio ,chc fu li fecondo, )bccinquruabrac &^feccrarfottodi tempio volle che iachc cadeua fui ; .e viia torre dì Trt, contiene cen ila,pcrcuis'afccn delia torre e grof■ pcrrafccndcrdi bclliirimcà: fatte jnjreallafommi- £ , 5i cinge venti' rie, &: fatta in tre guglia e vno (pie 'quello difetto è bpva.cornclhuo l'alLuio dvnana kieiluuura , non intagnadi Azi^ ianuiCjClie fono tro non e uiolro ura, come molti pii,chc fi truouiji farui dentro le iH'habitationi, di. idarcj per cagiotto tempio fòleprefcnte non fé . il tcrrcn vacuo »oflbno tener di ^ adire, chequecntofci anni,che ;noric. Dette ventiquattro di aham fuo figli) nato &:accreAbraham , per^ « giornata , il Re | ittà, di maniera, nmino accanto icli non ii conti Mumen,clie afledio di Alale cgh' pcructiteua.MaHabinonvolea per to di notte a caìj&rfconofciutOjdrizzò D E L LA F R I e A A tOjdrizzòncaiialfoavnaruDcalri'mnn ^j,«^- j '^ iTtialii.furnnntrAiiirtr-,.,^ r-_ i ^ . - ..'"F'J"lti'runo, tutti rirninrf. u S'ande e qudlo di didanari nebifogni^mafempre^loroauuen K^q S^ ftrett. a lafciaruegl.;in tanto,che tennero a mara^iuno^^^^ ^" ''n"3le furano co quef^epomafurono iui meirefottoataleinfluffol I^^^^^^ qud luogo rimofre.aggiunge anchora,che cohdt vKó^ caperilqualccofirinlealcunifpiritiafiarliDeroe'tuL^^^^^^^^^ di Marocco,per difenderfi da i&hrift.anX òS cT'' ''"J^"' "°"^° '' ^lafuperfiitioneddpopolaz-o trarI^d.■H,^„.^w.l ' , ''' ""t^/c'ierncndoli della credila qudleefjl.Iamaglofnob'^FtS rtt^^^^^^^^^ poicheilmaritofeceedificar qudtempiopeH fafS an^ qualdiemcmoriadifefkiTa.vnodeipropionWr da Re,quandorandòan,arto,&:fattSar étren K^^ laS^apparentelacima. cetiandionXdett. S^^^^^^^^^ SoaaegnatoalloltudioAricettodiduei'r^hS n.S .^ ^ladouefileggeuanetempiantichiAogS^^^^^ C &: ,1 vdhre vna volta lanno.^ i dottori per loro filano .?.!., ^ ' ° '°"'8'° ' '^^"'^"^ '^ ^P^re, to,fecondo la qualità delle Icttioni^cheefTì e fno ob 4^^ ^'" cento ducati,^ dii dugen dcttocollegio,chinoncramoltobeneamn aefLto Si^^^W^^^^^^ beli. mofaichi,&: doue non ha mofaicht
  • 35.
    fSmuS dKZ' l^"!,^^'^""^'»''"°go è ornato di inuctriate, tagliate in fogliami fottili . à: altri°auod ù^^^ ^' ''"^ P'*""'^ di terra cotta fiIegge,&liportichico^perti.6^tut toSt^^^^^^^ E^zuleia come fi vfa anchora nella SpagnaTmc3^^^^^ ^^ ^'"'^«"ano «orata A fatta di bianchifsimi marmi mSSw-- ^ a ?''°^ ^ "^"^ ^°"''"' bdl.fsima, laododire,grannumerodifcholar/ SgS rant.fs.n,oIegifìa,ilqualepocointendedWaST^ '^'"J'J"'.'^*^"^ Marocco , hebbi domdlichezza con vn S ce Sr'r^nT° ^' ''-''' H''}''' ' '° l"'-""^- ^«' '" nni^orie Africane, ma pocoperitoneTewJrC^^^ fece.nquarantaanni,chefunotaio,& auSdelRr^H^ ^^''° P^f ^' P''^"'^^ ^'>'cgli bl«a,miparucrohuominidigroab,neepnon^rfpL^ ftoSignoreincampagnadoudoroSSv^^^^^^^^^^^ fonoanchorandIadettarocca,vndidodXnL^l^ r V"^^^^^^ fattied.hcardalManfore.nel pSche S^^^^^^^^ °'-"^"' '^"'^1' ^"^"ono «•> .qualifoIeuanocfrercinqueccmr^qfS ;iV^^^^^^^^ S"ore,quandoiìnioueuada vnluogo al alVroVneimbt'^n ''"'''"'"''' ^'"i^P'"^ ^'"^"^' ^'«'■' V/aLei P''^^'^°^
  • 36.
    Il i} •'!;'.:SECONDA PARTE trctnm.- 3xckriA' vn poco auant.' al paIaz=o,c lalbcrgo dV canccll.cr.;^' fccrcrarulniialc nella Im D sua loro e cl..maia la c.fa d . ncsot.j.I terrò cdctto .1 palazzo Jclla tutoria, ik .uSof te e uano arni, e. le nionu.on. della cma.d e vn'altro v,, pico piii oltre al detto. , elquaE oyu uà Il nuìcl tro d. iUh del l.onore, &' viono allui fono tre i L.lle latte a voIte,,n c/afcu na I eS pof fonoca;m- apatamaKedapntocauall,.ronu.duealtrc(blle,.naperl.nu,^^ to nu,l,,.A 1 ..Itra per le cat.alle S^ mule che caualcaua .1 Rcapprello alle dette i al er'l due cn na.hut,pureavolt.a:„uiue(olaKnel/ola,od.gu,,teneuan 2o pe. I. e tiall..neli altro r.poneuano .1 tornìento,&: e tale,chc cape m vno ihìL p.u d. tré a nn' la rug,^,,a' ;Ut, et at. nell'altro.dottc fono fatti certi huchi a polla fopra ,1 vetto:&: eu .i vn ab ma na d. p,etra,aMe beli.e vanno car.chc hno fopra .1 te.to,& iui li mJfura , &: poi Ina I d n ro pej canato d mettono (enra fatica.piu oltre anchora ce vn bel palazzo ilouale cri I ìfclnioh d. fi Sl.uohdelReA'de.;lultridellaiuafan,iolK..inquenocvtì!u,e|.,irm^^^^^^ ^^^^ concerncorrK!orMntorno,f^c6lKll,conr,n,mmoa^^^^^^^^^^ oro.c e vn alno palazzo,nelquaIe d.moraua linuln,ente la gua, dia d. e rti armati vn ho mol. to grande doue .1 ignore daua venerale vd.enza,&: vnaltro doue tcneua pIì ambali^u dór° qut do gì. parlauan gì. kcretan, . ^'e ne vn altro fatto per albergo delle moglidel Re dam^ elleS . eh.aue . vn alno apprel o cjael to dutifo in molte piarti , per h figliuoli >t detto , e o paCelh . cKeeranoalquant,grandcttqMud.fcofto verfbil.mtrodellaro^^ ^licr.lpoS;:d aca™a ^ e vn bell.fs.mo 5^ gradiamo g.ardino,nclquaIe ha og.ìi forte d'alberi &: di Bori. &: etZK « a tutta d. marmo quadra,^: profonda (ette palme.nel cui mezz - i vna colina d,e ofilne vn icone pur duìiarmo fatto alllt. maelìreuolnientc, dalla bocca delqitale efee^-ln ^ aa,ua,che h nuerfc.a nella log^gnA' per ogni qttadro della detta bg.wfewo^^^^^^^^ ^"^"'^SShemvnnSnlcdiAf ,o ci, „uc- ^•^'^""' ' ^' ,*^ '" vn monte di Atlante,difcolto da Marocco centocinquanta m.olia . annrcHo del ch,c. verde K|ard.no v e certo fl^raglio, nelquale I. rinch.udeuano molte faluatiche herr a m
  • 37.
    Sic et ...onde. PYHMcon,cTruK'capr,ol..evero,che.leo.aihauetunofeparatafbnradalSa T^^^^linl,oraquJluogocdeuo,latanzad-.Ieoni. qudlepod.eidimqucd. ve .o | 4" o„;^ :ipe Wari(or. foi.]Uflln ni (]ual Ralis medico de dico I Tuo '" >^ ' . , ' ; '"'^"'"'" ^'-"tTc i iion,iono i nidi loro . fu certo audio M infor vn gran prmc.pe perc.odìe l.gnoregg.aua da MelTa per inhno a Tripol. d. Barbma chcTla nar ep.ut.ob,ledAfr.ca.&nonl.potcafornirqudtovia^^^^^^^^ ..,e..co ... ^pl^^f ^ •" qumd.c. l.gnoregg,aua etiand.0 nella Europa, tutta quella parte d^H H ^^.n det. F d.co .luoi taCjranata,&checda rariHafinone aprouinciadiAraaon &'vn, N,,.n. . ^' r>^a , hbn. fanchorad.Portogano.nefolan.ntefebbel.^rrdS^^^^^^ dd Mumen^Huopadre Gmfeppe,eIuilacobeIManfor,&ft,oftgl u^ che fu rotto d^ vinto nel regno d. Valenza,&: furon mortide fuof, à ga te da catello sTd^V fenantam.lahuonuni,egIdaIu6lafuaperfonaAtoniomaiMaro;coSc^^^^ ^^^^ vmor,a prdo ammo feguttarono Timprefì, anello (patio di tre.ua ann rmipe o "ò V^ Icnra,Uenia, Alleate Murzia,lanuouaCarthacine Cordona Siiiicrlh [..„«/ vi J^ lbmemorab,lrotta5coccilione,,ncomi,Ki6àd?c5;5arh^^^^^^ metto,la(cio dieci hgl.uoli huomini fatti,iquai tutti voleuano viurnarli^ Iwn^ ^M ? ne,che I. vccidellero tra loro A^ che app^efTo il popoSr^ que contorni , (. (olleuó etiandio il popolo di Habduluad S^ recano T^^^^^^^ m ' ^ '" re di Tunis S^ faceua Re chi gli pareua^cotal ftne hebb rmW^Io dTj^ f^ ° Ì''''% A ; cani Mu dini mot crea vno. Ncg allad rocce tjua,^ Jiain inors luron dacer trouai t]tiale B rocco, che pei ilnalci uerfa f pi, voi r vn ceri: rono a ■ 40 forfè me con Hani rocco cii mino pe glii.dal I da Marc «imnici ( Taallign C liberale a gnorc.or trecento ( porte dell iàvnagr^ aie perche di cz A' molti cau; tadi(chiO| glie del lig gouernaie Pofciac mente, hot fc,que(ioc «Hea.èm ièmiiuorz ■ciuilitàaicu guifa diedi re &: toccar*
  • 38.
    l'Iqiialc nella finD iiu|udtolitcnc ualo allog^iaua laddlcqualipof 'vicapcnoccne erano due gra :llo di fopra,l'or più di créta niiVlui vn. (cala pia ttali dentro per aprono, Sxl coli lafcliuoladìfv miin quadro, no al d'intorno ìmoazurro QC .vn'altromol^ ) a fa ad ori, qua^ :, damigelle 8^ cioi per quelli, « : illacampairna, V euui vna log rhefofticncvn ?i'abondeuole rdo di marmo oin altroluoi.apprdlo del icgirafcjcletri animali. 8^ iioionorima^ i del Manfor» )uc albergano ;o di colomba, :etto delle l'm^ , ff in altra di 0 Manfor vn jdicclapar^ irni, de per la lifpagna det' ] :di Cartiglia, 3 auolo Ab^ ietto Enaiir, allo de da pie, riliianiperla )erorno Va^ Jcda.pcrquc 11 orto Mau^ lidie fu cagio di Fez, Scili leuò il rctto> enne dipoi il n.vltimanici Arabi, qualonti. quan> ibnu AbduI ni delle diro «9 ( Agtn«crcrMdtta*,vicinaaMarorr^ *^"'"'' ""*• cam,iu la colla dVn mo.ne,pur d, queSdTA'tbm." r'^"'',?'' 7«''^' «•'^'^^«=' da gliantid,i Afr/ AI»adi.du,fumoltociu,le,&d,Jm^^^^^^^^^^ B «;mopcrlacoltaddm5tc.&:ilf.unieSXm^ giM.dal hume imo alla città e vna cai -paeS^bo£m^ , l'° ^' Han.mmci, cirVa a quindid rni da M arof co fino al fiume, poir.ede d I ,S d^M '^i^'-''"'"^'''^ ' '' c^^ ti.mmdcrotto.ldonun.o'Lfig^^^^^^^^ raall.gnordiiVlaroccoa:agli!rab.W Cl.beralea^animofo,neliaucuafcdtàanSnSL / T°'"P°P^ gnorconde rubito gli conuenne -noCf^no deZ ' ? """''^^° ^" ^"° ^'° ' ^ «^«0 «! .recenK.caualli leggieri de Clmftan. PorSS^^^ porte ddla cuta.6c egl* con cento cauall. Ì Si aS^^ '°''"i^ P^r mrmo alle favnagranquant.tadxdcmArabi,&deCWaninL^^^^ di czA' dimando a coUui certo tributo i!n„^£ . i r ".""«^«^"'o venti . venne dipoi il Re rioIt,cauaiI.^balelirteri..ir,gno3^^ tad. fL-iioppo nel pcno^ft" tolfo cadde mo'^Sl e t Sn ' ^k"^'^''^' '''^'^' ^'^'^^ P^'' ' gl.eddlignorecondufl-emolfi«ob,Iip„JnSr^^^^^^^^^^^ SouernaiwWidiparnndl'anno.pz./^ "^"''''"'"''"r"3n°ddRe.,lqualclarciatou"vS Porciad,edmol,abbiamoddIareg/onSwnf . , mente bora orilinatamcnte feguend^Sndvr' 'T'^'' ''^^ fe,que(ìo e vn nionic delqualedi vSfo t "emc f n ?"" f" ^^"^"^'•^ P^^ incominciare da S
  • 39.
  • 40.
    ^n SECONDA PARTE i r; % ■i' 1 li duicnto come vna nracaa di cucina, fanti firrno quell. che Io volfono siovzo a br canìho d vn («o cuuallo.chc potcua valer d.cci fcud. per vna mu fpada che non vT cua.nfcxvno5^nu'=.o &:c,ucaoproccde.perc.ochenon vanno m . ' t li'.'J^^'V"^ '''"1'',^" Icltradcperche que. luo^h, fono per lo p.u tenutrd" lUni m mal STciidaloa^^^^^^ Semede monte» Srf^lf V n;òtc incommc/a dacontìn. del fopradetto,a^ fono frparat.' iVno dall'altro dal fiume SeLaua A clitndcli yerfo Icuantc circa a venti ni.^I.a.i fuoi hal^ratori fono vii roz ° ^ nZ fcnon al e volte d. qualche pairag^icro.che paia loro che fia pcrfona intcndenl^b a iX ? vnà nottefuldettomontc,mcafadun reIi«iofotra loromoItoLorato^^^^^^^^^^ del cibo che eli . mang,ano,c.oc farina dor.?io téperata con acqua bollènte inlieme con cm^"^ nedtbeccoc Kmoltrauaalladure=zadihauerepiudifettea2n,deta S re^ ne dormircfu la nuda terra onde leuatomi la mattina per tempo, &'penfandonidW^rii Con,e quello che non fapeua i v/anza loro, mi fu fatto dm torno cerchio da più d°dna .?n a ner d I htiSMo loro nfpoh, che non fapeua niente de fatti loro.a!ll,ora vennero innàri ^e r^ "i^Shuo rìm.,c.oc tre d i pm riputati tra loro,dequali vno d.lic.sent.riiuomo voi forfè ntn oc^e" coftu B ' ine noltro.nol tro coitume c.che niun foreitiero fi parta da noi, per mfino ci -eZò ha bia n°ol ' to bene afcoltate &: decife le noUre caufe . ne appena hebbe fornite quX paSX m Wdd ef ' fcrIeuatoilcauaIIo.or.dee8l.m.fufor^ pcrilciboAliper.ldorm.re:HaoclK-oltreimolti.ntriciìMìòerachidilorofS^ ^Iapa^rola:&:conuennemiellereparimentea'giud.ccc',;otaio.incapo^ che cir. mi forebbono la feguentc mattina vn prefcntc honorato & nobile . peScSe narnc mille anni la notte,p.nfando fra me IfelFo d. riceuere qualche buona qu nt t?d.^^^^^^^^^^^^ onS parue la lucerli fecero federe fotto il portico d Vn lori tempio. & fatw ct?t o n ne nc^^^^^^^^^ ciocia cunodiloroavenireamecolfuoprefente,2Cbadorommi,lapoSd vngal!o,talcvnasuraad.noce,vnodueotretrecciedicipoIfeA'altrodiauho a'^^^n^^ rn. ccedonod vnbccco.lequalcofe non l.trouando alcun che lecomp a^^^ nari in quel mote le lafciai al padron della cafa,per non volermele portarSo miX adunaue
  • 41.
    Fcmiohebbi,odellafanca&:d.fag.odique8iorn.- eglièverocheanqua^^^^^^^ mi accompagnaronobuona pezza di viajaqual non crafìcura* i«*a>qu"K canaglie , Scufiud monte. Seijtuamonte, '^ ° ».fr, "^ 1 " r'ù " "^°"^7'P'^"o '^'OS"' faluatichezza , altiffimo & molto freddo . vi fono di nìol mm, bofchMie mai di quindi li leua la neue.gli habitatori fogliono por^rd e pò cert^canTel hb.anch.A'vilonofontaneinn,oltacopia.i dcunccordfccUcpcrdifmdcLclcJhnciT ".*'«^°PP'"''°'"°^ Tenmelle ì»]
  • 42.
    iifvnvifiicficfniD ada chenon vaitiin quella parda huominimal di s'incomincia a l'altro dal fiume rozri, de poucrai»ionc alcuna, io alloggiai vna nncnii mangiar ic con certa cardio mi conucn3mi di partire, fi cinquanta porrci: terminator :itrc gcntilhuo nfapctciicoftu E nò habbia meiche mi viddi efc amare notti, fi rncfcriucrevna ' giorni ditrcro, Ichcàmcparnc ucati.comcapione.uicomin-j ciicmi portò de il più nobile r non *;lTer daucflo adunque quelle canaglie ' I nome, quid icontinouoco inclc.ÒL'dicarrtc fabbrile, ài ^ he poche facce >.necalcina,ne detto . hanno conofciuti,chc pagnarmi , ( fono dimoi' acerticappcl' :1 detto monte ì dell'anno tc^ fieno &: certe in quello niU' ibutiro.fono nni, Scialerò negli anni «S^ nofcarpeseca gamba, con Tenmelle {»] lo dottifnmi,pcrciochc lutr. lìTnn n "?.^""fO" Tonogéte maligna & nel . l.' ' '®S'' G-j ' ('tdmcua monte, "«-vuipigae. '? Qiieflocvn J YT fi'*ntty
  • 43.
    :J|| 4 ySECONDA PARTE cotqu.ilc vcJcfTc Fiimc.to veramente Io trouai tutto puro , tutto hcnfjrno.flif tutto pieno iUchirU fà.vcltoMo ciucile gnici.di certi camicioiii ^attl di lana.corti SiC (enza inaimhe . iquali tendono d< fopra .ilìai Urcttatiicnte.vfano di portar certi pugnali torti & larj;Ii/,mafottili(ìinii vcrfola punia,&: t igliano d amenduc le parti,et le fpade portano come quelli di Hca.fanno ne loro pacli vna tìera,clie dura due mcli,ncqualj danno mangiare a lutti i foreltieri che vi li truouano.qiiùilo ben follerò dicci milj.comc sauicina il giorno della detta fiera.fanno tra loro tre gua,fi<: cialcuna="" parte="" li="" cic="" vii="" capitanocon="" cento="" hnti.per="" guardia="" dc="" fecurti="" dclli="" fiera="" quelli="" vanno="" difcorren="" do.="" punifcono="" chi="" fa="" male.fecondo="" la="" grandezza="" del="" peccato.ma="" i="" ladri="" gli="" ammazzano="" panandogli="" da="" vn="" canto="" all="" certe="" loro="" partigiane="" lalciano="" ti="" corpo="" a="" cani="" .="" falli="" queita="" in="" vna="" pianura="" fra="" certi="" monti="" mercatanti="" tengono="" le="" robbe="" ne="" padiglioni="" ceree="" capannctte="" latte="" di="" lr.ifdic.etdiuidonolvn.v="" forte="" dall="" maniera="" che="" alirouc="" hanno="" venditori="" de="" pannia="" altrouc="" quegli="" vedono="" mercerie="" coli="" altri="" mano="" mano.a:="" bcllic="" liano="" fuori="" padiglioni.ogni="" padiglione="" ha="" daprcito="" cafettanuredi="" lrarche="" mangiare="" forefticri.="" loprartanti="" cura="" prouedcr="" dintorno="" alle="" fpefc="" fanno="" forclheri.ma="" anchora="" ciic="" fpendono="" ncllu="" vendita="" dette="" gua="" due="" tati="" li.="" perciochc="" vengono="" cotal="" licra="" huomini="" tutta="" quella="" regione.a:="" ctiandio="" paefc="" d="" negri="" fatmo="" gran="" facccndc.in="" ime="" quclii="" guzzula="" fono="" grolfo="" ingegno="" mirabih="" vero="" gouernar="" con="" quiete="" et="" pace.la="" detta="" ii="" comincia="" nel="" giorno="" della="" natiuita="" macometto="" alli.iz.di="" rabih="" mcfe.j.dellanno="" haraba="" fecondo="" il="" lor="" conto="" io="" luiin="" scrif="" principe.="" giorni="" per="" pucerc.l="" o.="" rmomdiduccm="" duccala="" prouincia="" dalla="" diponentc="" incomincia=""
  • 44.
    tenlift="" vcrfo="" tramontana=""tcrm="" na="" mare="" oceano="" s="" dal="" lato="" mezzogiorno="" fiume="" habid="" qc="" vmmirabih="" quello="" poncnte.quelb="" regione="" e="" lunga="" quali="" tre="" giornate="" larga="" circa="" aduc="" mol="" co="" popolofa.ma="" popolo="" maligno="" ignorante="" poche="" citt="" murate="" vi="" truouano.noi="" diremo="" ci="" v="" degno="" notitia="" luoco="" luoco.="" azafi="" fu="" riua="" oceano.cdificata="" anuchf="" africani="" h="" quattro="" mila="" fuochi.a="" molto="" habitata="" pocaciuilt="" gi="" copia="" artigiani="" furonui="" cafc="" giudei.il="" terreno="" ottimo="" fruttifero="" habitatori="" poco="" pcr="" cloche="" noi="" fanrio="" coltiuarc.ne="" porui="" vignc.vfano="" bene="" far="" qualche="" picciolo="" horticello="" allho="" ra="" forze="" dikc="" marocco="" cominciarono="" indebolirli="" rcfle="" certa="" femiglia="" famiglia="" i-arhon="" tempo="" mio="" reggeua="" valete="" lignore="" era="" detfo="" nome="" cbdurrahma="" haueua="" regnare="" ammazzato="" fuo="" zio="" dipoi="" pacific="" atta="" re="" r="" popolare="" capo="" molte="" genti.detto="" hali="" figliuol="" goelimen="" opera="" f="" fl="" ichiaua="" madre="" lei="" giacque="" pi="" volte="" feco="" delche="" egli="" hauutone="" auifo="" fchiaua="" riprelc="" moglie="" minacciolla="" morte.ma="" dimoftr="" non="" farne="" ella="" nondimeno="" conofcendo="" maluagit="" signore="" fece="" intendere="" colui="" guardalte.="" adun="" que="" nomc="" fua="" vita="" rifolfe="" ammazzar="" jui="" fcouerto="" quclto="" fegreto="" ad="" vno="" giouane="" ammpfo="" molta="" cui="" fidar="" fi="" potcua.ambidvnmedellmo="" animo="" mctealtro="" chctempo.="" acio="" atto="" afpettauano.="" ke="" altra="" partc="" dvna="" felta="" folcnne="" fatto="" dire="" volcua="" doppo="" compimento="" delloranonecaualcarealquantoconeflblui="" cagionedi="" follazzo="" perci="" attendelfe="" certo="" luogo="" penfierc="" vcciderlo="" n="" al="" tempio="" tutto="" chiamo="" compagno="" dilte="" venuto="" congiura="" haudie="" eltetto.ilperche="" dicci="" fkmigliari="" armati="" bencsc="" prima="" ap="" prcttare="" bregantino="" volerlo="" mandar="" azamur="" poter=""
  • 45.
    quando="" bifogno="" tolte=""fuggirc="" detto="" puto="" hora="" pocoil="" lignor="" vera="" entrato="" tutlama="" oraua.eftendo="" ripieno="" popolagli="" animofi="" ben="" difpofti="" giouani="" compagnia="" entrarono="" dentro="" apprclfanfi="" vicino="" faccrdote="" furono="" ano="" impediti="" fapendo="" quanto="" eft="" folfero="" gradi="" appreffo="" lui="" niente="" fofocttaua="" tz="" dalli="">o^'nvnmeddimo tempo, quel dmanzi gli cacciò la fpada nel corpo,&^^ «ógmiati. mor*ugrandeAlaguardiaprimieramente? nkjltòiduoi,.mafoprauenendoi4i€CÌcoaiefpadc ignude. A ign per pias satc aedi ronc certi fare ^ volle auifai fadoi ! fl^coi i quel e iicura duna archili lagabi nuocci 6 ardili! choler; no vnl ncfug^ la detta Icijcfli < fmarrin tocinqu fopragii di arme, ii,&:2oo lagne di lafabrica tocapo.t lifcruitoi pitano d< qual città ftahiftori Q na della ci teuohaue Ja campai; ne con il e •IRcdiJVl to venti,c< Contee rono qudl Titccitt pralamarii •n molta co che velie ali quando fu I «0'&:ndmi( potendo far wefTariOjfec frocradisha
  • 46.
    pieno d/cfiaW- Tiualncnj»ono dj invcr(ohpuneloropaciivna ino,i]iiàJobcn ^ciafcuna paranno diYcorren li ammazzano :ani. talli qucdixlioni, Oc in laniera clic al^li altri dimadaprcflb vna ì forcHicri , èc nnoaforcdic;nanoductan :I pacfc d'i ne^egno.mamiorno della na- l onto.ioluiin I intana termfcdi Vniniiraduc,&:èmollano.noidirc" :irca a quattro ,&^flironuida ingegno, pericello.&aliho erta famiglia, era det'o per icó la città, &: innamoratafì ien,per opera ] b dalla fciiia). ella nondire. Hall adun irJui,&^fcontcn'a.dicuì afpettauano, olcua doppo :o , de perciò tempio. Hali e la congiura rima fatto ap ndo bifogno rato ,&tut' ^iouani,con :, non furono bfpettaua.di ugnale lo ferì k fintilo, il ru icoaJe.rpade ignude. il igtitide, pcnfando qucfio e fTcr Hato rr .r Mr« ^ f '', ^ ' ^ ^ li pcrn,odo,cl,ealtrinonrin,areon" " '^^^^ ' acclKto,&
  • 47.
    l l! S»ffoTe nercino. Gcaiio fcr uaio cento anui. :ri SECONDA PARTE ElmedinaaitàmDHCcalit, j EImcdina è vna città m Duccala,8(: quali capo di quella regione, laquafc e tutta murata di ccr fé mura,che fi vfano in quel pacrc,piu tolto vili, 8C triiìe che altrimenti.il popolo che nel vero fi può direignoran te, velie pure di certi panni di lana, che il fanno là,ct le loro donne portano mol ii ornamenti d'argento &: di corniole, gli huomini fono valorofi, dC hanno gran quantità di caualli. 8C quclh furono trasferiti dal Re di Fez, per fofpetto d'i Portogalleli nel fuo liato , perciò^ che egli 11 auidde d'un vecchio,capo di parte della terra, qual conligliaua il popolo a da'r tributo al kedi Portogallo . £C lo viddi menare in catena , fcalzo , dC n'hebbi grandilFima compaffìone, perche il pouero vecchio fu isforzato per necelTitaà far quellochc fcce,confiderando ch'era meglio à pagar il tributo, che perder la robba Od le perfone. per la liberatione delquale (e intromcHcno molti, apprefl'o al detto Re di Fez, talché lo fcciono liberare per via di pagamelo 8(:d*poi la città rimale dishabitata,nc!ranno..9xi. * Caiitopo'i^ città di Duccala, Qucfta è certa tcrricciuola fopra vii colle di falTo Teuer tino, fuori dellaquale fono molte folTe, doue gli habitanti folcuano nponere il grano. dC dicono quei del pacfc,chc nelle dette folle è (iato ferbuto detto grano cento anni continoui fenza guaftarli, ne uiutar odore,&: fj la moltitudine delle fopradette folìè limili à poz^i, è dettala città d'i cento pozzi, il popolo di quelia città e di niun conto, perciò non vi lì troua artigiano alcuno, eccetto certi giudei fabbri . 8C nel tépo che il Re di Fez condulTc il populo di iilmadina, ad habitar nella f uà regione, volle fimilmente con- v dur quelt altro, ma cllb non volendo far tal mutamento,fuggi in Azafi, per non voler laflarla patria, il Re ciò vedendo, facchcggiò la città d'i cento pozzi, nellaquale altro iion trouò,chcgra no, mele , àC cofc grauijSt: di poco valore. Siéeit Città nella medefima, Subeit è vna picciola città fopra il fiume di Ommirabih verfo mezzo giorno , 8C e lontana da Elmadina circa a quaranta miglia, è quelia città foggetta a gli Arabi di Uuccala.di grano è mol lo fruttifera OC di melcma per ignorantia del popoìo.non li truoua horto ne vigna alcuna.et pò fcia che Bulahuan fu rouinato, il detto popolo fu -idotto dal Re di Fez, nel fuo regno , Óc diegli vna
  • 48.
    picciola città diFez, ch'era dishabitaia, èC Subeit rimafe diiierta, 7 racoQ* Temcracoft è certa pica'ola città in Duce .., polla pure fopra il fiume di Ommirabih,S<: fu="" edificatadjllignorc.ch="" perci="" e="" detta="" da="" quel="" nome="" fhcir="" t="" ca="" a="" quattrocento="" fuochi.="" in="" ioggetta="" al="" popol="" di="" aremur="" ma="" nell="" anno="" che="" azcmur="" f="" u="" prc="" fo="" portogalleli="" la="" citta="" and="" rouina.="" il="" popolo="" l="" transferi="" tlmadina="" terrei="" terga="" picciola="" citt="" fopra="" fiume="" ommirabilvlontana="" circa="" tr="" miglia="" molto="" habitara="" fa="" quali="" trecento="" fuochi="" quelia="" fottopolta="" gli="" arabi="" cuccala="" poi="" prcfo="" azat="" capo="" parte="" chefucontra="" ha="" j="" bitouui="" alcun="" tempo="" inlicmc="" con="" molti="" valenti="" huomini.="" pofdail="" rcdiferlo="" fece="" andar="" nel="" fuo="" regno="" conia="" fua="" famiglia="" maniera="" rimafe="" albergo="" delle="" ciuettc.="" bulahuan="" bulahuaii="" vna="" edificata="" ommirabih="" .="" cerca="" cinquecento="" habitata="" nobili="" liberali="" huommi="" mezzo="" della="" lirada="" per="" cui="" fi="" va="" fez="" marocco="" cafa="" molte="" ftanze="" gran="" dillima="" itala.a:="" quanti="" padano="" paefe="" amoreuolmentcinuitati="" lianza="" fpe="" ie="" del="" popolo:="" perciochc="" cito="" ricco="" grano="" sc="" beliie.="" ogni="" cittadino="" cc.i="" to="" paia="" buoi="" o="" poco="" pi="" meno="" fonai="" quegli="" raccolgono="" intorno="" mille="" me="" alcuno="" tre="" mila="" ne="" fono="" compratori="" fornifcono="" tutto="" tanno="" nouccento="" diccnnoue="" re="" mand="" vn="" fratello="" difcfa="" goucrno="" rcgioti="" duccala.ilqualc="" giunto="" vi="" appreiro="" nuoua="" capitan="" azemur="" douea="" ve.="" nir="" facchcggiar="" ciit="" hr="" prigioni="" habitatori.ia="" onde="" egli="" fubito="" ifpedire="" due="" capitani="" duo="" caualli="" ottocento="" balcftrieri="" fauorc="" punto="" qucfte="" genti="" arriuaiono="" anchora="" gente="" portogallefc="" laquale="" haucndo="" aiu.="" oda="" facile="" fuper="" difez="" ch="" riflrctti="" piano="" tutti="" menati="" fil="" fpada="" dieci="" dodici="" infieme="" col="" rimanete="" deu="" lo="" efercito="" fuggirono="" i=""
  • 49.
    monti.c="" vero="" mori=""rifecero="" tornando="" dietro="" dieron="" caccia="" portogallci="" amazzorono="" centocinquanta="" caualli.il="" de="" venne="" durr="" ala="" et="" rifcohe="" rifa="" nari="" trii="" imo="" non="" tilib="" uaaj="" feria="" a:="" fiunu="" grane="" rogali="" polo="" ciocia="" rei="" coniin="" b="" fuogr="" toiioc="" simez="" olio.in="" fce="" togallo="" dccofi="" moltitu="" idei="" j:="" altri="" pigliate.="" fiiani="" ig="" ta="" te="" collii="" prima="" peccato="" c="" merai="" siffaprel="" fij="" rono="" patto="" oliciic="" ni="" tempi="" adic="" noni="" nati="" dal="" verde="" verfo="" pc="" die="" un="" fanno="" iamud=""/>
  • 50.
    I ta muratadi ccr Jclie nel vero fi ne portano mol 1 quantità dica0 Uà to, perciò^ alo a dar tribùIfima compafjconfiderando me. delquale (e i di pagamelo. no molte fofTe, dette folle è (ia>E) la moltitudiquella città è di X neltcpoche milmentecon' j; ì voler laflarla itrouòjchcgra &fé lontana da di grano é niol f laaicuna.etpo rgno.&diegli lirabihj&ffuc' abitata . h cir f ^zcmurfupre ì tréta miglia, uccala. ma da/ Ita città, &: Il a p : Io fece andar te» queccntofuo" :o della iirada, con vna gran^ talbnza,afpe ttadino bacca rnoà mille fo' r tutto Fanno, iella rcgion di »ur, douea vc^ ceifpediredue a città, in quel hauendo aiu-r cti nel mezzo rimanete del' lieron la caccia in ■Jurr^f2. £t riTcoire - r (T r f ° ^ ^ I- A F R I C A AnrcoirciItnbutOjCtpromcttendocIrfa,,^ -ir ^ ^ ^ ^ narfiinFezaw I che vX?.;?n^ ?"!:"'/' ^ . mnbatoA'dùuunoaiucoglt^^ • montidiTcdletcn,endochel7pn r^ h''''""^''^""°''"P^"'-"^^ noni. P^^gando/un "om n pSf o ^ "'"l"^"'' ^ -"'^ffin^pt u ^it/ .'S ^^' ti li baldtr.cri,ma difcofto circa vnn^?-' '" '''"''^ ^iddi quando k ro io an "- ^^ «aaMarocco^partcndonudaLanSfc 5enf pnncipe,pcr nome del R e di FelTa cóme i f- if ^' n l'"'"'^''' '^ ^'^'^o»" ^' ^ I^^rocco S • fenaprouiiionecontraiPortogalldi:' '''^'^'''^''"^'-'''^'^^^^P'^'-iì'"^^ togalle .:d. maniera, chegidiabita?ori "io nerf^^^^ polo e d.u.ro m due parti'io.idimeno è fìaS '° ''"''' '.^' ^-"'"^ '" ''^1'' habftiVd do. c.oelac,pagna.egl.cverodìcnonvTronoS^^^^^^^ gl
  • 51.
    sfTT". 11 fi; n t Alberi fimi Ha piai. :é S E CO NDA PARTE cfrca a vinticinquc miglw.trouanli ctiadio nel detto monte molti fantrSirnioItt altari fatti al mo^ O' do di Maitmcitani.tr iiouali liniilmente alcuni edifici) de gli antichi Africnni. fotto il monte e vn bellirsimo Iago grandc,comc e quello di Bolfena,in terra di Roma . hauui grandifìTima quantità di pcfcc,li come L-^no anguille,lafchc,Iucci,8d altri pcfcijch'io nò ho veduto in Italia,tutti in fom^ ma perfeitionc di bonta,iTia non e alcuno,che pefchi in qucfto lago.quado Maumetto Re difes andò a Duccalu,icrmofiì con l'cflercito,otto giorin appreffo il detto lago , & fece pcfcar ad alcU' ni,iquali,li come io viddi^cucirono il collo 8C le maniche a certe camicie, &: legado certe b jcchet> te dalla parte di (opra giù le calarono nel lago. &C in quciia guifa pigliarono gran quantità di pc^ fce.penfate quel che fecero quelli che haueuano le reti,&f quanta qualità ne prefcro.perchc il pc-fcc era come llordito dC imbriaco p la cagione ch'io dirò, fece il detto Re entrar nel lago forfè vn buon miglio dentro li caualli dcll'cflercitcche furon da.14.mila de gli Arabi venuti in fuo fauor Se d'alcuni fuoi vafalli,&: gli Arabi mcnoiono fcco molti camellijquali furono tre volte tanti, co^ me li caualli,6^ li camelli dclli carriaggi della corte del Re dC di fuo fratello, che furò.? 000.& infiriti alirijch'eran fu detto cHercitOjà: per caufa di tanti animali ch'introrono in detto lago, lo tur^ borono di forte, che non fi poteua haucr acqua pr r bcrc,& il pefce era come ftordito, dC fi laflaua pigliarc.tornàdo al lago,dico,che nelle fue fponde fono moltifsimi alberi , iquali hanno le fòglie, che fomigliano a quelle d'i pignari,&: tra i rami femprc e grandilFima quantità di nidi di tortore, li come a quc di,ch'cra il mcfc di maggio, di maniera , chcii dauano fci tortorini per vn viliffimo prcz20.ii Re poi clic ripofo quiui otto giorni,volle andare al Monte vcrdc,& coli v'andammo J molti con ciTo Iuiàìoc lac crdoti,8if cortigiani del dctto.cgli ad ogni altare che trouaua,faccua fer^ mar tutti'A' poUoù con li ginocchi a terra piangendo humilmentc diceua. Iddio mio tu fai che la mia intcntionc d'effer venuto a queiio faluatico paefc,altra non è, che d'aiutare 5i. liberare il po^ polo di Duccala.dallc mani de gli empi 8C ribelli Arabi,&: inliemc da i noitri fieri nimici Chriftia ni.ma fé tu vedi il
  • 52.
    Welcome to ourwebsite – the ideal destination for book lovers and knowledge seekers. With a mission to inspire endlessly, we offer a vast collection of books, ranging from classic literary works to specialized publications, self-development books, and children's literature. Each book is a new journey of discovery, expanding knowledge and enriching the soul of the reade Our website is not just a platform for buying books, but a bridge connecting readers to the timeless values of culture and wisdom. With an elegant, user-friendly interface and an intelligent search system, we are committed to providing a quick and convenient shopping experience. Additionally, our special promotions and home delivery services ensure that you save time and fully enjoy the joy of reading. Let us accompany you on the journey of exploring knowledge and personal growth! ebookfinal.com