Click here to Skip to main content
15,885,743 members

Hannes Foulds - Professional Profile



Summary

    Blog RSS
3,409
Author
50
Authority
26
Debator
1
Enquirer
8
Organiser
225
Participant
0
Editor

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
GeneralSharePoint Tool Pane Pin
Hannes Foulds13-Nov-08 1:04
Hannes Foulds13-Nov-08 1:04 
GeneralASP.NET and showModalDialog Pin
Hannes Foulds13-Jun-07 22:33
Hannes Foulds13-Jun-07 22:33 
GeneralRe: ASP.NET and showModalDialog Pin
Hannes Foulds7-Aug-07 8:03
Hannes Foulds7-Aug-07 8:03 
GeneralSharePoint 2003 Ghosted pages Pin
Hannes Foulds22-Aug-06 20:50
Hannes Foulds22-Aug-06 20:50 
GeneralXML Serialization & Deserialization Pin
Hannes Foulds14-Aug-06 1:25
Hannes Foulds14-Aug-06 1:25 
GeneralSharePoint 2003 Dynamic Web Part Page Title Pin
Hannes Foulds9-Aug-06 23:59
Hannes Foulds9-Aug-06 23:59 
Ever wondered how to change the title displayed on a SharePoint page dynamically from a web part?

Stick the following in your web part:

C#
#region Set Page Title
/// <summary>
/// Set the title of the page.
/// </summary>
/// <param name="pageTitle">The new title for the page.</param>
public void SetPageTitle(string pageTitle)
{
	TitleBarWebPart titleBar = this.FindTitleBar(this.Page);
	titleBar.HeaderTitle = pageTitle;
}
#endregion

#region Find Title Bar
/// <summary>
/// Find the title bar control of the page.
/// </summary>
/// <param name="control">The control to start the search at.</param>
/// <returns>Returns the first TitleBarWebPart control found.</returns>
private TitleBarWebPart FindTitleBar(Control control)
{
	TitleBarWebPart result = null;
	int counter = 0;

	while ( (counter < control.Controls.Count) && (result == null) )
	{
		Control currentControl = control.Controls[counter];
		if (currentControl.GetType() == typeof(Microsoft.SharePoint.WebPartPages.TitleBarWebPart))
		{
			return currentControl as TitleBarWebPart;
		}

		result = FindTitleBar(currentControl);
		counter++;
	}
	return result;
}
#endregion


Then call SetPageTitle from CreateChildControls
GeneralDecompile CHM Pin
Hannes Foulds28-Jul-06 1:20
Hannes Foulds28-Jul-06 1:20 
GeneralSQL Server 2000: Full-Text Indexing Pin
Hannes Foulds13-Jul-06 0:32
Hannes Foulds13-Jul-06 0:32 
GeneralAbsolute Path Pin
Hannes Foulds11-Jul-06 21:30
Hannes Foulds11-Jul-06 21:30 
GeneralHello World Pin
Hannes Foulds11-Jul-06 21:24
Hannes Foulds11-Jul-06 21:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.