Hi everyone, I am a beginner in Spring framework. I am learning about Spring Dependency Injection from [Dependency Injection]. My project have been written according to above tutorial. But there is an error when I run my project. If anyone know about my problem, plz point me. here is my project file linke : [My Spring Project] the followings are the library I used in my project : antlr-4.1-complete commons-logging-1.1.3 spring-aop-3.2.4.RELEASE spring-asm-3.1.4.RELEASE spring-aspects-3.2.4.RELEASE spring-beans-3.2.4.RELEASE spring-context-3.2.4.RELEASE spring-context-support-3.2.4.RELEASE spring-core-3.2.4.RELEASE spring-expression-3.2.4.RELEASE Best Regards Kaung Myat
kmb89
Posts
-
Rising error in Constructor-based Dependency Injection, Spring Framework -
Missing "My Sharepoint sites" menu in My Links"My Sharepoint sites" menu is not appeared in My Links of my sp site. I want this to appear. How can I do this? Pls point me. Thanks
-
Handling list event.Thanks for your reply. It is worked fine after restarting IIS.
-
Handling list event.I want to handle the event of my Document Library. I use the "SPEventReceiverDefinition" class to test the event of the list. It is worked. Then i deleted the assembly that i tested in previous. I create my new event class and update this assembly to eventreceivers of sharepoint. But it is still worked with the first assembly. I don't know why it is happened. Pls point me.
-
How to add printing feature for Calendar list?I want to print my calendar in all possible views(day,month,year views). If u have any solution, pls point me. Thanks
-
Ajax "Update Panel" control errorI have a error in learning Ajax lessons. The error is "UpdatePanel does not contain a definition for ContentTemplateContainer". Following is my codes: public partial class UpdatePanel1 : System.Web.UI.Page { private Label label1; protected void Page_Load(object sender, EventArgs e) { UpdatePanel l_UpdatePanel = new UpdatePanel(); l_UpdatePanel.ID = "UpdatePanel1"; //Create the label label1 = new Label(); label1.ID = "Label1"; label1.Text = DateTime.Now.ToString(); //Create the button Button l_Button = new Button(); l_Button.ID = "Button1"; l_Button.Click += new EventHandler(l_Button_Click); //Create the literals LiteralControl l_LiteralControl = new LiteralControl(); //Embed the controls to the UpdatePanel l_UpdatePanel.ContentTemplateContainer.Controls.Add(label1); l_UpdatePanel.ContentTemplateContainer.Controls.Add(l_LiteralControl); l_UpdatePanel.ContentTemplateContainer.Controls.Add(l_Button); //Add the update panel to the form this.Controls.Add(l_UpdatePanel); } void l_Button_Click(object sender, EventArgs e) { this.label1.Text = DateTime.Now.ToString(); } }
-
File permission on sharepoint document libraryHow can user manage their file on document library in sharepoint 2007 server?
-
Physical database designI want to know about in physical database design in overview.If one of u has some links about this, pls give me.
-
How to handle event on SPCalendarView?Hi all, I want to handle mouse event on SPCalendarView but i don't know how to handle the events. If one of u know, pls point me. Thanks.:confused:
-
To modify table column.Thank for ur reply. My goal is to change the column properties to be the same with other column. I already left "Computed" property but an error has been occur with the other property of the column.
-
To modify table column.I use adventurework database. Error is FailedOperationException - "Alter failed for Column 'SystemInformationID'." InnerExcetpion - "Modifying the Computed property of the Column object is not allowed. You must drop and recreate the object with the desired property."
-
To modify table column.I used SMO to manage SQL server 2005. I want to modify a column to be same with other column. I used the following code but it has error while calling Column.Alter() function.
public void RepairColumns(object dcolumn) { try { Column d_Column = (Column)dcolumn; Column l_Column = mServer.Databases[mSMOInfo.DBName].Tables[mSMOInfo.TableIndex].Columns[mSMOInfo.ColumnIndex]; l_Column.Initialize(true); ////l_Column.AnsiPaddingStatus = d_Column.AnsiPaddingStatus; l_Column.Collation = d_Column.Collation; l_Column.Computed = d_Column.Computed; l_Column.ComputedText = d_Column.ComputedText; l_Column.DataType = d_Column.DataType; l_Column.Default = d_Column.Default; l_Column.Identity = d_Column.Identity; string str = d_Column.Properties[1].Name; l_Column.IdentityIncrement = d_Column.IdentityIncrement; l_Column.IdentitySeed = d_Column.IdentitySeed; l_Column.NotForReplication = d_Column.NotForReplication; l_Column.Nullable = d_Column.Nullable; l_Column.RowGuidCol = d_Column.RowGuidCol; l_Column.Rule = d_Column.Rule; l_Column.RuleSchema = d_Column.RuleSchema; ////l_Column.IsFullTextIndexed = d_Column.IsFullTextIndexed; l_Column.IsPersisted = d_Column.IsPersisted; l_Column.DefaultSchema = d_Column.DefaultSchema; l_Column.Alter(); } catch (SmoException ex) { throw ex; } }
If u knows my mistakes, pls point me. Thanks
-
Control.BeginInvoke()I use the following code to operate my treeview asynchronously. IAsyncResult result = sourceTree.BeginInvoke(l_CreateTreeNodes, new object[] { sourcenode.Nodes[stables],destinationnode.Nodes[dtables],mSourceInfo.TableNames,mDestinationInfo.TableNames}); While(!result.IsCompleted){} But asynchronous operation is not completed and 'result.IsCompleted" property is always 'false'. So, the operation isn't existed from while loop. I don't know why 'IsCompleted' property is always false. :confused:
-
Select treenode automaticallyThanks a lot for replying me. My two trees worked with the following code. private void sourcetree_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Up) { if(destinationtree.SelectedNode.PrevVisibleNode != null) destinationtree.SelectedNode = destinationtree.SelectedNode.PrevVisibleNode; } else { if(destinationtree.SelectedNode.NextVisibleNode != null) destinationtree.SelectedNode = destinationtree.SelectedNode.NextVisibleNode; } }
-
Select treenode automaticallyNo,it doesn't work.
-
Select treenode automaticallyThere is no selection changed event in treeview.:confused:
-
Select treenode automaticallyMy form has two tree views. If select treenode from first tree with UpArrow or DownArrow button from keyboard, i want the treenode from the second treeview to be selected automatically. These treeviews have the same treenode. Thanks axiom.kid :confused:
-
How to scroll the scrollbar of treeview control automatically?:-D Thank for ur help. The link u point me shows the thing what i want to do.Thanks :cool:
-
How to scroll the scrollbar of treeview control automatically?I use two treeviews in my form. These treeviews have the same nodes. The thing that i want to do is if i scroll the scrollbar of first treeveiw,i want the scrollbar of the second to be moved automatically like first treeview. I want to see the same nodes on first and second treeview if i scroll the scrollbar of the first or second treeview. If u have any idea to do this, pls point me. Thanks a lot. axiom.kid :confused:
-
FBA and PeoplePicker<PeoplePickerWildcards> <clear /> <add key="AspNetSqlMembershipProvider" value="%" /> <add key="YourFBAmemberName" value="%" /> </PeoplePickerWildcards> Modified the "PeoplePickerWildcards" element in your site's web.config file.And test peoplepicker again. If it doesn't work, clear all cookies and restart your browser. Test it again. I hope that can help u. ^.^ axiomkid