« Home « Chủ đề nguyên tắc lập trình

Chủ đề : nguyên tắc lập trình


Có 20+ tài liệu thuộc chủ đề "nguyên tắc lập trình"

Kiến trúc «1C:DOANH NGHIỆP»

tailieu.vn

«1C:DOANH NGHIỆP». Kiến trúc của hệ thống chương trình «1C:DOANH NGHIỆP 8. Những nguyên tắc cơ bản để xây dựng nền tảng «1C:DOANH NGHIỆP. Tính tùy ứng (tùy chỉnh) của giải pháp ứng dụng ...7. Đảm bảo tính quy mô của các giải pháp ứng dụng ...8. Các nguyên tắc lập trình trong môi trường «1C:DOANH NGHIỆP. Đặc điểm làm...

Microsoft WSH and VBScript Programming for the Absolute Beginner Part 52

tailieu.vn

The for the absolute beginner series gives you a fun, non-intimidating introduction to the world of programming. for the absolute beginner series is just what you’ve been waiting for!. ASP Programming for the Absolute Beginner. for the Absolute Beginner. Programming for the Absolute Beginner. Java ™ Programming for the Absolute Beginner. Microsoft ® Access VBA Programming for the Absolute Beginner,...

Microsoft WSH and VBScript Programming for the Absolute Beginner Part 1

tailieu.vn

for the Absolute Beginner. 2005 by Thomson Course Technology PTR. No part of this book may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, record- ing, or by any information storage or retrieval system without written permission from Thomson Course Technology PTR, except for the inclusion of brief quotations in a review.....

Microsoft WSH and VBScript Programming for the Absolute Beginner Part 2

tailieu.vn

Project Preview: The Guess a Number Game. Back to the Guess a Number Game. Project Preview: The BlackJack Lite Game. Working with Built-In VBScript Functions. Back to the BlackJack Lite Game. Project Preview: The Lucky Lottery Number Picker. Working with the Windows File System. Back to the Lucky Lottery Number Picker. Project Preview: The Hangman Game. Back to the Hangman...

Microsoft WSH and VBScript Programming for the Absolute Beginner Part 3

tailieu.vn

xx Microsoft WSH and VBScript Programming for the Absolute Beginner, Second Edition. Whenever possible, I’ll share shortcuts and techniques that will make things easier.. Throughout the book, I’ll stop along the way to point out how the knowledge and techniques that you are learning can be applied to real-world scripting projects.. At the end of every chapter, I’ll provide you...

Microsoft WSH and VBScript Programming for the Absolute Beginner Part 4

tailieu.vn

You cannot touch the Windows operating system itself. Windows operating systems support two such interfaces, the Windows GUI and the Windows Shell. The Windows GUI is provided in the form of the Windows desktop, Start menu, and other graphical elements with which you normally interact when using your computer. The purpose of the GUI is to make the operating system...

Microsoft WSH and VBScript Programming for the Absolute Beginner Part 5

tailieu.vn

However, over the years Microsoft has extended VBScript’s capabilities to allow it to function in numerous different settings. Windows Script Host. Internet Explorer. Microsoft Windows Script Console. As you can see, after you master VBScript within the context of WSH script development, you’ll have a number of other avenues in which you can begin using your new VBScript programming skills.....

Microsoft WSH and VBScript Programming for the Absolute Beginner Part 6

tailieu.vn

This function displays a pop-up dialog box with a text entry field that allows the script to collect text input from the player.. In the case of this example, the message is simply “Knock Knock,” but could just as easily be. “Hello, what is your name?” or any other question that helps the player understand the type of information the...

Microsoft WSH and VBScript Programming for the Absolute Beginner Part 7

tailieu.vn

WshNamed This object provides access to a set of named command-line arguments.. WshUnnamed This object provides access to a set of unnamed command-line arguments.. WshController This object provides the capability to create a remote script process.. Properties: This object does not support any properties.. WshRemote This object provides the capability to administer remote computer systems using scripts over a network.....

Microsoft WSH and VBScript Programming for the Absolute Beginner Part 8

tailieu.vn

