Filteri
close
Tip rezultata
Svi rezultati uključeni
keyboard_arrow_down
Kategorija
Sve kategorije
keyboard_arrow_down
Opseg cena (RSD)
Prikaži sve
keyboard_arrow_down
Od
RSD
Do
RSD
Sortiraj po
keyboard_arrow_down
Objavljeno u proteklih
keyboard_arrow_down
Sajtovi uključeni u pretragu
Svi sajtovi uključeni
keyboard_arrow_down

Pratite promene cene putem maila

  • Da bi dobijali obaveštenja o promeni cene potrebno je da kliknete Prati oglas dugme koje se nalazi na dnu svakog oglasa i unesete Vašu mail adresu.
1-2 od 2 rezultata

Broj oglasa

Prikaz

format_list_bulleted
view_stream
1-2 od 2
1-2 od 2 rezultata

Prikaz

format_list_bulleted
view_stream

Režim promene aktivan!

Upravo ste u režimu promene sačuvane pretrage za frazu .
Možete da promenite frazu ili filtere i sačuvate trenutno stanje

Aktivni filteri

  • Tag

    Visual Basic .NET, VBA, V. Studio

Beginning Visual Basic 2015 is the ideal guide for new programmers, especially those learning their first language. This new edition has been updated to align with Visual Studio 2015, and also refocused to concentrate on key beginner topics. Precise, step-by-step instructions walk you through important tasks, and clear explanations targeted to beginners will have you writing your first Visual Basic application quickly. You'll start from the absolute beginning, assuming no prior programming experience, and then gradually build your skills to write Visual Basic applications for Windows and the Web. Coverage includes objects, class libraries, graphics, databases, and much more, with explicit instructions on using ASP.NET, SQL Server, ADO.NET, and XML. Visual Studio is the usual environment for Visual Basic programming, and the latest upgrade has made Visual Basic more feature compatible with C# to allow programmers to move fluidly between the two languages. Don't know C#? Don't worry! This book starts from the very beginning of Visual Basic programming to help you build your skills from the ground-up. Understand flow control and data structure Debug Windows applications, dialog boxes, and menus Master objects and object-oriented techniques Access databases, program graphics, and program for the Web Over three million programmers use Visual Basic, and many of them learned it as their first language. It's beginner-friendly, versatile, and visually oriented, making it an ideal introduction to the programming mindset, workflow, and hard skills. Beginning Visual Basic 2015 gets you started on the right foot, with clear, patient instruction and plenty of hands-on practice. Table of Contents INTRODUCTION xxvii CHAPTER 1: WELCOME TO VISUAL BASIC 2015 1 Implementing Event-Driven Programming 2 Installing Visual Basic 2015 3 The Visual Studio 2015 IDE 5 The Profi le Setup Page 5 The Menu 6 The Toolbars 8 Creating a Simple Application 9 Windows in the Visual Studio 2015 IDE 10 Modifi ed Hungarian Notation 17 The Code Editor 18 Using the Help System 22 Summary 23 CHAPTER 2: THE MICROSOFT .NET FRAMEWORK 25 The .NET Vision 25 This Sounds Like Java 26 Where Now? 27 Writing Software for Windows 27 The .NET Framework Classes 28 Executing Code 30 Common Language Runtime 31 Code Loading and Execution 31 Application Isolation 31 Security 32 Interoperability 33 Exception Handling 33 The Common Type System and Common Language Specification 33 Summary 34 CHAPTER 3: WRITING SOFTWARE 37 Information and Data 37 Algorithms 38 What Is a Programming Language? 39 Working with Variables 40 Comments and Whitespace 43 Comments 43 Whitespace 45 Data Types 45 Working with Numbers 45 Common Integer Math Operations 46 Integer Math Shorthand 49 The Problem with Integer Math 50 Floating-Point Math 50 Working with Strings 53 Using Dates 62 Boolean 69 Storing Variables 69 Binary 69 Bits and Bytes 70 Representing Values 70 Converting Values 72 Methods 74 Why Use Methods? 74 Methods You’ve Already Seen 75 Building a Method 78 Choosing Method Names 81 Scope 82 Summary 84 CHAPTER 4: CONTROLLING THE FLOW 87 Making Decisions 87 The If Statement 88 The Else Statement 90 Allowing Multiple Alternatives with ElseIf 90 Nested If Statements 92 Single-Line If Statement 92 Comparison Operators 92 String Comparison 101 Select Case 102 Case-Insensitive Select Case 106 Multiple Selections 108 The Case Else Statement 109 Different Data Types with Select Case 110 Loops 110 The For...Next Loop 110 The Do...Loop Loops 116 Nested Loops 120 Quitting Early 121 Quitting Do...Loops 123 Infinite Loops 124 Summary 125 CHAPTER 5: WORKING WITH DATA STRUCTURES 127 Understanding Arrays 128 Defining and Using Arrays 128 Using For Each...Next 131 Passing Arrays as Parameters 133 Sorting Arrays 136 Going Backward 137 Initializing Arrays with Values 138 Understanding Enumerations 139 Using Enumerations 140 Determining the State 143 Setting Invalid Values 146 Understanding Constants 146 Using Constants 146 Different Constant Types 148 Structures 148 Building Structures 149 Adding Properties to Structures 152 Working with ArrayLists 153 Using an ArrayList 153 Deleting from an ArrayList 158 Showing Items in the ArrayList 161 Working with Collections 162 Creating CustomerCollection 163 Adding an Item Property 164 Building Lookup Tables with Hashtable 166 Using Hashtables 166 Cleaning Up: Remove, RemoveAt, and Clear 169 Case Sensitivity 172 Advanced Array Manipulation 173 Dynamic Arrays 173 Using Preserve 175 Summary 176 CHAPTER 6: BUILDING WINDOWS APPLICATIONS 179 Responding to Events 180 Counting Characters 184 Counting Words 188 Creating More Complex Applications 191 Creating the Toolbar 192 Creating the Status Bar 195 Creating an Edit Box 196 Clearing the Edit Box 197 Responding to Toolbar Buttons 199 Using Multiple Forms 202 About Dialog 202 Summary 206 CHAPTER 7: DISPLAYING DIALOGS 209 The MessageBox 210 Available Icons for MessageBox 210 Available Buttons for MessageBox 211 Setting the Default Button 211 Miscellaneous Options 212 The Show Method Syntax 212 Example Message Boxes 214 The OpenFileDialog Control 218 The OpenFileDialog Control 218 The Properties of OpenFileDialog 218 OpenFileDialog Methods 220 Using the OpenFileDialog Control 221 The SaveDialog Control 226 The Properties of SaveFileDialog 226 SaveFileDialog Methods 227 Using the SaveFileDialog Control 227 The FontDialog Control 231 The Properties of FontDialog 231 The Methods of FontDialog 232 Using the FontDialog Control 232 The ColorDialog Control 235 The Properties of ColorDialog 236 Using the ColorDialog Control 237 The PrintDialog Control 238 The Properties of PrintDialog 239 Using the PrintDialog Control 240 The PrintDocument Class 240 The Properties of the PrintDocument Class 240 Printing a Document 241 The FolderBrowserDialog Control 248 The Properties of FolderBrowserDialog 248 Using the FolderBrowserDialog Control 249 Summary 252 CHAPTER 8: CREATING MENUS 255 Understanding Menu Features 255 Images 256 Access Keys 256 Shortcut Keys 256 Check Marks 256 The Properties Window 257 Creating Menus 259 Designing the Menus 259 Adding Toolbars and Controls 261 Coding Menus 263 Coding the View Menu and Toolbars 267 Testing Your Code 269 Context Menus 272 Creating Context Menus 272 Enabling and Disabling Menu Items and Toolbar Buttons 275 Summary 279 CHAPTER 9: DEBUGGING AND ERROR HANDLING 283 Major Error Types 284 Syntax Errors 284 Execution Errors 288 Logic Errors 288 Debugging 289 Creating a Sample Project 289 Setting Breakpoints 306 Debugging Using the Watch Window and QuickWatch Dialog Box 313 Debugging with the Autos Window 316 Debugging with the Locals Window 316 Error Handling 318 Using Structured Error Handling 319 Summary 321 CHAPTER 10: BUILDING OBJECTS 325 Understanding Objects 326 Encapsulation 327 Methods and Properties 327 Events 328 Visibility 328 What Is a Class? 329 Building Classes 330 Reusability 330 Designing an Object 332 State 332 Behavior 333 Storing State 333 Real Properties 336 Read/Write Properties 339 Auto-Implemented Properties 342 The IsMoving Method 343 Constructors 345 Inheritance 346 Adding New Methods and Properties 348 Adding a GetPowerToWeightRatio Method 350 Changing Defaults 352 Polymorphism: Scary Word, Simple Concept 354 Overriding More Methods 354 Inheriting from the Object Class 356 Objects and Structures 357 The Framework Classes 357 Namespaces 358 The Imports Statement 360 Creating Your Own Namespace 361 Inheritance in the .NET Framework 364 Summary 365 CHAPTER 11: ADVANCED OBJECT-ORIENTED TECHNIQUES 367 Building a Favorites Viewer 368 Internet Shortcuts and Favorites 368 Using Classes 371 Scanning Favorites 377 Viewing Favorites 384 An Alternative Favorite Viewer 386 Building a Favorites Tray 387 Displaying Favorites 388 Using Shared Properties and Methods 392 Using Shared Properties 392 Using Shared Methods 397 Understanding Object-Oriented Programming and Memory Management 398 Garbage Collection 400 Releasing Resources 400 Defragmentation and Compaction 401 Summary 402 CHAPTER 12: ACCESSING DATA USING STRUCTURED QUERY LANGUAGE 405 What You Need to Complete This Chapter’s Exercises 406 What Is a Database? 407 Database Tables 407 Primary and Foreign Keys 413 Queries 415 Understanding Basic SQL Syntax 415 Using SELECT Statement 416 Using the JOIN Statement 417 Using the UPDATE Statement 419 Using the DELETE Statement 419 Using the INSERT Statement 420 Using the SQL Comment 421 Executing Queries in SQL Server 421 Summary 425 CHAPTER 13: DATABASE PROGRAMMING WITH SQL SERVER AND ADO.NET 427 ADO.NET 428 ADO.NET Data Namespaces 428 The SqlConnection Class 429 Working with the Connection String Parameters 430 Opening and Closing the Connection 431 The SqlCommand Class 431 The SqlDataAdapter Class 434 The DataSet Class 438 DataView 438 The ADO.NET Classes in Action 440 Data Binding 450 BindingContext and CurrencyManager 450 Binding Controls 451 Binding Examples 452 Summary 480 CHAPTER 14: ASP.NET 483 Thin ]Client Architecture 484 Web Forms versus Windows Forms 485 Windows Forms Advantages 485 Web Forms Advantages 485 Web Applications: The Basic Pieces 486 Web Servers 486 Browsers 486 HyperText Markup Language 487 JavaScript 487 Cascading Style Sheets 487 Active Server Pages 488 Benefits of ASP.NET Web Pages 488 Special Website Files 488 Development 489 Controls: The Toolbox 489 Building Websites 490 Creating a Web Form for Client ] and Server ]Side Processing 490 Website Locations with VS 2015 495 Performing Data Entry and Validation 498 Using the GridView to Build a Data ]Driven Web Form 507 Summary 512 CHAPTER 15: DEPLOYING YOUR APPLICATION 515 What Is Deployment? 516 ClickOnce Deployment 516 XCOPY Deployment 521 Visual Studio 2015 Setup Application Options 522 Deploying Different Solutions 522 Private Assemblies 523 Shared Assemblies 523 Deploying Desktop Applications 524 Deploying Web Applications 524 Deploying XML Web Services 524 Useful Tools 525 Summary 525 CHAPTER 16: WINDOWS 8 APPS 529 Windows 8 Application Design Principles 530 Using Touch 530 Application Commands 531 Windows 8 Controls 532 Coding Windows 8 Apps with XAML 533 Creating Your First Windows 8 App 534 Application Layout 548 Application Views 548 Screen Sizes and Orientation 548 Summary 553 APPENDIX: EXERCISE SOLUTIONS 557 INDEX 569

