QUOTATION INFORMATION AUTOMATION SOLUTION
|
|
|
- Brittany Potter
- 10 years ago
- Views:
Transcription
1 Bachelor's thesis Degree programme: Information Technology Specialisation: Network Communication Technology 2011 YIMENG NIU QUOTATION INFORMATION AUTOMATION SOLUTION NIU YIMENG
2 BACHELOR Ś THESIS ABSTRACT TURKU UNIVERSITY OF APPLIED SCIENCES Degree programme : Information Technology Completion of the thesis: Total number of pages:45 Instructor: Patric Granholm Author: Niu Yimeng QUOTATION INFORMATION AUTOMATION SOLUTION This thesis deals with a quotation information automation solution for Reka Kumi Oy. In Reka Kumi Oy, the information needed for generating quotation sheet is spread in several different sheets in an Excel template file. Every time quotation sheet is generated, the sales department needs to fill in those sheets in the template, then gather the information needed for the quotation from different sheets, copy them to another file and then print it as the quotation sheet. The company needed a more convenient way of generating quotation sheets and accessing quotation information. The solution includes the following steps: 1. Making a 'Cover' page for the excel template. Collecting and calculating the information needed for generating quotation sheet into this 'Cover' page. 2. Creating a database to store the information of the 'Cover' page. 3. Using VBA code to transfer information from the Excel template to database. 4. Using C# to build a website to display and modify the quotation information. This project is going to significantly reduce the time and labour consume by generating quotation sheet. KEYWORDS: Information Technology, C#, Excel, VBA, Database, MySQL Deposited at the Library of Turku University of Applied Sciences
3 Notation Excel Microsoft Excel C# Microsoft Visual C# IIS VBA CSS HTML HTTP MySQL Control Microsoft Internet Information Services Microsoft Visual Basic for Applications Cascading Style Sheets HyperText Markup Language HyperText Transfer Protocol Opensource Structured Query Language A graphical user interface object which allows users to control the program. DLL Dynamic Link Library
4 Table of Contents Abstract Notation Contents 1. Introduction Project Overview Background Objectives and Solution of the Project.3 3. Implementing Platform and Server Environment Operating System Internet Information Services (IIS) Database Development Tools and Technologies Database Design Designing Principles Database Topology and Structure Development Process Microsoft Excel Microsoft Visual Basic for Application Change Detection Connection String Trim Function Update to Database Function Sheet Hiding and Displaying C# ASP.NET Default.aspx.cs Code Structure Find.aspx.cs Code Structure Result.aspx.cs Code Structure.34
5 6.3.4 GridView Control Function Conclusion References
6 1. Introduction Reka Kumi Co.,Ltd needs a solution to improve the efficiency of their current quotation generating process. Their needs are special and unique, since the company is using many old versions of software and there is no ready-made software and database that meet their needs. Hence, the author was asked to perform this project in order to reduce the amount of manual work for the sales department and provide an easier way of transferring, observing and modifying the information needed for quotations. The author has previously worked in Reka Kumi Co., Ltd as an intern. The author has been using Microsoft Visual C# to write programs for Reka concerning product management, ERP (Enterprise Resource Planning) assistant, data migration and database maintenance. Turku University of Applied Sciences NIU YIMENG 1
7 2. Project Overview 2.1 Background Reka Kumi Oy is one of the leading rubber manufacturers in Finland. Reka Kumi Oy produces a variety of rubber products including, but not limited to, moulded rubber with injection moulding, rubber-metal products and silicone hoses. Reka supplies clients all around the world. The current quotation information generating process in Reka is considerably complex. Reka is using Microsoft Excel 2000/2003 and M-Files System for collecting and storing quotation information. The pricing and quantity information have to be calculated one by one. In the Calculus template (MS Excel template which stores in M-Files System, calculus document stores all the information needed for the quotation. Once the user creates a new Calculus document in the M-Files System by using the template, the basic information of product will automatically appears in the document.), there are several sheets containing different prices, materials, drawing, quantity information and so on. When a customer places an order, the sales department fills in all the necessary information in the template, so the sales personnel has to do a lot of calculations about price and quantity. Finally, they write the result and other information into quotation sheet. This process is time and labour-consuming. Hence, the efficiency of order processing and quotation making drops significantly. (The whole process is illustrated in Figure 1) Turku University of Applied Sciences NIU YIMENG 2
8 Sales agency create an Excel document using Calculus template. Manually input product details,tools for making the product,pricing information... Lots of typing work. Information spread in different sheets. Copy the needed information from different sheets to quotation sheet. Manually calculate quantity, prices... Quotation generated. Figure 1. Current Quotation Generating Process The author of this thesis was asked to find out a solution which speeds up the whole process and significantly reduces the labour consumption. 2.2 Objectives and Solution of the Project After the author discussed and research with the IT Manager of Reka Kumi Oy and other related personnel, the author found out that the company needed an easier way of calculating, collecting, storing and transferring information necessary for quotations. The sales manager needed to access to the quotation information more efficiently and easily, in which case, a website which shows all the quotation information would be a good solution because it is easier to access a website than looking for documents (files) for user; and a website gives more visibility when looking for the collection of specific information. Turku University of Applied Sciences NIU YIMENG 3
9 The author considers that the most time/labour consuming part is inputting, calculating and transferring information. It could be more efficient if the computer handles those procedures. Since the information inputting cannot be avoided, more attention could be paid to the calculation and information transfer. So, it is necessary to have an automation to calculate, collect and transfer information. The automation should definitely reduce the time and labour consumption. Based on above discussion and considerations, the solution is given as follows (Also see Figure 2): 1. Add a Cover sheet that contains all the information of the client, tooling, and products properties; calculate the price in the Calculus template. 2. Build a database for storing the quotation information. 3. Create a Macro by using Microsoft Visual Basic for Application (VBA) to transfer the quotation information to database. 4. Make a Microsoft C Sharp (C#) Web Application which queries the database and displays the returned information. Turku University of Applied Sciences NIU YIMENG 4
10 Sales agency create an Excel document using Calculus template. Manually input product details,tools for making the product,pricing information... Lots of typing work. Information spread in different sheets. Transfer the quotation needed information by pressing only one button. Quotation needed information will be collected into the Cover sheet Programmatically. Database View or modify quotation information on webpage. Quotation generated. Figure 2. Evolved Quotation Generating Process The reason of choosing VBA to handle the data transfer is VBA s high integration with MS Excel. The user could easily change the code and run a VBA macro in any computer which equipped with MS Excel Unlike other programming languages, VBA is a relatively simple programming language. It is easy to learn and implement. It comes with MS Excel automatically which means that the user does not need to install VBA separately in order to run VBA macros. The disadvantage of using VBA macro to handle the data transfer is that Microsoft s products are not normally backward compatible. For instance, in most cases software which is designed for Windows 95 cannot run on Windows This means there is risk that the VBA macro for MS Excel 2003 designed by author may not able to run it on later version of MS Excel. The only way to avoid this is not using Microsoft s products but the Linux kernel operating system. Turku University of Applied Sciences NIU YIMENG 5
11 Apparently, switching to Linux is unrealistic currently for the company. The same applies to using other programming languages, all of which have the risk that the old code is not compatible with a newer version of Microsoft products. According to above discussion, VBA could be the best tool to handle the data transferring part. The reason of choosing Microsoft C# as the programming language to make Web Application is that the author has some experience in it. It would be easier for the author to perform this program with Microsoft C# than Java. When considering that.net Framework is pre-installed in company computers, Microsoft C# application can be run directly. Java Runtime has to be installed separately if for running Java application. Turku University of Applied Sciences NIU YIMENG 6
12 3. Implementing Platform and Server Environment This project was implemented based on the following platform and environment: Microsoft Windows 7 Ultimate 32 Bit (For development machine) Microsoft Windows 2008 Server R2 Enterprise 64 Bit (For LOTTA server) Microsoft Internet Information Services (For LOTTA server) MySQL Server (For LOTTA server) 3.1 Operating System The author was using Microsoft Windows 7 Ultimate 32 Bit version as the operating system for the development machine. Windows 7 is the current latest version of Windows operating system of Microsoft. It is widely used in personal computers (PC) including home and business use for laptop, tablet and media centre. The server uses Microsoft Windows 2008 Server R2 Enterprise 64 Bit as operating system. 3.2 Internet Information Services (IIS) The Internet Information Services is a web server application and set of feature extension modules created by Microsoft for use with Microsoft Windows. It is the most used web server after the Apache HTTP Server: As of January 2011, it served 21.00% of all websites on the Internet and 16.22% of the one million Turku University of Applied Sciences NIU YIMENG 7
13 busiest websites on the Internet. IIS 7.5 supports HTTP, HTTPS, FTP, FTPS, SMTP and NNTP.[1] IIS 7.5 is currently uses on the Reka server to provide information services. 3.3 Database In this project, the author used MySQL as database. MySQL is a relational database management system (RDBMS) that runs as a server providing multi-user access to a number of databases. [2] More detailed information about database will be discussed in Chapter 5. Turku University of Applied Sciences NIU YIMENG 8
14 4. Development Tools and Technologies This chapter introduces all the involved software and technologies implemented in this project. Microsoft Visual C# C# (pronounced "C sharp") is a programming language that is designed for building a variety of applications that run on the.net Framework. C# is simple, powerful, type-safe, and object-oriented. The many innovations in C# enable rapid application development while retaining the expressiveness and elegance of C-style languages. Visual C# is an implementation of the C# language by Microsoft. Visual Studio supports Visual C# with a full-featured code editor, compiler, project templates, designers, code wizards, a powerful and easy-to-use debugger, and other tools. The.NET Framework class library provides access to many operating system services and other useful, well-designed classes that speed up the development cycle significantly. [3] The author has previously some experience with MS C#. This is one of the reasons why MS C# plays an important role in this project. Microsoft Visual Basic for Application Visual Basic for Applications (VBA) is an implementation of Microsoft's event-driven programming language Visual Basic 6 and its associated integrated development environment (IDE), which is built into most Microsoft Office applications. VBA enables programmers to expend the functions of Windows Application, especially for Microsoft Office software. Developers are able to use Turku University of Applied Sciences NIU YIMENG 9
15 it to build user defined functions, automate processes and access Win32 and other low-level functionality through DLLs. It supersedes and expands on the capabilities of earlier application-specific macro programming languages such as Word's WordBasic. It can be used to control many aspects of the host application, including manipulating user interface features, such as menus and toolbars, and working with custom user forms or dialog boxes. [4] In this project, VBA is used to collect data in Microsoft Excel and transfer data to the MySQL database. Microsoft.NET Framework 4.0 The.NET Framework (pronounced dot net) is a software framework for Microsoft Windows operating systems. It includes a large library, and it supports several programming languages which allow language interoperability (each language can use code written in other languages). The.NET library is available to all the programming languages that.net supports. [5] Version 4.0 is currently the latest version for.net Framework. It needs to be installed both in the development computer and the server in order to perform C# applications and VBA code. However, users can work with older versions of.net Framework since the VBA for MS Excel 2003 requires at least the 1.0 version. Microsoft ASP.NET 2.0 Microsoft ASP.NET is a unified Web development model. It includes various necessary services for generating enterprise level applications. ASP.NET is provided as a part of the.net Framework. When programming with ASP.NET, the developers are able to access the classes in the.net Framework. ASP.NET Turku University of Applied Sciences NIU YIMENG 10
16 pages execute on the server and generate markup such as HTMP, WML or XML that is sent to a desktop or mobile browser. It was first released in January 2002 with version 1.0 of the.net Framework, and is the successor to Microsoft's Active Server Pages (ASP) technology. ASP.NET is built on the Common Language Runtime (CLR), allowing programmers to write ASP.NET code using any supported.net language. [6] The ASP.NET library is packaged into System.Web.dll. It provides webpage handling, expansion and the communication of application of HTTP Tunnel. ASP.NET is a development platform other than a programming language. Microsoft ODBC In computing, Open Database Connectivity (ODBC) provides a standard software interface for accessing database management systems (DBMS). The designers of ODBC aimed to make it independent of programming languages, database systems, and operating systems. Thus, any application can use ODBC to query data from a database, regardless of the platform it is on or the DBMS it uses. This is accomplished by using an ODBC driver as a translation layer between the application and the DBMS. The application thus only needs to know ODBC syntax, and the driver can then pass the query to the DBMS in its native format, returning the data in a format the application can understand. [7] In this project, an ODBC connector was used to handle the data transfer between MS Excel and MySQL. It builds up the connection between each other and send MySQL query. Microsoft Excel Microsoft Excel is a commercial spreadsheet application written and distributed Turku University of Applied Sciences NIU YIMENG 11
17 by Microsoft for Microsoft Windows and Mac OS X. It features calculation, graphing tools, pivot tables and a macro programming language called Visual Basic for Applications. It has been widely applied spreadsheet for these platforms, especially since version 5 in Excel forms part of Microsoft Office. The current versions are 2010 for Windows and 2011 for Mac. [8] In Reka Kumi Co., Ltd, the sales departments use ready-made Excel templates to input and calculate quotation information. HTML HTML, which stands for HyperText Markup Language, is the predominant markup language for web pages. HTML is the basic building-block of webpages. [9] It is used for information structuring for example, title, paragraph and list. It also, to some extent, describes the appearance and semantics of documents. M-Files System M-Files System is an easy to use solution that helps small to medium-size businesses make dramatic gains in efficiency and productivity by improving the way they organize and manage their business documents, information and processes. [10] Turku University of Applied Sciences NIU YIMENG 12
18 5. Database Design 5.1 Designing Principle Principles of Table Designing: Standardization The standardization of data helps to eliminate the redundancy of database. There are few different kinds of standardization. However, the Third Normal Form (3NF) is usually recognized as the best for balancing the performance, expansibility and integrity of data. In other words, the principle for designing a database table which obeys the 3NF standard is One Fact In One Place. A table should only include the basic attributes of itself. The table needs to be decomposed when it contains the attributes which do not belong to it. Foreign Key connects and represents the relation between tables. Data Driver Data Driver provides a more convenient way for maintenance and the change of designing strategy. It enhances the flexibility and expansibility of the whole system. For instance, when the user interface carries out work flow tasks (Sending , Printing letter, Modifying records), the data that generated by the tasks can be stored into database. If the process is data-driven, the user carries more responsibilities to maintain the work flow process. Considering the Possible Changes When designing a database, the designer must consider what data fields could possibly change in the future. For example, the surname for woman could change after she gets married. So, it is better to create a field to store the surname in the table. Additionally, the designer creates starting date and ending Turku University of Applied Sciences NIU YIMENG 13
19 date fields, in order to track the change of this data entry. Principles of Field Designing A matured database table shall contain the following 3 useful fields: RecordCreationDate RecordCreator RecordVersion The above 3 fields help to precisely locate the reason of missing data or null record. Hence, it is important to have those fields in significant tables. Implement multiple fields for address and phone number data Normally it is not enough to describe an address within one line. It is necessary to separate an address into street address, house number, city, province, country and postcode fields; A phone number can be divided into area code and phone number fields. This provides better flexibility and visibility. Apply role object to define a field belongs to a category When defining an object which belongs to a specific category or has a specific role, it applies a role object for a specified time relation in order to achieve the self-documentation For example, George Brown, Accountant was promoted to become George Brown, Financial Manager and finally he became George Brown, CEO. The database designer can describe this change with the Person and Person_Type objects. The database designer only needs to change the value of Person_Type which related to George Brown, then have a Date/Time field to record when it happened. The Person_Type field contains all the possible occupations (Accountant, Financial Manager, Engineer, Director, CEO and so on). Turku University of Applied Sciences NIU YIMENG 14
20 5.2 Database Topology and Structure Tooling n Manage 1 Customer n Manage 1 Sales Process Manager 1 Manage n Price 1 Manage n Product Figure 3. Database Entity-Relationship Model There are totally five tables in the database. The above graph shows the relation between each table. Each table has M-Files ID field marked as primary key and foreign key. Because a customer could have different orders with different products, a sales manager could have different customers, assigning the Unique M-Files ID as primary key and foreign key prevents duplicated entries. Field Name Data Type Description M-Files ID INT(10) M-Files ID salesmanager VARCHAR(45) Name of sales manager Figure 4. Sales Manager Table Structure Turku University of Applied Sciences NIU YIMENG 15
21 Field Name Data Type Description M-Files ID INT(10) M-Files ID Customer VARCHAR(45) Customer Name Customerno. VARCHAR(45) Customer Number Customergroup VARCHAR(45) Customer Group CusIteNam VARCHAR(45) Customer Item Name CusIteNum VARCHAR(45) Customer Item Number CusIteDra VARCHAR(45) Customer Item Drawing RCD DATETIME Record Creation Date RC VARCHAR(45) Record Creator RV VARCHAR(45) Record Version OS VARCHAR(45) Order Status Figure 5. Customer Table Structure Field Name Data Type Description M-Files ID INT(10) M-Files ID Tooldes VARCHAR(45) Tool Description Cavityno. VARCHAR(45) Cavity Number NOT VARCHAR(45) Number of Tools Toolp VARCHAR(45) Tool Price TTC VARCHAR(45) Total Tooling Cost RCD DATETIME Record Creation Date RC VARCHAR(45) Record Creator RV VARCHAR(45) Record Version Figure 6. Tooling Table Structure Field Name Data Type Description M-Files ID INT(10) M-Files ID Turku University of Applied Sciences NIU YIMENG 16
22 RE VARCHAR(500) Rubber Elastomer Hardness VARCHAR(45) The Hardness of Rubber Part Reinforcement VARCHAR(500) Reinforcement WT VARCHAR(45) Wall Thickness PV VARCHAR(500) Product Review Tolpuls VARCHAR(45) Tolerance (+) Tolminus VARCHAR(45) Tolerance (-) RCD DATETIME Record Creation Date RC VARCHAR(45) Record Creator RV VARCHAR(45) Record Version Tyyppi VARCHAR(45) Product Type Origin VARCHAR(45) Location of the Manufacture Deviations VARCHAR(45) Product Deviations Figure 7. Product Construction Table Structure Field Name Data Type Description M-Files ID INT(10) M-Files ID SP1AQ VARCHAR(45) Step Price 1 Annual Quantity SP1MDQ VARCHAR(45) Step Price 1 Minimum Delivery Quantity SP1PP VARCHAR(45) Step Price 1 Price/PCs SP2AQ VARCHAR(45) Step Price 2 Annual Quantity SP2MDQ VARCHAR(45) Step Price 2 Minimum Delivery Quantity SP2PP VARCHAR(45) Step Price 2 Price/PCs SP6PP VARCHAR(45) Step Price 6 Price/PCs YE VARCHAR(45) Yearly Euro Proto VARCHAR(45) Proto Price Figure 8. Pricing Information Table Structure Turku University of Applied Sciences NIU YIMENG 17
23 6. Development Process This chapter introduces the software for developing this project and the development process. The following 4 software are involved: Microsoft Excel 2003 Microsoft Visual Basic for Application Microsoft Visual Studio 2010 (C#) MySQL Server MySQL Server will not be discussed separately in this chapter, since the process of MySQL is fully combined with other three programs. 6.1 MIcrosoft Excel The Cover page includes customer information (See. Figure 9), tooling information (See. Figure 10), product construction information (See. Figure 11) and pricing information (See. Figure 12).. Figure 9. Customer Information Turku University of Applied Sciences NIU YIMENG 18
24 Figure 10. Tooling Information Figure 11. Product Construction Information Figure 12. Pricing Information Turku University of Applied Sciences NIU YIMENG 19
25 Figure 13. Sales Manager Value by M-Files Figure 14. Yearly Euro Value by formula Calculation Only few of the above information are obtained by user inputting. Most of the information can be generated by formula calculation and M-Files System. For instance, the Sales Manager value is generated the by M-Files System; the Yearly Euro value is calculated by formula. (See Figure 13 and 14) As Figure 14 shows, Excel calculates Yearly Euro by multiplying the value of C15 (MVX sheet) cell with the value of E42 (Cover sheet) cell. So, this means that every change the user made on other sheets might affect the Cover sheet. When the user makes changes on any sheets, the tab color of the edited sheet and Cover sheet will change to red in order to remind the user to update the new data to database. Then, the user presses UPDATE TO OVERVIEW button to process the update. After the changes have been stored into database, the tabs colors changes back to green. Turku University of Applied Sciences NIU YIMENG 20
26 There is a sheet named Feasibility in this Excel template. The sales manager requires that the Feasibility sheet must be complete before the user makes any change to other pages. The IT Manager of Reka suggested that all other sheets should be hidden before the user complete Feasibility sheet, to prevent the user from skipping the Feasibility sheet. The Product Manager thought that the Feasibility sheet should contain an Emergency Button which could skip to fill in this sheet when necessary, the tab color of Feasibility sheet becomes pink which reminds the user about the incomplete sheet. 6.2 Microsoft Visual Basic for Application (VBA) Changes Detection In this section, the sheet change detection is separate into two parts: Change detection for Cover sheet Change detection for other sheets The reason why the changes detection is divided into two parts is that when user makes changes on other sheets, it does not necessarily affect the Cover sheet. In other words, the user makes changes on other sheets and the changes do not affect the quotation information. Only the tab color of the modified sheets changes to red. When the changes affect the Cover sheet, the tab color of Cover sheet will change to red. The following example code is for detecting changes in the Cover sheet. If any change has been detected, the color of the UPDATE TO OVERVIEW button and the Cover sheet tab color change to red. Turku University of Applied Sciences NIU YIMENG 21
27 Program 1. Cover Sheet Change Detection Private Sub Worksheet_Change(ByVal Target As Range) If Not Intersect(Target, & _ Range("B3:B52,C3:C52,D42:D52,E1:E52,F32")) Is Nothing Then On Error Resume Next Application.EnableEvents = False CommandButton1.BackColor = &HFF& Sheet1.Tab.ColorIndex = 3 Application.EnableEvents = True On Error GoTo 0 End If End Sub The change detection for other sheets checks if there are any changes in the sheets other than the Cover sheet. If a change is detected, the button and tab color will change the same way as in the Cover sheet change detection. (See Program 1 and Program 2) Program 2. Other Sheets Change Detection Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range) Static AncAdress As String, AncCell As Variant AncAdress = Target.Address AncCell = Target.Value2 If AncAdress <> "" Then ActiveSheet.Tab.ColorIndex = 3 Module1.sheetname = ActiveSheet.Name i = Module1.sheetname Turku University of Applied Sciences NIU YIMENG 22
28 Sheets(i).Tab.ColorIndex = 3 Sheet1.CommandButton1.BackColor = &HFF& Sheet1.Tab.ColorIndex = 3 End If End Sub Connection String A connection string is used for building up the connection between Excel and the database. In this project, the company uses the MySQL database. The connection adapter is ADODB. Here is an example of the connection string below. In this example, the server name is lilli. The company has a DNS server which translates the domain name lilli into an IP address. Program 3. Connection String Private Sub ConnectDB() Set oconn = New ADODB.Connection oconn.open "DRIVER={MySQL ODBC 5.1 Driver};" & "SERVER=lilli;" & _ "DATABASE=quotation;" & "USER=käyttäjä;" & "PASSWORD=passi;" & _ Trim Function End Sub "Option=3" Trim Function In Visual Basic for Application, the apostrophe symbol is used as comment which means that the code written after symbol (including symbol) will not be compiled and executed. Turku University of Applied Sciences NIU YIMENG 23
29 In practical writing, the apostrophe is a punctuation mark, and sometimes a diacritic mark, in languages that use the Latin alphabet or certain other alphabets. [11] In many cases, it is not possible to avoid using this mark. This is why the Trim Function was created. (See Program 4) Program 4. Trim Function Function esc(txt As String) esc = Trim(Replace(txt, "'", "\'")) End Function In VBA and many other programming languages, the \ mark is added to those marks which mean different functions between programming language and practical writing. Hence, ambiguity can be avoided Update to Database Function This function builds up the connection between Excel and the MySQL database. It also handles the tab color changes. Here is a simple example of inserting information into the MySQL database. (See Program 5) Program 5. Update to Database Function Private Sub InsertData() Set rs = New ADODB.Recordset ConnectDB With Sheet1 rowcursor = 3 strsql = "REPLACE INTO calculus SET id='" & esc(.cells(1, 5)) "',customernumber='" & esc(.cells(rowcursor + 2, 3)) & ' rs.open strsql, oconn, adopendynamic, adlockoptimistic End With CommandButton1.BackColor = &HE0E0E0 Sheet1.Tab.ColorIndex = 4 End Sub Turku University of Applied Sciences NIU YIMENG 24
30 This function builds up a new ADODB Recordset. It is an object which collects a set of record from database table. The ConnectDB function is used to establish the connection (See 7.2.2). The strsql string contains the query which is going to be executed by MySQL. In MySQL, there are several different ways of inserting or modifying data. For Example: INSERT SET INSERT VALUES REPLACE INTO The INSERT SET and INSERT VALUES functions always insert data without deleting old records. In this case, another function which modifies data is needed. Hence, the author prefers to use the REPLACE INTO function, because it inserts data when the target record does not exist and it modifies and updates data when the target record exists, so that it does not need to use other functions to check the existence of target record. Finally, if the MySQL query can be executed successfully which means the information has been stored into database, the tab color and button color will change to green which indicates the process was executed successfully Sheet Hiding and Displaying Function When user creates a new document by using this template, all the sheets except Feasibility sheet should be hidden by default. In Feasibility sheet, the user is expected to fill in the feasibility study information. The trigger to show other sheets is the feasibility decision selection box. Here are those four decision selection boxes which can be selected by the user. Feasible Turku University of Applied Sciences NIU YIMENG 25
31 Feasible With Approved Review Feasibility Study Not Done Yet Not Feasible If the last option Not Feasible is selected, those hidden sheets will not show up. This indicates that the order cannot be performed due to some reasons. The third option Feasibility Study Not Done Yet is the emergency button which is requested by the Product Manager. If this option is selected, all sheets will show up. Then, the tab color of this sheet remains pink. The above four options have CheckBoxes which are linked to the cells. Once a CheckBox is checked, it translates the CheckBox value from Boolean to logic text. The text it displays depends on the language version of Excel. In the English Excel version, the cell shows True or False. The following code shows an example of how it judges to show or hide sheets. (See Program 6) Program 6. Sheet Hiding and Displaying Sub CheckBox28_Click() If Sheet3.Range("E39").Value = True Then MsgBox "Error. Please first uncheck 'Feasibility study not done yet'" Sheet3.Range("E37").Value = False Else If Sheet3.Range("E37").Value = True Then showpage ElseIf Sheet3.Range("E37").Value=False And Sheet3.Range("E36").Value = False Then hidepage End If End If End Sub Turku University of Applied Sciences NIU YIMENG 26
32 If the user clicks on Feasible or Feasible With Approved Review button, Excel will check whether the Feasibility Study Not Done Yet has been forgotten to uncheck. The user gets a pop-up window that states the problem if there was one. 6.3 Microsoft Visual Studio 2010 (C#) In this chapter, the author focuses on the key functions of this website. Only part of the necessary codes is presented here. With C#, it is easy to build a multi-functional website. It provides direct access to the database and GridView to display the result that is returned by the database. The webpage provides the following fetching method (See Figure 15. Main Interface): By Item Number By Customer Name By Customer Number By Customer Group By Sales Manager Figure 15. Main Interface Turku University of Applied Sciences NIU YIMENG 27
33 After selecting the fetching method (Ex. Customer), the user shall give the keyword (Ex. Customer Name) in the TextBox. The following two types of keywords are acceptable: Full name/number Part of the name/number (any character which consist of the name or number) If the full name/number has been given, the browser will direct to a specific page and display the result. If part of the name/number has been given, the browser will direct to a page named Find.aspx. This page shows a list of name/number which includes the keywords. Here, the user can select the one he or she wants. (See Figure 16. Fuzzy Inquiry) If the CheckBox Show all Price List is checked, the full price list will be displayed in the result. There are totally six prices fields in the database. Normally, the result contains one price per id only and other information if this CheckBox is not checked. All the quotation information has three statuses: OPEN WIN LOST If the user wants to see the entries with OPEN status only, the CheckBox named Show OPEN Entry Only should be checked. Otherwise, it shows all entries by default. Turku University of Applied Sciences NIU YIMENG 28
34 Figure 16. Fuzzy Inquiry After the user has selected the desired entry, the page shows the result. Here is a flow chart describing the whole process (See Figure 17. Process Flow). Turku University of Applied Sciences NIU YIMENG 29
35 Figure 17. Process Flow Default.aspx.cs Code Structure Default.aspx is the homepage of this website. In this page, the user selects the fetching method and input the keyword. After TextBox is filled in with the keyword, the user shall press the Enter key or click the Fetch button to continue Turku University of Applied Sciences NIU YIMENG 30
36 Program 7. The Fetch Button Method Example if (DropDownList1.SelectedItem.ToString() == "Customer Number") { string para = "CN"; checkparameter(para); } (See Program 7) In the Fetch button method, this function checks the selected item name in the DropDownList and passes it as a parameter to the next method which is called checkparameter (See Program 8). Program 8. The Checkparameter Method Example public void checkparameter(string para) { if (para == "CN") { string columnname="customernumber"; string prequery = "SELECT distinct customer,customernumber FROM quotation.calculus where customernumber like '%" + TextBox1.Text + "%'"; string strprovider = "Data Source= lilli ; Database=quotation; User ID=xxx; Password=passi"; MySqlConnection mysqlcon = new MySqlConnection(strProvider); mysqlcon.open(); MySqlDataAdapter customerlistadapter = new MySqlDataAdapter(); customerlistadapter = new MySqlDataAdapter(prequery, mysqlcon); DataSet DS = new DataSet(); customerlistadapter.fill(ds); mysqlcon.close(); if (DS.Tables[0].Rows.Count>1) { string url; url = "find.aspx?id=" + TextBox1.Text.ToString() + "&&all=" + CheckBox1.Checked.ToString() + "&&open=" + CheckBox2.Checked.ToString() + "&&method=cn"; Response.Redirect(url); } Turku University of Applied Sciences NIU YIMENG 31
37 } else { string url; url = "Result.aspx?id=" + DS.Tables[0].Rows[0][columnname].ToString() + "&&all=" + CheckBox1.Checked.ToString() + "&&open=" + CheckBox2.Checked.ToString() + "&&method=cn"; Response.Redirect(url); }... The Checkparameter method accepts the parameter passed from the Fetch button. In this function, it uses If clause to check the parameter. Then, it decides which database query string to use. After querying the database, results are returned and stored into a DataSet named DS. If the user has given a correct and complete keyword, there will be only one row of database query result, since the DISTINCT function is used in the query. The browser will be directed to the Result.aspx page which shows the quotation information. Alternatively, if an incomplete keyword has been given in the query string, there could be more than one row for the result. The browser will be directed to the Find.aspx page with passing the keyword as parameter in order to find out the correct number or name Find.aspx.cs Code Structure This page refers to the Fuzzy Inquire function which aims to find all similar and related entries from the database based on the passed keyword. In the Page_Load function which loads methods when entering this page, the FindSimilarEntries method is loaded (See Program 9). The loaded method Turku University of Applied Sciences NIU YIMENG 32
38 checks the parameter which is passed from the Default.aspx page. Then it decides which query string is going to be used. This method basically uses the same way as Checkparameter in Default.aspx when it looks for the correct keywords. Program 9. The FindSimilarEntries Method Example public void FindSimilarEntries() { string prequery=""; if(request.querystring["method"].tostring()=="cn") { int resultcount = DS.Tables[0].Rows.Count; for (int i = 0; i < resultcount; i++) { linkbutton(ds.tables[0].rows[i]["customer"].tostring(), DS.Tables[0].Rows[i]["customernumber"].ToString(), Request.QueryString["method"].ToString()); } } After a list of similar keywords is returned from database, this function checks the amount of results and assigns to the amount an integer variable named resultcount. Another method named LinkButton will be called certain times depending on the amount of results. The LinkButton method is used for generating LinkButtons programmatically. It generates a list of correct keywords for use to choose (See Program 10). Turku University of Applied Sciences NIU YIMENG 33
39 Program 10. The LinkButton Generating Method Example public void LinkButton(string name,string number,string method) { form1.controls.add(new LiteralControl("<br>")); LinkButton lbtn = new LinkButton(); if (method == "CN") { lbtn.text = "Customer Name: " + name + " Customer No.: " + number; lbtn.commandargument = number; } if (number == "SM") { lbtn.text = "Sales Manager : " + name; lbtn.commandargument = name; } lbtn.command += new CommandEventHandler(this.lbtn_Click); form1.controls.add(lbtn); form1.controls.add(new LiteralControl("<br>")); } The parameters in the LinkButton method, obtained from FindSimilarEntries method, indicate the keyword type (Customer Name, Customer Number, Item Number, ) and the keyword values. Finally, the program calls the LB_Event method to add the Button_Click event to each LinkButton. Hence, those LinkButtons are assigned with unique HyperLinks towards to the Result.aspx page in order to display the quotation information Result.aspx.cs Code Structure There are two GridView Controls in this page. One is for displaying all the information, the other displays less information which is easier to see. The main function of this page is the GetResult method which is used for fetching quotation information (See Program 11). Turku University of Applied Sciences NIU YIMENG 34
40 Program 11. The GetResult Method Example public void GetResult() { if (Request.QueryString["all"].ToString() == "True") { string query = ""; string strprovider = "Data Source= lilli ; Database=quotation; User ID=xxx; Password=passi"; MySqlConnection mysqlcon = new MySqlConnection(strProvider); mysqlcon.open(); if (Request.QueryString["method"].ToString() == "CN") {DropDownList1.SelectedIndex = 3; string asiakas = Request.QueryString["id"].ToString(); query = "SELECT ID,salesmanager as 'Sales Manager',qnumber as 'Qnumber',Customer, 'MDQ6',ROUND(REPLACE(stepprice6pp,',','.'),2) as 'PP6' FROM `quotation`.`calculus` where customernumber='" + asiakas + "'"; if (Request.QueryString["open"].ToString() == "True") {query = "SELECT ID,salesmanager as 'Sales Manager',qnumber as 'Qnumber', FROM `quotation`.`calculus` where customernumber='" + asiakas + "' and (status='' or status is null)"; } for (int i = 0; i < DS.Tables[0].Rows.Count; i++) {string Str = DS.Tables[0].Rows[i]["ToolPrice"].ToString().Trim(); double Num; bool isnum = double.tryparse(str, out Num); if (isnum) { toolprice = Convert.ToInt32(DS.Tables[0].Rows[i]["ToolPrice"].ToString()) + toolprice; }else {continue;} } } Turku University of Applied Sciences NIU YIMENG 35
41 Label1.Text = "Total lines: " + DS.Tables[0].Rows.Count + " Total tool Price: " + toolprice + " Total Yearly Euro: " + yearlyeuro; } When a correct keyword is given or selected by user, the program starts to fetch quotation information by using the keyword. It loops the DataTable to eliminate non numerical characters for the total tool price and yearly euro. In this page, the program uses two GirdView Controls to display either the full price or the single price which depends on the user selection. If the user clicks on Show all Price List, it shows the full price and vice versa GridView Control Functions A GridView displays the values of data source in a table where each column represents a field and each row represents a record. The GridView Control enables the user to select, sort and edit these items (See Figure18. GridView Control at a glance). Figure18. GridView Control at a glance Turku University of Applied Sciences NIU YIMENG 36
42 In this GridView Control, the author applied the following functions. Edit and Save functions are enabled for Qnumber, Yearly Euro, Status, Type and Source columns. Price List HyperLink File HyperLink The above functions are currently fairly adequate for the sales department to enrich the information for single/multiple items. In order to enable the edit and save function, it is necessary to add TemplateField and ItemTemplate to the aspx source code. The AutoGenerateColumns function should be disabled since the amount of columns is fixed and data is bound to those columns (See Program 12). Program 12. Edit and Save Function Example <asp:gridview ID="GridView1" runat="server" AutoGenerateColumns="False" onrowcancelingedit="gridview1_rowcancelingedit" onrowupdating="gridview1_rowupdating" onrowediting="gridview1_rowediting"> <Columns> <asp:templatefield HeaderText="Qnumber"> <ItemTemplate> <asp:textbox ID="txtQnumber" runat="server" Text ='<%# DataBinder.Eval(Container.DataItem, "Qnumber") %>' Width="60px"></asp:TextBox> </ItemTemplate> </asp:templatefield> The Price List HyperLink opens a new window to show the full price list. It passes the Item ID to the PriceList.aspx page and fetches pricing information Turku University of Applied Sciences NIU YIMENG 37
43 there (See Figure 19). Figure 19. Pricing Information Window There is a File HyperLink function which links to the related Excel document that the item information originates from. All the Excel documents are stored in the M-Files System. The M-Files System allows to access files by using M-Files Links which is the easiest way to quickly locate and open the needed files. M-Files Links appear like When accessing the related Excel document, the M-Files ID is passed to the M-Files Server. This ID is unique in the M-Files and identifies a unique document. Turku University of Applied Sciences NIU YIMENG 38
44 7. Conclusion This project has now been completed. The author achieved a great improvement of the effectiveness of the previous quotation generating process by modifying and enhancing the previous Excel templates and creating a database and web pages. This project has impacted the quotation generating process very much. It has reduced the amount of manual typing work and price calculation; in addition, it has provided a more visible and rapid way of viewing, checking and modifying quotation information. For generating quotation information, there is a better way to process all the quotation information including input, store, view, and modify on WebPages, namely, integration. However, this requires buying licences for new programs which could cost lots of money; at the same time, the old data cannot be accessed by new programs. In this case, Reka did not want to have this Better solution. So, the current solution is the best for this situation. Turku University of Applied Sciences NIU YIMENG 39
45 References [1] Wikipedia, Internet Information Services, Consulted [2] Wikipedia, MySQL, Consulted [3] MSDN, Visual C#, Consulted [4] Wikipedia, Visual Basic for Application, Consulted [5] Wikipedia,.NET Framework, Consulted [6] Wikipedia, ASP.NET, Consulted [7] Wikipedia, Open_Database_Connectivity, Consulted [8] MSDN, What is Excel, Consulted aspx?CTT=5&origin=HA [9] Wikipedia, HTML, Consulted [10] Motive System, The Document Management Solution for Your Business, Consulted [11] Wikipedia, Apostrophe, Consulted Turku University of Applied Sciences NIU YIMENG 40
Short notes on webpage programming languages
Short notes on webpage programming languages What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is a markup language A markup language is a set of
ASP.NET. Web Programming. Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics
Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Hans- Petter Halvorsen, 2014.03.01 ASP.NET Web Programming Faculty of Technology, Postboks 203,
Creating Database Tables in Microsoft SQL Server
Creating Database Tables in Microsoft SQL Server Microsoft SQL Server is a relational database server that stores and retrieves data for multi-user network-based applications. SQL Server databases are
MAS 500 Intelligence Tips and Tricks Booklet Vol. 1
MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...
Exploring Microsoft Office Access 2007. Chapter 2: Relational Databases and Multi-Table Queries
Exploring Microsoft Office Access 2007 Chapter 2: Relational Databases and Multi-Table Queries 1 Objectives Design data Create tables Understand table relationships Share data with Excel Establish table
Using SQL Server Management Studio
Using SQL Server Management Studio Microsoft SQL Server Management Studio 2005 is a graphical tool for database designer or programmer. With SQL Server Management Studio 2005 you can: Create databases
Microsoft Expression Web
Microsoft Expression Web Microsoft Expression Web is the new program from Microsoft to replace Frontpage as a website editing program. While the layout has changed, it still functions much the same as
Siemens Applied Automation Page 1 11/26/03 9:57 PM. Maxum ODBC 3.11
Siemens Applied Automation Page 1 Maxum ODBC 3.11 Table of Contents Installing the Polyhedra ODBC driver... 2 Using ODBC with the Maxum Database... 2 Microsoft Access 2000 Example... 2 Access Example (Prior
INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB
INFOPATH FORMS FOR OUTLOOK, SHAREPOINT, OR THE WEB GINI COURTER, TRIAD CONSULTING Like most people, you probably fill out business forms on a regular basis, including expense reports, time cards, surveys,
CHAPTER 1: CLIENT/SERVER INTEGRATED DEVELOPMENT ENVIRONMENT (C/SIDE)
Chapter 1: Client/Server Integrated Development Environment (C/SIDE) CHAPTER 1: CLIENT/SERVER INTEGRATED DEVELOPMENT ENVIRONMENT (C/SIDE) Objectives Introduction The objectives are: Discuss Basic Objects
Add an Audit Trail to your Access Database
Add an to your Access Database Published: 22 April 2013 Author: Martin Green Screenshots: Access 2010, Windows 7 For Access Versions: 2003, 2007, 2010 About This Tutorial My Access tutorials are designed
Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access
Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix Jennifer Clegg, SAS Institute Inc., Cary, NC Eric Hill, SAS Institute Inc., Cary, NC ABSTRACT Release 2.1 of SAS
FileMaker 11. ODBC and JDBC Guide
FileMaker 11 ODBC and JDBC Guide 2004 2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc. registered
Tips and Tricks SAGE ACCPAC INTELLIGENCE
Tips and Tricks SAGE ACCPAC INTELLIGENCE 1 Table of Contents Auto e-mailing reports... 4 Automatically Running Macros... 7 Creating new Macros from Excel... 8 Compact Metadata Functionality... 9 Copying,
Excel for Data Cleaning and Management
Excel for Data Cleaning and Management Background Information This workshop is designed to teach skills in Excel that will help you manage data from large imports and save them for further use in SPSS
ODBC Client Driver Help. 2015 Kepware, Inc.
2015 Kepware, Inc. 2 Table of Contents Table of Contents 2 4 Overview 4 External Dependencies 4 Driver Setup 5 Data Source Settings 5 Data Source Setup 6 Data Source Access Methods 13 Fixed Table 14 Table
ResPAK Internet Module
ResPAK Internet Module This document provides an overview of the ResPAK Internet Module which consists of the RNI Web Services application and the optional ASP.NET Reservations web site. The RNI Application
Chapter 12 Programming Concepts and Languages
Chapter 12 Programming Concepts and Languages Chapter 12 Programming Concepts and Languages Paradigm Publishing, Inc. 12-1 Presentation Overview Programming Concepts Problem-Solving Techniques The Evolution
How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip
Load testing with WAPT: Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. A brief insight is provided
Microsoft Access 2007 Introduction
Microsoft Access 2007 Introduction Access is the database management system in Microsoft Office. A database is an organized collection of facts about a particular subject. Examples of databases are an
Introduction to Microsoft Access 2003
Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft
Software Design Specification
GROUP 7 SEVEN SOFTWARE PROJECT: ONLINE SCHEDULING SYSTEM COMPANY: VIA MAGNA GOTHENBURG SWEDEN GROUP MEMBERS: IBRAHIM KRVAVAC ALI BAHALOO HORE SEYED SAMAD GHASEMI KUHAN LOH DANIEL ASOVIC Software Design
DATA 301 Introduction to Data Analytics Microsoft Excel VBA. Dr. Ramon Lawrence University of British Columbia Okanagan
DATA 301 Introduction to Data Analytics Microsoft Excel VBA Dr. Ramon Lawrence University of British Columbia Okanagan [email protected] DATA 301: Data Analytics (2) Why Microsoft Excel Visual Basic
SQL Server Database Web Applications
SQL Server Database Web Applications Microsoft Visual Studio (as well as Microsoft Visual Web Developer) uses a variety of built-in tools for creating a database-driven web application. In addition to
FileMaker 12. ODBC and JDBC Guide
FileMaker 12 ODBC and JDBC Guide 2004 2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker, Inc.
Microsoft Access Basics
Microsoft Access Basics 2006 ipic Development Group, LLC Authored by James D Ballotti Microsoft, Access, Excel, Word, and Office are registered trademarks of the Microsoft Corporation Version 1 - Revision
How To Create A Report In Excel
Table of Contents Overview... 1 Smartlists with Export Solutions... 2 Smartlist Builder/Excel Reporter... 3 Analysis Cubes... 4 MS Query... 7 SQL Reporting Services... 10 MS Dynamics GP Report Templates...
Creating Online Surveys with Qualtrics Survey Tool
Creating Online Surveys with Qualtrics Survey Tool Copyright 2015, Faculty and Staff Training, West Chester University. A member of the Pennsylvania State System of Higher Education. No portion of this
COMMON All Day Lab 10/16/2007 Hands on VB.net and ASP.Net for iseries Developers
COMMON All Day Lab 10/16/2007 Hands on VB.net and ASP.Net for iseries Developers Presented by: Richard Schoen Email: [email protected] Bruce Collins Email: [email protected] Presentor Information
http://msdn.microsoft.com/en-us/library/4w3ex9c2.aspx
ASP.NET Overview.NET Framework 4 ASP.NET is a unified Web development model that includes the services necessary for you to build enterprise-class Web applications with a minimum of coding. ASP.NET is
Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1
Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the SAI reports... 3 Running, Copying and Pasting reports... 4 Creating and linking a report... 5 Auto e-mailing reports...
A Brief Introduction to MySQL
A Brief Introduction to MySQL by Derek Schuurman Introduction to Databases A database is a structured collection of logically related data. One common type of database is the relational database, a term
DIPLOMA IN WEBDEVELOPMENT
DIPLOMA IN WEBDEVELOPMENT Prerequisite skills Basic programming knowledge on C Language or Core Java is must. # Module 1 Basics and introduction to HTML Basic HTML training. Different HTML elements, tags
Using ODBC with MDaemon 6.5
Using ODBC with MDaemon 6.5 Alt-N Technologies, Ltd 1179 Corporate Drive West, #103 Arlington, TX 76006 Tel: (817) 652-0204 2002 Alt-N Technologies. All rights reserved. Other product and company names
Quick Start Guide. Microsoft Access 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve.
Quick Start Guide Microsoft Access 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve. Change the screen size or close a database Click the Access
INFORMATION BROCHURE Certificate Course in Web Design Using PHP/MySQL
INFORMATION BROCHURE OF Certificate Course in Web Design Using PHP/MySQL National Institute of Electronics & Information Technology (An Autonomous Scientific Society of Department of Information Technology,
Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence
Web Development Owen Sacco ICS2205/ICS2230 Web Intelligence Brief Course Overview An introduction to Web development Server-side Scripting Web Servers PHP Client-side Scripting HTML & CSS JavaScript &
4. The Third Stage In Designing A Database Is When We Analyze Our Tables More Closely And Create A Between Tables
1. What Are The Different Views To Display A Table A) Datasheet View B) Design View C) Pivote Table & Pivot Chart View D) All Of Above 2. Which Of The Following Creates A Drop Down List Of Values To Choose
DiskPulse DISK CHANGE MONITOR
DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com [email protected] 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product
Tutorial #1: Getting Started with ASP.NET
Tutorial #1: Getting Started with ASP.NET This is the first of a series of tutorials that will teach you how to build useful, real- world websites with dynamic content in a fun and easy way, using ASP.NET
DbSchema Tutorial with Introduction in SQL Databases
DbSchema Tutorial with Introduction in SQL Databases Contents Connect to the Database and Create First Tables... 2 Create Foreign Keys... 7 Create Indexes... 9 Generate Random Data... 11 Relational Data
ACCESS 2007. Importing and Exporting Data Files. Information Technology. MS Access 2007 Users Guide. IT Training & Development (818) 677-1700
Information Technology MS Access 2007 Users Guide ACCESS 2007 Importing and Exporting Data Files IT Training & Development (818) 677-1700 [email protected] TABLE OF CONTENTS Introduction... 1 Import Excel
IBM FileNet eforms Designer
IBM FileNet eforms Designer Version 5.0.2 Advanced Tutorial for Desktop eforms Design GC31-5506-00 IBM FileNet eforms Designer Version 5.0.2 Advanced Tutorial for Desktop eforms Design GC31-5506-00 Note
Microsoft Office Access 2007 Basics
Access(ing) A Database Project PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM EMAIL: [email protected] MONROE COUNTY LIBRARY SYSTEM 734-241-5770 1 840 SOUTH ROESSLER
Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72. User Guide
Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72 User Guide Contents 1 Introduction... 4 2 Requirements... 5 3 Important Note for Customers Upgrading... 5 4 Installing the Web Reports
Wakanda Studio Features
Wakanda Studio Features Discover the many features in Wakanda Studio. The main features each have their own chapters and other features are documented elsewhere: Wakanda Server Administration Data Browser
Microsoft Access Part I (Database Design Basics) ShortCourse Handout
Microsoft Access Part I (Database Design Basics) ShortCourse Handout July 2004, Technology Support, Texas Tech University. ALL RIGHTS RESERVED. Members of Texas Tech University or Texas Tech Health Sciences
Quick Start Guide. Microsoft Access 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve.
Quick Start Guide Microsoft Access 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve. Change the screen size or close a database Click the Access
Accessing Your Database with JMP 10 JMP Discovery Conference 2012 Brian Corcoran SAS Institute
Accessing Your Database with JMP 10 JMP Discovery Conference 2012 Brian Corcoran SAS Institute JMP provides a variety of mechanisms for interfacing to other products and getting data into JMP. The connection
Web Design and Implementation for Online Registration at University of Diyala
International Journal of Innovation and Applied Studies ISSN 2028-9324 Vol. 8 No. 1 Sep. 2014, pp. 261-270 2014 Innovative Space of Scientific Research Journals http://www.ijias.issr-journals.org/ Web
What s New: Crystal Reports for Visual Studio 2005
PRODUCTS What s New: Crystal Reports for Visual Studio 2005. Crystal Reports for Visual Studio 2005 continues to answer the needs of Visual Studio developers, offering an enhanced integrated reporting
RoomWizard Synchronization Software Manual Installation Instructions
2 RoomWizard Synchronization Software Manual Installation Instructions Table of Contents Exchange Server Configuration... 4 RoomWizard Synchronization Software Installation and Configuration... 5 System
Programming in Access VBA
PART I Programming in Access VBA In this part, you will learn all about how Visual Basic for Applications (VBA) works for Access 2010. A number of new VBA features have been incorporated into the 2010
Virto Pivot View for Microsoft SharePoint Release 4.2.1. User and Installation Guide
Virto Pivot View for Microsoft SharePoint Release 4.2.1 User and Installation Guide 2 Table of Contents SYSTEM/DEVELOPER REQUIREMENTS... 4 OPERATING SYSTEM... 4 SERVER... 4 BROWSER... 4 INSTALLATION AND
3 What s New in Excel 2007
3 What s New in Excel 2007 3.1 Overview of Excel 2007 Microsoft Office Excel 2007 is a spreadsheet program that enables you to enter, manipulate, calculate, and chart data. An Excel file is referred to
Applications Development
Paper 21-25 Using SAS Software and Visual Basic for Applications to Automate Tasks in Microsoft Word: An Alternative to Dynamic Data Exchange Mark Stetz, Amgen, Inc., Thousand Oaks, CA ABSTRACT Using Dynamic
Writer Guide. Chapter 15 Using Forms in Writer
Writer Guide Chapter 15 Using Forms in Writer Copyright This document is Copyright 2005 2008 by its contributors as listed in the section titled Authors. You may distribute it and/or modify it under the
Chapter 15 Using Forms in Writer
Writer Guide Chapter 15 Using Forms in Writer OpenOffice.org Copyright This document is Copyright 2005 2006 by its contributors as listed in the section titled Authors. You can distribute it and/or modify
Source Code Translation
Source Code Translation Everyone who writes computer software eventually faces the requirement of converting a large code base from one programming language to another. That requirement is sometimes driven
Excel Reports and Macros
Excel Reports and Macros Within Microsoft Excel it is possible to create a macro. This is a set of commands that Excel follows to automatically make certain changes to data in a spreadsheet. By adding
Chapter 13 Computer Programs and Programming Languages. Discovering Computers 2012. Your Interactive Guide to the Digital World
Chapter 13 Computer Programs and Programming Languages Discovering Computers 2012 Your Interactive Guide to the Digital World Objectives Overview Differentiate between machine and assembly languages Identify
VB.NET - WEB PROGRAMMING
VB.NET - WEB PROGRAMMING http://www.tutorialspoint.com/vb.net/vb.net_web_programming.htm Copyright tutorialspoint.com A dynamic web application consists of either or both of the following two types of
USER GUIDE Appointment Manager
2011 USER GUIDE Appointment Manager 0 Suppose that you need to create an appointment manager for your business. You have a receptionist in the front office and salesmen ready to service customers. Whenever
Computer Skills: Levels of Proficiency
Computer Skills: Levels of Proficiency September 2011 Computer Skills: Levels of Proficiency Because of the continually increasing use of computers in our daily communications and work, the knowledge of
Create a New Database in Access 2010
Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...
- Suresh Khanal. http://mcqsets.com. http://www.psexam.com Microsoft Excel Short Questions and Answers 1
- Suresh Khanal http://mcqsets.com http://www.psexam.com Microsoft Excel Short Questions and Answers 1 Microsoft Access Short Questions and Answers with Illustrations Part I Suresh Khanal Kalanki, Kathmandu
SQL Server An Overview
SQL Server An Overview SQL Server Microsoft SQL Server is designed to work effectively in a number of environments: As a two-tier or multi-tier client/server database system As a desktop database system
A Basic introduction to Microsoft Access
A Basic introduction to Microsoft Access By Ojango J.M.K Department of Animal Sciences, Egerton University, Njoro, Kenya and International Livestock Research Institute, Nairobi, Kenya Ms Access is a database
Web Services API Developer Guide
Web Services API Developer Guide Contents 2 Contents Web Services API Developer Guide... 3 Quick Start...4 Examples of the Web Service API Implementation... 13 Exporting Warehouse Data... 14 Exporting
Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide
Open Crystal Reports From the Windows Start menu choose Programs and then Crystal Reports. Creating a Blank Report Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick
Microsoft Access 2010- Introduction
Microsoft Access 2010- Introduction Access is the database management system in Microsoft Office. A database is an organized collection of facts about a particular subject. Examples of databases are an
Keywords web applications, scalability, database access
Toni Stojanovski, Member, IEEE, Ivan Velinov, and Marko Vučković [email protected]; [email protected] Abstract ASP.NET web applications typically employ server controls to provide dynamic
Advanced Workflow Concepts Using SharePoint Designer 2010
Instructional Brief Advanced Workflow Concepts Using SharePoint Designer 2010 SharePoint User Group September 8th, 2011 This document includes data that shall not be redistributed outside of the University
Editor Manual for SharePoint Version 1. 21 December 2005
Editor Manual for SharePoint Version 1 21 December 2005 ii Table of Contents PREFACE... 1 WORKFLOW... 2 USER ROLES... 3 MANAGING DOCUMENT... 4 UPLOADING DOCUMENTS... 4 NEW DOCUMENT... 6 EDIT IN DATASHEET...
Qlik REST Connector Installation and User Guide
Qlik REST Connector Installation and User Guide Qlik REST Connector Version 1.0 Newton, Massachusetts, November 2015 Authored by QlikTech International AB Copyright QlikTech International AB 2015, All
Creating and Using Forms in SharePoint
Creating and Using Forms in SharePoint Getting started with custom lists... 1 Creating a custom list... 1 Creating a user-friendly list name... 1 Other options for creating custom lists... 2 Building a
Working with Data in ASP.NET 2.0 :: Creating Stored Procedures and User Defined Functions with Managed Code Introduction
1 of 38 This tutorial is part of a set. Find out more about data access with ASP.NET in the Working with Data in ASP.NET 2.0 section of the ASP.NET site at http://www.asp.net/learn/dataaccess/default.aspx.
Selenium Automation set up with TestNG and Eclipse- A Beginners Guide
Selenium Automation set up with TestNG and Eclipse- A Beginners Guide Authors: Eevuri Sri Harsha, Ranjani Sivagnanam Sri Harsha is working as an Associate Software Engineer (QA) for IBM Policy Atlas team
BarTender s ActiveX Automation Interface. The World's Leading Software for Label, Barcode, RFID & Card Printing
The World's Leading Software for Label, Barcode, RFID & Card Printing White Paper BarTender s ActiveX Automation Interface Controlling BarTender using Programming Languages not in the.net Family Contents
FileMaker Pro and Microsoft Office Integration
FileMaker Pro and Microsoft Office Integration page Table of Contents Executive Summary...3 Introduction...3 Top Reasons to Read This Guide...3 Before You Get Started...4 Downloading the FileMaker Trial
Microsoft Office System Tip Sheet
The 2007 Microsoft Office System The 2007 Microsoft Office system is a complete set of desktop and server software that can help streamline the way you and your people do business. This latest release
Release Document Version: 1.4-2013-05-30. User Guide: SAP BusinessObjects Analysis, edition for Microsoft Office
Release Document Version: 1.4-2013-05-30 User Guide: SAP BusinessObjects Analysis, edition for Microsoft Office Table of Contents 1 About this guide....6 1.1 Who should read this guide?....6 1.2 User profiles....6
Utility Software II lab 1 Jacek Wiślicki, [email protected] original material by Hubert Kołodziejski
MS ACCESS - INTRODUCTION MS Access is an example of a relational database. It allows to build and maintain small and medium-sized databases and to supply them with a graphical user interface. The aim of
Microsoft Office System Tip Sheet
Experience the 2007 Microsoft Office System The 2007 Microsoft Office system includes programs, servers, services, and solutions designed to work together to help you succeed. New features in the 2007
Aras Corporation. 2005 Aras Corporation. All rights reserved. Notice of Rights. Notice of Liability
Aras Corporation 2005 Aras Corporation. All rights reserved Notice of Rights All rights reserved. Aras Corporation (Aras) owns this document. No part of this document may be reproduced or transmitted in
Ocean Data Systems Ltd. The Art of Industrial Intelligence. Dream Report GETTING STARTED. User- Friendly Programming-Free Reporting for Automation
Ocean Data Systems Ltd. The Art of Industrial Intelligence Dream Report GETTING STARTED User- Friendly Programming-Free Reporting for Automation http://www.dreamreport.net Copyright (R) Ocean Data Systems
Introduction to Visual Basic
Introduction to Visual Basic Microsoft Visual Basic development system version 6.0 is the most productive tool for creating high-performance components and applications. Visual Basic 6.0 offers developers
Web Portal User Guide. Version 6.0
Web Portal User Guide Version 6.0 2013 Pitney Bowes Software Inc. All rights reserved. This document may contain confidential and proprietary information belonging to Pitney Bowes Inc. and/or its subsidiaries
Microsoft Office 2010: Access 2010, Excel 2010, Lync 2010 learning assets
Microsoft Office 2010: Access 2010, Excel 2010, Lync 2010 learning assets Simply type the id# in the search mechanism of ACS Skills Online to access the learning assets outlined below. Titles Microsoft
Enduring Understandings: Web Page Design is a skill that grows and develops throughout the careful planning and study of software and design.
Curriculum Map for Web Design SEPTEMBER Targeted NJ Core Curriculum Content Standards: Design develop, test, implement, update, and evaluate web solutions Technology Use, Media Literacy, Responsible Use
Getting Started with STATISTICA Enterprise Programming
Getting Started with STATISTICA Enterprise Programming 2300 East 14th Street Tulsa, OK 74104 Phone: (918) 749 1119 Fax: (918) 749 2217 E mail: mailto:[email protected] Web: www.statsoft.com
Excel Database Management Microsoft Excel 2003
Excel Database Management Microsoft Reference Guide University Technology Services Computer Training Copyright Notice Copyright 2003 EBook Publishing. All rights reserved. No part of this publication may
Introduction to Microsoft Access 2013
Introduction to Microsoft Access 2013 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:
Consider the possible problems with storing the following data in a spreadsheet:
Microsoft Access 2010 Part 1: Introduction to Database Design What is a database? Identifying entities and attributes Understanding relationships and keys Developing tables and other objects Planning a
COURSE CURRICULUM COURSE TITLE: WEB PROGRAMMING USING ASP.NET (COURSE CODE: 3351603)
Web Programming using Course code: 3351603 GUJARAT TECHNOLOGICAL UNIVERSITY, AHMEDABAD, GUJARAT 1. RATIONALE COURSE CURRICULUM COURSE TITLE: WEB PROGRAMMING USING (COURSE CODE: 3351603) Diploma Program
Microsoft Access 2010 Part 1: Introduction to Access
CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3
HELP DESK MANUAL INSTALLATION GUIDE
Help Desk 6.5 Manual Installation Guide HELP DESK MANUAL INSTALLATION GUIDE Version 6.5 MS SQL (SQL Server), My SQL, and MS Access Help Desk 6.5 Page 1 Valid as of: 1/15/2008 Help Desk 6.5 Manual Installation
