 |
|
 |
Apologies for the shouting but this is important.
When answering a question please:
- Read the question carefully
- Understand that English isn't everyone's first language so be lenient of bad spelling and grammar
- If a question is poorly phrased then either ask for clarification, ignore it, or mark it down. Insults are not welcome
- If the question is inappropriate then click the 'vote to remove message' button
Insults, slap-downs and sarcasm aren't welcome. Let's work to help developers, not make them feel stupid.
cheers, Chris Maunder
The Code Project Co-founder Microsoft C++ MVP
|
| Sign In·View Thread·PermaLink | 4.14/5 (3 votes) |
|
|
|
 |
|
 |
For those new to message boards please try to follow a few simple rules when posting your question.- Choose the correct forum for your message. Posting a VB.NET question in the C++ forum will end in tears.
- Be specific! Don't ask "can someone send me the code to create an application that does 'X'. Pinpoint exactly what it is you need help with.
- Keep the subject line brief, but descriptive. eg "File Serialization problem"
- Keep the question as brief as possible. If you have to include code, include the smallest snippet of code you can.
- Be careful when including code that you haven't made a typo. Typing mistakes can become the focal point instead of the actual question you asked.
- Do not remove or empty a message if others have replied. Keep the thread intact and available for others to search and read. If your problem was answered then edit your message and add "[Solved]" to the subject line of the original post, and cast an approval vote to the one or several answers that really helped you.
- If you are posting source code with your question, place it inside <pre></pre> tags. We advise you also check the "Encode HTML tags when pasting" checkbox before pasting anything inside the PRE block, and make sure "Ignore HTML tags in this message" check box is unchecked.
- Be courteous and DON'T SHOUT. Everyone here helps because they enjoy helping others, not because it's their job.
- Please do not post links to your question in one forum from another, unrelated forum (such as the lounge). It will be deleted.
- Do not be abusive, offensive, inappropriate or harass anyone on the boards. Doing so will get you kicked off and banned. Play nice.
- If you have a school or university assignment, assume that your teacher or lecturer is also reading these forums.
- No advertising or soliciting.
- We reserve the right to move your posts to a more appropriate forum or to delete anything deemed inappropriate or illegal.
cheers, Chris Maunder
The Code Project Co-founder
Microsoft C++ MVP
|
| Sign In·View Thread·PermaLink | 4.67/5 (3 votes) |
|
|
|
 |
|
 |
