I with the code listed below, I would like to know:
a. How can I set through this code (debug)? The debugger does not step into this code?
b. i want to make changes to this code since some of hte column sizes are going to change. is there anything I need to do that is special so my coding changes will be saved?
c. When I want to deploy my changes to production, Is there anything I need to do that is special I need to add for compiling and/or deploying the modified application?
see code listed below:
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void InitClass() {
this.columnRec_ID = new global::System.Data.DataColumn("Rec_ID", typeof(int), null,
global::System.Data.MappingType.Element);
base.Columns.Add(this.columnRec_ID);
this.columnIG_REC_Date = new global::System.Data.DataColumn("REC_Date",
typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnREC_Date);
Loading
Sam HobbsPosted Jun 23, 2011, 3:40 PM
- You are more likely to get all the answers since the people that can provide the best answers do not need to go through the other posts
- It helps people in the future to find answsers
- You can give credit to the reply that helps you but if you have multiple replies each one with answers then you can't give credit to all of them
As for building an application for deployment, there are two or more configurations for you application; Debug and Release. Choose the Release configuration and then build the application with that. Then to deploy the applicaiton, see the articles in this web site about setup and deployment.Also, based on your other question, you definitely do not want to modify the code for InitClass.
The thing you definitely do want to do is to spend some time learning. There are very many artilces in this web site that will help you but you should get at least one book to help you.