visual c++ and mfc programming
... C++ ? The: Microsoft Visual C++ Environment ? Floatable and Dockable Windows ? Visual C++ Projects and Files ? Help Chapter 2: Introduction to MFC Visual C++ and MFC Fundamentals ... its submenu. Visual C++ and MFC Fundamentals Table of Contents © FunctionX, Inc. 1 an action creates a document and this document must reside somewhere. V...
Ngày tải lên: 31/05/2014, 13:48
... Copyrights and Disclaimer 3 3. Revision History 3 4. Introduction 3 5. Purpose of coding standards and best practices 3 6. How to follow the standards across the team 4 7. Naming Conventions and Standards ... comments to understand. 9. Perform spelling check on comments and also make sure proper grammar and punctuation is used. 13.Exception Handling 1. Never do a 'catch exc...
Ngày tải lên: 18/08/2012, 08:47
... logForm.getLogInForm(); accCommand.Connection = logForm.accConnection; accCommand.CommandType = CommandType.Text; accCommand.CommandText = cmdString; accCommand.Parameters.Add("@Param1", ... FacultyDataAdapter are used for the fi rst, and the third method — DataAdapter and LINQ — and accDataReader is used for the second method. The object accCommand will be used for a...
Ngày tải lên: 17/10/2013, 19:15
Practical Database Programming With Visual C#.NET- P7
... selForm = new SelectionForm(); sqlCommand.Connection = sqlConnection; sqlCommand.CommandType = CommandType.Text; sqlCommand.CommandText = cmdString; sqlCommand.Parameters.Add("@Param1", ... sqlCommand.CommandType = CommandType.Text; sqlCommand.CommandText = cmdString; sqlCommand.Parameters.Add("@name", SqlDbType.Char).Value = txtUserName.Text; sqlCommand.Pa...
Ngày tải lên: 20/10/2013, 11:15
Practical Database Programming With Visual C#.NET- P8
... paramFacultyName.Value = ComboName.Text; oraCommand.Connection = logForm.oraConnection; oraCommand.CommandType = CommandType.Text; oraCommand.CommandText = cmdString; oraCommand.Parameters.Add(paramFacultyName); ... strName. D. The user - defi ned method BuildCommand() is called to initialize the fi rst Command object with the correct Connection, CommandType, and CommandText proper...
Ngày tải lên: 20/10/2013, 11:15
Practical Database Programming With Visual C#.NET- P9
... to the Property window and expand the DataBindings item. c. Go to Text property and click on the drop down arrow. Expand all items until the CSE_DEPTDataSet; then expand the Faculty table. ... of compiling and building errors. Do not worry about them and we will fi x them in the next section. 6.2.4 Duplicate Visual C #. NET Projects with Installed D ata S et Unlike Visual Ba...
Ngày tải lên: 24/10/2013, 09:15
Practical Database Programming With Visual C#.NET- P10
... sqlCommand.Connection = logForm.sqlConnection; sqlCommand.CommandType = CommandType.Text; sqlCommand.CommandText = cmdString; InsertParameters(sqlCommand); //FacultyDataAdapter.InsertCommand ... command using the Command object, and then call the command ’ s ExecuteNonQuery() method to insert new records into the database. Or you can assign the built command object to the InsertCom...
Ngày tải lên: 24/10/2013, 09:15
Practical Database Programming With Visual C#.NET- P11
... 0; OracleCommand oraCommand = new OracleCommand(); oraCommand.Connection = oraConnection; oraCommand.CommandType = CommandType.StoredProcedure; oraCommand.CommandText = cmdString; oraCommand.Parameters.Add("Name", ... logForm.oraConnection; oraCommand.CommandType = CommandType.StoredProcedure; oraCommand.CommandText = cmdString; InsertParameters(ref oraCommand); intInsert...
Ngày tải lên: 28/10/2013, 16:15
Practical Database Programming With Visual C#.NET- P12
... OleDbCommand accCommand = new OleDbCommand(); int intUpdate = 0; accCommand.Connection = logForm.accConnection; accCommand.CommandType = CommandType.StoredProcedure; accCommand.CommandText ... SqlCommand sqlCommand = new SqlCommand(); int intUpdate = 0; sqlCommand.Connection = logForm.sqlConnection; sqlCommand.CommandType = CommandType.StoredProcedure; sqlCommand.CommandText ... S...
Ngày tải lên: 28/10/2013, 16:15
Practical Database Programming With Visual C#.NET- P13
... OracleCommand oraCommand = new OracleCommand(); oraCommand.Connection = oraConnection; oraCommand.CommandType = CommandType.StoredProcedure; oraCommand.CommandText = cmdString; oraCommand.Parameters.Add("Name", ... (user_name=@name) AND (pass_word=@word)"; SqlCommand sqlCommand = new SqlCommand(); SqlDataReader sqlReader; sqlCommand.Connection = sqlConnection; s...
Ngày tải lên: 07/11/2013, 11:15