247 reputation
416
bio website hansevision.de
location Hamburg, Germany
age 32
visits member for 3 years, 4 months
seen May 22 at 5:46
stats profile views 73

Developer and Consultant

  • started programming with 11 years
  • 6 years .NET experience
  • 2 years SharePoint experience
  • likes TV series, as Firefly, Veronica Mars, Doctor Who, ...
  • plays guitar and cajon

May
6
comment Check duplicate item workflow
Why don't you just make the lookup field unique? Is the workflow really necessary?
May
6
comment How can I fix this error in the ULS logs: ERROR: Failed to OpenThreadToken, LastError=1008?
Are you sure, no one tried to create a site? What about mysite self creation?
Apr
16
comment error, while trying to access the webservices from infopath form
How are you publishing the form? Where is the webservice located?
Apr
8
comment WebPart displaying 'i like it' marked elements of website
not a duplicate: the question linked asks for a place to find the tagged items, this will not help me, I'm looking for a way to put this information on a page in the portal ...
Apr
8
comment WebPart displaying 'i like it' marked elements of website
Ok, when I just search for the SocialTagId, there are more contents showing up, then I tagged with "I Like it" ... so I added AND author:"xxx" as you suggested, but then there are no results... Is this filter right? Because I'm not really the author of these documents, I just "liked" them ...
Jan
23
comment Add SiteName CustomFilter - RefinementPanel
Have you tried it without escaping the slashes? (e.g. replaced.domain.com/is)
Jan
18
comment Is it possible to publish a form from InfoPath 2007 on a SharePoint 2010 site?
@tehman it is possible, if you set the compability settings of your form to 2007. However, this may require then the removal of some newer controls or connections ...
Jan
18
comment How do I get the terms used in a TaxonomyField?
there are cases where the programmer already know, if the field allows multiples, then blackf0rk's solution is ok. But in most cases don't know, if the field allows multiples or not. In these cases your solution is the right way to go, so I gave it +1 ...
Jan
15
comment How do I get the terms used in a TaxonomyField?
This works for fields that can hold multiple values. If you don't know if the field is set to hold multiple values or not, you should use @Roman's solution
Jan
15
comment How do I get the terms used in a TaxonomyField?
+1 this is the right way to do it, if it is unknown if there can be multiple values
Jan
15
comment How do I get the terms used in a TaxonomyField?
This can't work. You are using the Field to get the info if the field holds single or multiple values, thats right. But to get a TaxonomyFieldValue(Collection), you have to use the current value for the item (not the field, the field doesn't hold the data).
Jun
25
comment Is there a link checker for SharePoint 2010?
Although you are affiliated with qipoint: Thanks for the info and welcome to SharePoint StackExchange, Oleg :)
Nov
17
comment Signed fully trusted form template in InfoPath 2010
I think I found my problem: the certificate export I got from our CA ist without private key. I will get one including the private key and post if that helps ...
Nov
17
comment Signed fully trusted form template in InfoPath 2010
Hi, thanks for your answer. Yes, I know this option, but I won't help me, I need a certificate that our users will trust automatically. So it has to be issued by our certification authority and not by me.
Nov
17
comment InfoPath Form with new certificate will not load when published
thanks, that helped :)
Jul
28
comment InfoPath close form by code
Hey thanks, now it is working. Yes this was what I tried, but I didn't use "Perform custom action using Code". I used the "Send form data to a single destination" and had the form code behind a button. At the end of the code I called this.Submit(), expecting it to trigger the settings from this dialog. But it didn't. Now with the code in the submit options, it is working :D
Jul
27
comment InfoPath close form by code
Sorry, I don't get it, your code sample looks, like View is a static property of XDocument. But the msdn link says, XDocument is an interface, so it can't have static properties. How can I get an instance of XDocument for my current form?
Jul
27
comment InfoPath close form by code
Thanks for the quick answer. Intellisense can't find XDocument, which Assembly do I have to reference? This isn't the Lync class XDocument, is it? Because I can't find a View property in that one...
Jul
25
comment Send e-mail from InfoPath: MailMessage vs. MailItem
Thanks, that clarified it for me.
Jul
21
comment Send e-mail from InfoPath: MailMessage vs. MailItem
So, if the form is browser hostet, I should use the first approach, and if it is hosted in InfoPath client, I should go with the second? Is there a way to be independent from the fact, where the form is hosted?