Prikaži sve...
forward
Detaljnije

Description Visual Basic is a popular first language for beginning programmers; this Wrox beginner's guide covers all aspects of the newest version Uses a basic, step-by-step approach to help beginners learn quickly and easily Covers essential topics including flow control, data structure, writing Windows applications, error handling and debugging, objects and object oriented techniques, and class libraries Explains Windows Forms, graphics programming, accessing databases, web programming using Visual Basic with ASP.NET, data access, SQL Server, ADO.NET, and XML Beginning Visual Basic 2012 is a must-have for programming newcomers who want to get a solid footing in one of the most important programming languages. Table of Contents INTRODUCTION xxvii CHAPTER 1: WELCOME TO VISUAL BASIC 2012 1 Event-Driven Programming 2 Installing Visual Basic 2012 3 The Visual Studio 2012 IDE 6 The Profile Setup Page 6 The Menu 7 The Toolbars 8 Creating a Simple Application 9 Windows in the Visual Studio 2012 IDE 10 The Toolbox 14 Modified Hungarian Notation 17 The Code Editor 18 Using the Help System 23 Summary 23 CHAPTER 2: THE MICROSOFT .NET FRAMEWORK 27 Microsoft’s Reliance on Windows 28 MSN 1.0 28 The .NET Vision 29 This Sounds Like Java 30 Where Now? 30 Writing Software for Windows 31 The .NET Framework Classes 32 Executing Code 33 Common Language Runtime 34 Code Loading and Execution 35 Application Isolation 35 Security 35 Interoperability 36 Exception Handling 36 The Common Type System and Common Language Specification 37 Summary 37 CHAPTER 3: WRITING SOFTWARE 41 Information and Data 41 Algorithms 42 What Is a Programming Language? 43 Working with Variables 44 Comments and Whitespace 46 Comments 47 Whitespace 48 Data Types 49 Working with Numbers 49 Common Integer Math Operations 50 Integer Math Shorthand 52 The Problem with Integer Math 54 Floating-Point Math 54 Other States 56 Single-Precision Floating-Point Numbers 56 Working with Strings 57 Concatenation 58 Using the Concatenation Operator Inline 59 More String Operations 59 Substrings 61 Formatting Strings 62 Localized Formatting 63 Replacing Substrings 64 Using Dates 65 Formatting Date Strings 66 Extracting Date Properties 67 Date Constants 68 Defining Date Literals 69 Manipulating Dates 70 Boolean 71 Storing Variables 71 Binary 71 Bits and Bytes 72 Representing Values 73 Converting Values 74 Methods 76 Why Use Methods? 76 Methods You’ve Already Seen 77 Building a Method 80 Choosing Method Names 83 Scope 84 Summary 86 CHAPTER 4: CONTROLLING THE FLOW 89 Making Decisions 89 The If Statement 90 The Else Statement 92 Allowing Multiple Alternatives with ElseIf 92 Nested If Statements 94 Single-Line If Statement 94 Comparison Operators 94 Using Not Equal To 94 Using the Numeric Operators 96 The And and Or Operators 99 Using the And Operator 101 More on And and Or 102 String Comparison 103 Select Case 104 Case-Insensitive Select Case 108 Multiple Selections 110 The Case Else Statement 112 Different Data Types with Select Case 112 Loops 113 The For…Next Loop 113 Using the Step Keyword 116 Looping Backward 117 The For Each…Next Loop 118 The Do…Loop Loops 119 Do While…Loop 121 Acceptable Expressions for a Do…Loop 123 Other Versions of the Do…Loop 123 Nested Loops 124 Quitting Early 126 Quitting Do…Loops 128 Infinite Loops 129 Summary 130 CHAPTER 5: WORKING WITH DATA STRUCTURES 133 Understanding Arrays 134 Defining and Using Arrays 134 Using For Each…Next 137 Passing Arrays As Parameters 139 Sorting Arrays 141 Going Backward 142 Initializing Arrays with Values 144 Understanding Enumerations 145 Using Enumerations 145 Determining the State 149 Setting Invalid Values 151 Understanding Constants 152 Using Constants 152 Different Constant Types 154 Structures 155 Building Structures 155 Adding Properties to Structures 158 Working with ArrayLists 159 Using an ArrayList 159 Deleting from an ArrayList 163 Showing Items in the ArrayList 166 Working with Collections 167 Creating CustomerCollection 168 Adding an Item Property 170 Building Lookup Tables with Hashtable 171 Using Hashtables 172 Cleaning Up: Remove, RemoveAt, and Clear 175 Case Sensitivity 177 Advanced Array Manipulation 179 Dynamic Arrays 179 Using Preserve 181 Summary 182 CHAPTER 6: EXTENSIBLE APPLICATION MARKUP LANGUAGE (XAML) 185 What Is XAML? 186 XAML Syntax 187 Windows Presentation Foundation 190 Creating a Rich WPF User Interface 191 Using WPF Common Controls 197 Wiring Up Events 201 Summary 205 CHAPTER 7: BUILDING WINDOWS APPLICATIONS 209 Responding to Events 210 Building a Simple Application 217 Counting Characters 221 Counting Words 223 Creating More Complex Applications 229 Creating the Toolbar 231 Creating the Status Bar 235 Creating an Edit Box 237 Clearing the Edit Box 239 Responding to Toolbar Buttons 242 Using Multiple Forms 247 About Dialog 247 Summary 251 CHAPTER 8: DISPLAYING DIALOGS 255 The MessageBox 256 Available Icons for MessageBox 256 Available Buttons for MessageBox 257 Setting the Default Button 257 Miscellaneous Options 258 The Show Method Syntax 258 Example Message Boxes 260 The OpenFileDialog Control 263 The OpenFileDialog Control 264 The Properties of OpenFileDialog 265 OpenFileDialog Methods 266 Using the OpenFileDialog Control 266 The SaveDialog Control 271 The Properties of SaveFileDialog 271 SaveFileDialog Methods 273 Using the SaveFileDialog Control 273 The FontDialog Control 276 The Properties of FontDialog 277 The Methods of FontDialog 277 Using the FontDialog Control 277 The ColorDialog Control 280 The Properties of ColorDialog 281 Using the ColorDialog Control 282 The PrintDialog Control 283 The Properties of PrintDialog 284 Using the PrintDialog Control 285 The PrintDocument Class 285 The Properties of the PrintDocument Class 285 Printing a Document 285 The FolderBrowserDialog Control 292 The Properties of FolderBrowserDialog 292 Using the FolderBrowserDialog Control 293 Summary 296 CHAPTER 9: CREATING MENUS 299 Understanding Menu Features 299 Images 300 Access Keys 300 Shortcut Keys 300 Check Marks 300 The Properties Window 301 Creating Menus 302 Designing the Menus 302 Adding Toolbars and Controls 304 Coding Menus 306 Coding the View Menu and Toolbars 310 Testing Your Code 311 Context Menus 314 Creating Context Menus 315 Enabling and Disabling Menu Items and Toolbar Buttons 318 Summary 321 CHAPTER 10: DEBUGGING AND ERROR HANDLING 325 Major Error Types 326 Syntax Errors 326 Execution Errors 330 Logic Errors 330 Debugging 331 Creating a Sample Project 332 Setting Breakpoints 348 Debugging Using the Watch Window and QuickWatch Dialog Box 356 Debugging with the Autos Window 358 Debugging with the Locals Window 358 Error Handling 360 Using Structured Error Handling 361 Summary 363 CHAPTER 11: BUILDING OBJECTS 367 Understanding Objects 368 Encapsulation 369 Methods and Properties 369 Events 370 Visibility 370 What Is a Class? 371 Building Classes 371 Reusability 372 Designing an Object 373 State 374 Behavior 374 Storing State 375 Real Properties 378 Read/Write Properties 381 Auto-Implemented Properties 384 The IsMoving Method 384 Constructors 386 Inheritance 388 Adding New Methods and Properties 389 Adding a GetPowerToWeightRatio Method 392 Changing Defaults 394 Polymorphism: Scary Word, Simple Concept 395 Overriding More Methods 396 Inheriting from the Object Class 398 Objects and Structures 399 The Framework Classes 399 Namespaces 399 The Imports Statement 402 Creating Your Own Namespace 402 Inheritance in the .NET Framework 406 Summary 407 CHAPTER 12: ADVANCED OBJECT-ORIENTED TECHNIQUES 409 Building a Favorites Viewer 410 Internet Shortcuts and Favorites 410 Using Classes 412 Scanning Favorites 418 Viewing Favorites 426 An Alternative Favorite Viewer 428 Building a Favorites Tray 428 Displaying Favorites 429 Using Shared Properties and Methods 433 Using Shared Properties 434 Using Shared Methods 438 Understanding Object-Oriented Programming and Memory Management 439 Garbage Collection 440 Releasing Resources 441 Defragmentation and Compaction 442 Summary 443 CHAPTER 13: BUILDING CLASS LIBRARIES 445 Understanding Class Libraries 446 Creating a Class Library 446 Building a Class Library for Favorites Viewer 448 A Multitiered Application 452 Using Strong Names 453 Signing Assemblies 453 Assembly Versions 456 Registering Assemblies 456 Gacutil Utility 457 Why Is My Assembly Not Visible in the References Dialog? 457 Designing Class Libraries 457 Using Third-Party Class Libraries 459 Viewing Classes with the Object Browser 460 Summary 461 CHAPTER 14: CREATING WINDOWS FORMS USER CONTROLS 463 Windows Forms Controls 464 Creating and Testing a User Control 464 Exposing Properties from User Controls 468 Adding Properties 468 Exposing Methods from User Controls 470 Exposing Events from User Controls 471 Design Time or Runtime 476 Creating a Command Link Control 478 Building the Command Link Control 479 Using the Command Link Control 487 Summary 490 CHAPTER 15: ACCESSING DATA USING STRUCTURED QUERY LANGUAGE 493 What You Need to Complete This Chapter’s Exercises 494 What Is a Database? 495 Database Tables 495 Primary and Foreign Keys 500 Understanding Primary Keys 500 Understanding Foreign Keys 501 Queries 502 Understanding Basic SQL Syntax 503 Using SELECT Statement 503 Using the JOIN Statement 504 Using the UPDATE Statement 505 Using the DELETE Statement 506 Using the INSERT Statement 507 Using the SQL Comment 508 Executing Queries in SQL Server 508 Summary 511 CHAPTER 16: DATABASE PROGRAMMING WITH SQL SERVER AND ADO.NET 515 ADO.NET 516 ADO.NET Data Namespaces 516 The SqlConnection Class 517 Working with the Connection String Parameters 518 Opening and Closing the Connection 519 The SqlCommand Class 519 The Connection Property 520 The CommandText Property 520 The Parameters Collection 520 The ExecuteNonQuery Method 521 The SqlDataAdapter Class 522 The SelectCommand Property 522 Setting SelectCommand to SQL Text 523 Setting SelectCommand to a Stored Procedure 523 Using Command Builders to Create the Other Commands 524 The Fill Method 524 The DataSet Class 526 DataView 526 The Sort Property 527 The RowFilter Property 527 The Find Method 528 The ADO.NET Classes in Action 528 Data Binding 537 BindingContext and CurrencyManager 538 Binding Controls 539 Binding Examples 539 Summary 567 CHAPTER 17: DYNAMIC DATA WEBSITE 571 Creating a Dynamic Data Entities Website 571 Customizing the Design of a Dynamic Data Website 577 Page Templates 578 Entity Templates 578 Field Templates 578 Filter Templates 579 Summary 583 CHAPTER 18: ASP.NET 587 Thin-Client Architecture 588 Web Forms versus Windows Forms 589 Windows Forms Advantages 589 Web Forms Advantages 589 Web Applications: The Basic Pieces 590 Web Servers 590 Browsers 590 HyperText Markup Language 591 JavaScript 591 Cascading Style Sheets 591 Active Server Pages 592 Benefits of ASP.NET Web Pages 592 Special Website Files 592 Global.asax 592 Web.config 592 Development 593 Controls: The Toolbox 593 Building Websites 593 Creating a Web Form for Client- and Server-Side Processing 594 Website Locations with VS 2012 599 Performing Data Entry and Validation 602 Site Layout, Themes, and Navigation 606 Using the GridView to Build a Data-Driven Web Form 611 Summary 616 CHAPTER 19: DEPLOYING YOUR APPLICATION 619 What Is Deployment? 620 ClickOnce Deployment 620 XCOPY Deployment 626 Creating a Visual Studio 2012 Setup Application 626 Customize the User Interface 632 Deploying Diff erent Solutions 633 Private Assemblies 633 Shared Assemblies 634 Deploying Desktop Applications 635 Deploying Web Applications 635 Deploying XML Web Services 635 Useful Tools 635 Summary 636 CHAPTER 20: WINDOWS 8 APPS 639 Windows 8 Application Design Principles 640 Using Touch 640 Application Commands 640 Windows 8 Controls 642 Creating your First Windows 8 App 643 Application Layout 655 Application Views 656 Screen Sizes and Orientation 656 Summary 661 APPENDIX A: EXERCISE SOLUTIONS 665 APPENDIX B: WHERE TO NOW? 679 INDEX 683 Preuzmite 1. Poglavlje LINK.

Prikaži sve...
forward
Detaljnije
Nazad
Sačuvaj