Only the Windows .NET, XP, 2000, and NT operating systems support event logs. The scripting logic to write a message to the Windows application event log is very simple:. The first line of this script establishes an instance of the WshShell object. One really good use of the WshShell object’s LogEvent() method is to log the execution of scripts run...

Microsoft WSH and VBScript Programming for the Absolute Beginner Part 9

tailieu.vn

Setting Up the Script’s Random Selection. Now that the player has selected his or her choice, it’s the script’s turn to make a random selection on behalf of the computer. If you leave this line out and run the script several times, you’ll notice that after making an initial random choice, the script always makes the exact same choice time...

Microsoft WSH and VBScript Programming for the Absolute Beginner Part 10

tailieu.vn

Figure 3.7 shows the error produced by this statement at run-time.. Some of these words are reserved because they are part of the language itself, and others are reserved for future use. One of the easiest VBScript statements to understand is the comment statement. Documenting your scripts with comments makes them easier to support and helps others who may come...

Microsoft WSH and VBScript Programming for the Absolute Beginner Part 11

tailieu.vn

‘Use the FileSystem Object object’s GetDrive method to set up a reference. ‘Use the FileSystemObject FreeSpace property to determine the amount of. ‘free space (in MB) on the C: drive. ‘Display the amount of free space on the C: drive. The script begins by instantiating the FileSystemObject as shown here:. The script then uses this instance of the FileSystemObject to...

Microsoft WSH and VBScript Programming for the Absolute Beginner Part 12

tailieu.vn

SendKeys “I am “ SendKeys 38. SendKeys “ years old.”. SendKeys “%{F4}”. The last two steps perform the game’s application demonstrations. Add the standard documentation template and define any variables, constants, or objects used by the script.. Present the player with the equation and then test the player’s response to determine whether he or she provided an answer and whether...

Microsoft WSH and VBScript Programming for the Absolute Beginner Part 13

tailieu.vn

One of the key concepts that you need to understand when working with VBScript, or any programming language, is how to store, retrieve, and modify data. By the time you have completed this chapter, you will know how to write scripts that can collect and manipulate data. Specifically, you will learn how to. Process data passed to the script at...

Microsoft WSH and VBScript Programming for the Absolute Beginner Part 14

tailieu.vn

StoryMsg = “Once upon a time there were 3 little pigs” &. “who liked to build things.” &. The text message that is displayed by the script is. Figure 4.9 shows the output that is displayed when this script is executed.. If the vbCrLf and vbTab constants were removed from the formatted message, the text dis- played in the pop-up...

Microsoft WSH and VBScript Programming for the Absolute Beginner Part 15

tailieu.vn

The first four calculations should be fairly easy to understand. In the first calculation, I took the value of intMyAge and added 1 to it. Similarly I subtracted 1 in the next calculation and then multiplied intMyAge times 2 in the third statement. Step 1: Divide intMyAge, which is currently 74 by 5 yielding 14.8 Step 2: Add 14.8 to...

Microsoft WSH and VBScript Programming for the Absolute Beginner Part 16

tailieu.vn

The syntax of the Ubound() function is Ubound(ArrayName, Dimension). ArrayName is the name of the array whose upper bound is to be returned. Dimension is used to specify the array dimension whose upper bound is to be returned. In this case, the upper bound of the array is assigned to a variable named intSize . Let’s look at a quick...

Microsoft WSH and VBScript Programming for the Absolute Beginner Part 17

tailieu.vn

As I said, adding a splash screen to your script gives you an opportunity to display your Web site, game instructions, or other information you think will be useful to the user.. The StrWelcomeMsg vari- able is used to define the text that will be displayed in the splash screen. ‘Specify the message to be displayed in the initial splash...

Microsoft WSH and VBScript Programming for the Absolute Beginner Part 18

tailieu.vn

WScript.Echo “Go and buy that TV!”. WScript.Echo “Buy a TV Guide while you are at it.”. WScript.Echo “And do not forget to say thank you.”. WScript.Echo “Buy the VCR”. WScript.Echo “Buy the Radio.”. WScript.Echo “OK. This enables you to develop scripts that test for a condition and then further test other conditions based on the result of the previous test....