| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 2 years |
| seen | 14 hours ago | |
| stats | profile views | 6 |
|
May 3 |
awarded | Yearling |
|
Mar 20 |
answered | Why do my Web Part properties not show up? |
|
Oct 10 |
comment |
New-SPContentDatabase creates database with guid instead of name If you remove the " | Out-Null" from the end of the New-SPContentDatabase you should see the output. The out-null actually hides the normal output. |
|
Oct 8 |
comment |
Access Secure Store Service from Timer Job As far as I know, the timer service needs to run as the database access account. See the 'Farm Service Account' section here: technet.microsoft.com/en-us/library/cc678863.aspx |
|
Oct 7 |
awarded | Supporter |
|
Oct 5 |
awarded | Commentator |
|
Oct 5 |
comment |
New-SPContentDatabase creates database with guid instead of name What is the output from New-SPContentDatabase? There should be 4 properties it lists, Id, Name, Server, CurrentSiteCount. |
|
Oct 5 |
answered | Access Secure Store Service from Timer Job |
|
Oct 5 |
answered | SharePoint 2010 Blog Site Custom I Like it locations |
|
Oct 4 |
answered | Can we modify an existing site collection to become a host named site collection |
|
Oct 2 |
comment |
Can InfoPath forms have multiple code-behind files? Thanks for the correction there. It helps to use the right name for things, huh? :) |
|
Oct 2 |
revised |
Can InfoPath forms have multiple code-behind files? added 6 characters in body |
|
Oct 2 |
answered | Is it possible to Enable SP SessionStateService for “a specific” SP Web application? |
|
Oct 2 |
comment |
Can InfoPath forms have multiple code-behind files? public partial class FormCode { public class SubCls { public void SetField(XPathNavigator x, XmlNamespaceManager m) { //Set Field } } } SubCls would be the subclass I was referring to. With this setup, I can now do something like "SubCls c = new SubCls(); c.SetField();" |
|
Oct 2 |
awarded | Yearling |
|
Oct 2 |
revised |
Can InfoPath forms have multiple code-behind files? Comment exchange warranted a change. |
|
Oct 2 |
awarded | Editor |
|
Oct 2 |
revised |
Can InfoPath forms have multiple code-behind files? deleted 38 characters in body |
|
Oct 2 |
comment |
Can InfoPath forms have multiple code-behind files? Why would it make the intended usage of InfoPath impossible? Adding additional code files to the project doesn't break anything. Using partial classes is all the same to the compiler. I knew my above idea worked no problem from past experience, and have just tested to subclass method to prove it works as well. While I will agree that if you have to put code-behind in your InfoPath forms you're likely going to have to have a bad time, it was part of the original question. It was a situation the poster inherited, not one he was designing. |
|
Oct 2 |
comment |
Can InfoPath forms have multiple code-behind files? Ah, very true, forgot that bit, I was just looking at some old projects to see what made them possible. Idea still holds true, though. Partial classes will allow you multiple code-behind files. |