Hi,
I have 10 different sites in my sharepoint application and I need to limit the Disk or size per site.for Each Site 5GB only, Is there a way to set the size quota using the Sharepoint Admin?
I tried to adjust the size quota but it affected the entire web application not the specific site.
Best Regards Dabuskol
Dabsukol
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi All,
Am New to sharepoint. can you help me
How start with sharepoint..?
Software Configuration..?
give me some Urls, Manuals ..etc
Regards, rawse
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi,
I have a Sharpoint web part with a gridview and detailview. If I update or delete data from the detailview, the gridview does not refresh. I have to close the brower and re-open it. Any suggestions? Thanks!
JK
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Good morning
We are looking to design a workflow for MOSS 2007 which runs as follows
Step 1 User sends a document to the quality manager for approval (sits in the pending library)once approved the document is transfered to the drafts library
Step 2 The user then sets the flag for submit for approval to the approved documents library and the user has to select at least one more person to approve the document. The workflow sends an email and sets an approval task to that user(s)
Step 3 If the user(s) approves the document is copied from the drafts library to the approved library.
Where we are having a problem is step 2, how can we get the workflow to allow the user to choose who they want to approve the document? We have a staff contacts list in our portal so could get the workflow to lookup this list.
If anyone has successfully managed to do this and have some ideas it will be really appreciated.
Brenden
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi friends I have 1 doubt
Can we create SharePoint List by using SPDesigner? if yes, pls anybody can tell me the how?
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Yes you can open the site in SP designer click on lists then
Go to: File / New / SharePoint content / highlight list / Type in a name for your list
Hope this helps
Brenden
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi
We have installed Windows 7 OS in our systems recently. We started facing issues in saving documents on SharePoint 2007. Whenever we save the document, it takes us to My system folders in SAVE dialog box instead of SharePoint team site.
Any suggestions pls.?
Regards Balu
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi All
This EXE file does the wonder in my issue. Now the issue is resolved.
http://www.microsoft.com/downloads/details.aspx?FamilyId=17C36612-632E-4C04-9382-987622ED1D64&displaylang=en
regards, Balu
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Now i am working with Airlines Project. My client designed that site in .Net, so i have to migrate that project in to MOSS 2007, but how. If anybody knows pls help me,
Thanks in Advance!
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Can i know how to take backup for content.I am sending my code also. I am writing code on web service.
[WebMethod] public void downloadArcive(string SiteUrl, string ContentName) { SPSite site = new SPSite(SiteUrl); SPWeb web = site.OpenWeb(); SPFolder myFolder = web.GetFolder(ContentName); SPFileCollection myFiles = myFolder.Files; String backupLocation = "c:/Bin"; String backupfile = "http://ak-vpc/sites/governance"; UInt64 diskFreeSize = 0; UInt64 diskSize = 0; foreach (SPFile file in myFiles) {
if (file.Length > 1) { for (int i = myFiles.Count - 1; i > -1; i--) { myFiles[i].MoveTo(backupLocation, true); //I am getting error.............. }
} }
} i am getting error .Please help where i did mistake.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi,
Why are you using this technique for backup? There are several alternatives to perform a more solid and consistent backup of your content. Create a simple batch file on the server and use stsadm -o backup.
As for your specific error, it's probably because the backuplocation is not a SharePoint library the Move operation expect a SharePoint library as operator. See the API documentation (here's an extract)
The MoveTo method moves files to another location within the same site.
This method returns an error if a file of the same name already exists at the new location.
Hope this helps!
Regards,
Alain Lord MVP SharePoint Server SharePoint Quebec User Group Lead
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
 |
Based on the credentials we can lock spsite object (but not SPWeb object). But i don't have the code in detail.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi , I see comments on the page with podcast details but i see none when i wanT to delete it from PKS Podcast Comment List. I tried adding 2 test comments and they seem to appear on the page but not in the podcast comment list to be deleted. any thoughts..
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Ok this was a very silly thing. We can customize the All Items view. I just went and selected all the desired columns and it reflected back in the List settings page.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
 |
Go to the document library. select the file and in the dropdown select 'manage permisssions'. U can inherit the permissions of the document library for this file or u can inherit it and then modify. You can add/delete or manage user permissions for that file.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
As wampserver2 comes with php 5.3.0 but it is not compatible with wampserver2, so, I need to install php 5.2.9 on wamp server2 and delete php 5.3.0 Plz help
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
|
 |
|
 |
Channel 9 launched two new training courses for SharePoint 2010 and Office 2010 created by developers for developers.
See how SharePoint 2010 provides the business collaboration platform for developers to rapidly build solutions using familiar tools such as Visual Studio 2010 and SharePoint Designer 2010 through this self-paced course. See SharePoint 2010 Developer[^].
Also available, Discover how Office 2010 Beta is a broadly extensible platform for building information worker productivity solutions and see how developing for Office with Visual Studio 2010 makes this easy. See online presentations with demos that will help you get started developing solutions from Add-ins to full featured Office Business Applications (OBAs) using Visual Studio 2010 with Office 2010 and SharePoint 2010 as the core platform. See Office 2010 Developer Workshop[^].
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
hello all
i have created a hello world web part and i have set the Properties to that web part (the web part is customizable)
i have given one text boxe in the properties if you give any value it wil reflect in that web part
now i want to create one check box in that property says "BOLD". when i click that check box Obviously the given value should be bold. how can i do this in sharepoint object model.
Thanks in advance navneeth
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |