Home > a generic > a generic error occurred in gdi windows xp

A Generic Error Occurred In Gdi Windows Xp

Contents

here for a quick overview of the site Help Center Detailed answers to any questions you might a generic error occurred in gdi in c# windows application have Meta Discuss the workings and policies of this site About

A Generic Error Occurred In Gdi+ Windows 7

Us Learn more about Stack Overflow the company Business Learn more about hiring developers or posting ads a generic error occurred in gdi bitmap save c# with us Stack Overflow Questions Jobs Documentation Tags Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of 4.7 million

A Generic Error Occurred In Gdi C# Image Save

programmers, just like you, helping each other. Join them; it only takes a minute: Sign up GDI+ Error only occuring on windows XP up vote 4 down vote favorite I have some c# code that works fine on Vista & Windows 7 but throws a GDI+ Error on Windows XP (with service pack 3 installed). a generic error occurred in gdi+ at system drawing image save Error thrown on XP System.Runtime.INteropServices.ExternalException(0x80004005): A generic error occured in GDI+ at System.Drawing.Graphics.CheckErrorStatus(Int32Status) at System.Drawing.Graphics.DrawImage(Image image, Int32 x, Int32 y) At System.Drawing.Graphics.DrawImageUnscaled(Image image, Int32 x,Int 32 y) at mysolution.Core.ImageTools.ConvertToBitonal(Bitmap orginal, Int32 threshold) Code breaks on this line: using (var g = Graphics.FromImage(source)) { g.DrawImageUnscaled(original, 0, 0); // Error Is Thrown Here } WpFAppTestingConvertToBitonalCS .... Below is the full function I'm calling. public static Bitmap ConvertToBitonal(Bitmap original, int threshold) { Bitmap source; // If original bitmap is not already in 32 BPP, ARGB format, then convert if (original.PixelFormat != PixelFormat.Format32bppArgb) { source = new Bitmap(original.Width, original.Height, PixelFormat.Format32bppArgb); source.SetResolution(original.HorizontalResolution, original.VerticalResolution); using (var g = Graphics.FromImage(source)) { g.DrawImageUnscaled(original, 0, 0); } } else { source = original; } // Lock source bitmap in memory var sourceData = source.LockBits(new Rectangle(0, 0, source.Width, source.Height), ImageLockMode.ReadOnly, PixelFormat.Format32bppArgb); // Copy image data to binary array var imageSize = sourceData.Stride * sourceData.Height; var sourceBuffer = new byte[imageSize]; Marshal.Copy(sourceData.Scan0, sourceBuffer, 0, imageSize); // Unlock source bitmap source.UnlockBits(sourceData); // Create destination bitmap var des

have a write permission on some directory. For example, if you are trying to save the Image from the memory stream to the file system , you may get that error. I also faced that error when I was using Infragistics charts

A Generic Error Occurred In Gdi+ Crystal Reports

control , the control was trying to create a temporary chart in ChartImages folder and my application

A Generic Error Occurred In Gdi+ Vb

was not given the write permission. Please if you are using XP, make sure to add write permission for the aspnet account on that folder. a generic error occurred in gdi+ selenium If you are using windows server (2003,2008) or Vista, make sure that add write permission for the Network service account. Hope it help some one. 23 Comments Na, _one_ of the possible errors could be the one, you described. The "Generic http://stackoverflow.com/questions/20149007/gdi-error-only-occuring-on-windows-xp error" in fact is used in certain scenarios. It means "we were to lazy to write better error return code". This really sucks. Uwe - Saturday, February 28, 2009 8:44:55 PM Well, at least that's based on my experience and on the problems i faced. I know that there is many other causes of that problem,but that's what i know until this time. anas - Saturday, February 28, 2009 8:57:28 PM I think it's the most common error so permissions should always http://weblogs.asp.net/anasghanem/solving-quot-a-generic-error-occurred-in-gdi-quot-exception be checked first. SGWellens - Saturday, February 28, 2009 9:18:12 PM It might not be that you don't have write permissions, but a sharing violation might be in effect. Common scenario that this happens: 1) Read an image into a Bitmap object 2) Manipulate the bitmap 3) Wanting to write back the bitmap to overwrite the original image file you read in step 1. This can happen because the Bitmap implementation seems to be as lazy as possible. It can choose the just remember the path that was the source of the image bits (or even a handle to the opened file they came from). This then means your software has the original image file open, causing this problem when you try to overwrite it in step three. To work around this use some simple code in an intermediate step (let's say 1a) that creates a new, blank Bitmap object with the same width/height/colordepth as the image you read. Then, get a Graphics object for the blank image and draw (BitBlt, basically) the loaded image onto the blank image. Then, dispose the loaded image. This gets you a Bitmap object that contains the content of the loaded image actually stored in memory, without any link to the original image file. Then, work on the Bitmap the way you like and you can easily save it back over the original file in step 3 without sharing violations. (If you have write permissions, of course. ;-)) peSHIr -

ASP.NET Community Standup Forums Help Home/ASP.NET Forums/Retired Forums/nGallery (RETIRED)/A generic error occurred in http://forums.asp.net/t/624305.aspx?A+generic+error+occurred+in+GDI+ GDI+ A generic error occurred in GDI+ RSS 14 replies http://kb.act.com/app/answers/detail/a_id/25903/~/error%3A-a-generic-error-occurred-in-gdi%2B Last post Sep 15, 2011 02:12 AM by savindra.bandi ‹ Previous Thread|Next Thread › Print Share Twitter Facebook Email Shortcuts Active Threads Unanswered Threads Unresolved Threads Support Options Advanced Search Reply jimmyLeander None 0 Points 3 Posts A generic a generic error occurred in GDI+ Jul 04, 2004 05:50 PM|jimmyLeander|LINK I received the foolowing message when attempting to upload a message. I do not have any .Net experience. Is there anyone out there that will take the time to give me a hand with this .Net error message? This a generic error appears to be a really nice looking and funtional image gallery and I would really enjoy using for family photos. Jimmy......................................................... A generic error occurred in GDI+. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Runtime.InteropServices.ExternalException: A generic error occurred in GDI+. Source Error: An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. Stack Trace: -------------------------------------------------------------------------------- [ExternalException (0x80004005): A generic error occurred in GDI+.] System.Drawing.Image.Save(String filename, ImageCodecInfo encoder, EncoderParameters encoderParams) +582 nGallery.Lib.PhotoCache.GetScaledPicture() +1747 nGallery.Lib.PhotoCache.GetThumbnail() +66 nGallery.admin.addPicture.btnSubmit_ServerClick(Object sender, EventArgs e) +651 System.Web.UI.HtmlControls.HtmlInputButton.OnServerClick(EventArgs e) +108 System.Web.UI.HtmlControls.HtmlInputButton.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +57 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +18 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +33 System.Web.UI.Page.ProcessRequestMain() +1277 --------------------------------------------------------------------

use the previous link instead. Select a product Sort by Default Summary New or Updated Description Date Updated Direction Ascending Descending Helpful search tips Find the answer to your question Error: "A generic error occurred in GDI+" Answer ID 25903 | Updated 09/10/2016 12:12 PM You are attempting to use ACT! by Sage when you receive the following error message: "A generic error occurred in GDI+" This error has been reported to occur when: Attempting To Access the Print Option Attempting to Launch ACT! Attempting to Launch to Layout or Report Designer Using ACT! in a Terminal Services, Citrix® or Remote Desktop Environment Attempting To Access the Print Option Version of ACT!: ACT! 2005 (7.x), ACT! by Sage 2006 (8.x) Issue: You click the File menu, and then click Print and receive the following error message: "A generic error occurred in GDI+." Click here to attempt to resolve this issue This has been known to occur when selecting Print from the File menu if an Activity Type contains an special character such as <, >, :, ?, *, \. To rename Activity Types, use the following steps: Click the Schedule menu, point to Manage, and then click Activity Types. The Manage Activity Types dialog box appears. Click the activity type you would like to rename from the Name column, and then click Edit. The Edit Activity Type dialog box appears. Remove the slash (/) or backslash (\) form the Name field, and then click OK. The following ACT! warning message appears. Note: You can replace these characters with the dash (-) or ampersand (&) without error. Click OK. The Manage Activity Types dialog box reappears. Click Close to complete the changes and return to ACT!. Attempting to Launch ACT! Version of ACT!: ACT! by Sage 2010, Sage ACT! 2011 Issue: You are attempting to launch ACT! by Sage when you receive the following error message: "A generic error occurred in GDI+" Click here to attempt to resolve this issue This error has been reported to occur on Windows® operating systems that utilize the User Account Control (UAC), which are Microsoft® Windows Vista®, Windows 7 and Windows Server® 2008. You can work around this issue by always launching ACT! with the Run as Administrator option. Please use the following steps: Right-clicking on the ACT! icon and then click Properties. Click the Compatibility tab. Select the Run this program as an administrator checkbox, and then click OK. Attempting to Launch to Layout or Report Designe

 

Related content

a generic error occurred 5 7 7 hamachi

A Generic Error Occurred Hamachi table id toc tbody tr td div id toctitle Contents div ul li a href Evolve a li ul td tr tbody table p be there as you use your personal computer These problems will exist even if you're using the computer for years now These generally happen when surfing around the web When you think relatedl of it thoroughly these will issues will actually assist you know if kb the computer is having some issues and needs some care Several problems might get worse over tunngle download time To fix the problem you must

a generic error occurred in gdi

A Generic Error Occurred In Gdi table id toc tbody tr td div id toctitle Contents div ul li a href A Generic Error Occurred In Gdi When Saving Image a li li a href A Generic Error Occurred In Gdi Act a li li a href A Generic Error Occurred In Gdi Asp Net a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any relatedl questions you might have Meta Discuss the workings and a generic error occurred in gdi bitmap save c policies of this site

a generic error occurred in gdi bitmap save png

A Generic Error Occurred In Gdi Bitmap Save Png table id toc tbody tr td div id toctitle Contents div ul li a href A Generic Error Occurred In Gdi C Image Save a li li a href A Generic Error Occurred In Gdi Image Save Vb Net a li li a href Gdiplus Bitmap Save Png a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers relatedl to any questions you might have Meta Discuss c bitmap save a generic error occurred in gdi the workings and policies of

a generic error occurred in gdi outputstream

A Generic Error Occurred In Gdi Outputstream table id toc tbody tr td div id toctitle Contents div ul li a href A Generic Error Occurred In Gdi Bitmap Save C a li li a href A Generic Error Occurred In Gdi In C Windows Application a li li a href A Generic Error Occurred In Gdi Windows a li li a href A Generic Error Occurred In Gdi Selenium a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you relatedl might have Meta Discuss the

a generic error occurred in gdi onpaint

A Generic Error Occurred In Gdi Onpaint table id toc tbody tr td div id toctitle Contents div ul li a href A Generic Error Occurred In Gdi C Image Save a li li a href A Generic Error Occurred In Gdi At System Drawing Image Save a li li a href A Generic Error Occurred In Gdi Windows a li li a href A Generic Error Occurred In Gdi Vb a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the

a generic error occurred in gdi in asp net

A Generic Error Occurred In Gdi In Asp Net table id toc tbody tr td div id toctitle Contents div ul li a href A Generic Error Occurred In Gdi Crystal Reports a li li a href A Generic Error Occurred In Gdi Windows a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any relatedl questions you might have Meta Discuss the workings a generic error occurred in gdi bitmap save c and policies of this site About Us Learn more about Stack Overflow a generic error occurred

a generic error occurred in gdi windows 7

A Generic Error Occurred In Gdi Windows table id toc tbody tr td div id toctitle Contents div ul li a href A Generic Error Occurred In Gdi In C Windows Application a li li a href A Generic Error Occurred In Gdi C Image Save a li li a href A Generic Error Occurred In Gdi Vb a li li a href How To Solve A Generic Error Occurred In Gdi a li ul td tr tbody table p SQL Server Express resources Windows Server resources Programs MSDN subscriptions Overview Benefits Administrators Students Microsoft Imagine Microsoft Student Partners ISV

a generic error occurred in gdi animated gif

A Generic Error Occurred In Gdi Animated Gif table id toc tbody tr td div id toctitle Contents div ul li a href A Generic Error Occurred In Gdi At System Drawing Image Save a li li a href A Generic Error Occurred In Gdi Vb a li li a href A Generic Error Occurred In Gdi Selenium a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed relatedl answers to any questions you might have Meta Discuss a generic error occurred in gdi bitmap save c the workings and policies

asp net bitmap save a generic error occurred in gdi

Asp Net Bitmap Save A Generic Error Occurred In Gdi table id toc tbody tr td div id toctitle Contents div ul li a href How To Solve A Generic Error Occurred In Gdi a li li a href System runtime interopservices externalexception x A Generic Error Occurred In Gdi a li li a href A Generic Error Occurred In Gdi Windows a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to relatedl any questions you might have Meta Discuss the workings a generic error occurred in gdi c

asp.net bitmap save error

Asp net Bitmap Save Error table id toc tbody tr td div id toctitle Contents div ul li a href A Generic Error Occurred In Gdi In C Windows Application a li li a href How To Solve A Generic Error Occurred In Gdi a li li a href A Generic Error Occurred In Gdi Asp net C a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings relatedl and policies of this site About Us Learn more about Stack

bitmap memorystream error

Bitmap Memorystream Error table id toc tbody tr td div id toctitle Contents div ul li a href Image Save C a li li a href C Image From Byte Array a li ul td tr tbody table p GDI error' if the stream is closed Visual Studio Languages NET Framework Visual C relatedl Question Sign in to vote I'm doing a c bitmap parameter is not valid memorystream bit of processing of an image I just need to rotate it a generic error occurred in gdi c image save increase the size and convert to bit-per-pixel I'm just having

bitmap.save memorystream gdi error

Bitmap save Memorystream Gdi Error table id toc tbody tr td div id toctitle Contents div ul li a href How To Solve A Generic Error Occurred In Gdi a li li a href A Generic Error Occurred In Gdi In C Windows Application a li li a href System runtime interopservices externalexception x A Generic Error Occurred In Gdi a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might relatedl have Meta Discuss the workings and policies of this a generic error occurred in

bitmap save to stream a generic error occurred in gdi

Bitmap Save To Stream A Generic Error Occurred In Gdi table id toc tbody tr td div id toctitle Contents div ul li a href How To Solve A Generic Error Occurred In Gdi a li li a href System runtime interopservices externalexception x A Generic Error Occurred In Gdi a li li a href A Generic Error Occurred In Gdi Windows a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to relatedl any questions you might have Meta Discuss the workings c bitmap save a generic error occurred

c bitmap save a generic error occurred in gdi

C Bitmap Save A Generic Error Occurred In Gdi table id toc tbody tr td div id toctitle Contents div ul li a href A Generic Error Occurred In Gdi In C Windows Application a li li a href How To Solve A Generic Error Occurred In Gdi a li li a href A Generic Error Occurred In Gdi Asp net C a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to relatedl any questions you might have Meta Discuss the a generic error occurred in gdi c image

c# a generic error occurred in gdi image save

C A Generic Error Occurred In Gdi Image Save table id toc tbody tr td div id toctitle Contents div ul li a href How To Solve A Generic Error Occurred In Gdi a li li a href C Picturebox Image Save A Generic Error Occurred In Gdi a li li a href A Generic Error Occurred In Gdi Windows a li ul td tr tbody table p here for a quick overview of the site relatedl Help Center Detailed answers to any questions you a generic error occurred in gdi image save vb net might have Meta Discuss the

c# bitmap save generic gdi error

C Bitmap Save Generic Gdi Error table id toc tbody tr td div id toctitle Contents div ul li a href A Generic Error Occurred In Gdi In C Windows Application a li li a href C Picturebox Image Save A Generic Error Occurred In Gdi a li li a href A Generic Error Occurred In Gdi Windows a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to relatedl any questions you might have Meta Discuss the workings c bitmap save a generic error occurred in gdi and policies

bmp save error

Bmp Save Error table id toc tbody tr td div id toctitle Contents div ul li a href C Bmp Save a li li a href How To Solve A Generic Error Occurred In Gdi a li li a href A Generic Error Occurred In Gdi In C Windows Application a li li a href C Picturebox Image Save A Generic Error Occurred In Gdi a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site

error gdi generic in occurred

Error Gdi Generic In Occurred table id toc tbody tr td div id toctitle Contents div ul li a href A Generic Error Occurred In Gdi C a li li a href A Generic Error Occurred In Gdi Act a li li a href A Generic Error Occurred In Gdi Asp Net a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you relatedl might have Meta Discuss the workings and policies of a generic error occurred in gdi image save this site About Us Learn more

externalexception a generic error

Externalexception A Generic Error table id toc tbody tr td div id toctitle Contents div ul li a href A Generic Error Occurred In Gdi Bitmap Save C a li li a href A Generic Error Occurred In Gdi In C Windows Application a li li a href How To Solve A Generic Error Occurred In Gdi a li li a href System runtime interopservices externalexception A Generic Error Occurred In Gdi a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss

externalexception a generic error occurred in

Externalexception A Generic Error Occurred In table id toc tbody tr td div id toctitle Contents div ul li a href A Generic Error Occurred In Gdi In C Windows Application a li li a href A Generic Error Occurred In Gdi Asp net C a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have relatedl Meta Discuss the workings and policies of this site a generic error occurred in gdi c image save About Us Learn more about Stack Overflow the company Business

externalexception a generic error occurred

Externalexception A Generic Error Occurred table id toc tbody tr td div id toctitle Contents div ul li a href System runtime interopservices externalexception x A Generic Error Occurred In Gdi a li li a href A Generic Error Occurred In Gdi In C Windows Application a li li a href How To Fix A Generic Error Occurred In Gdi a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us relatedl Learn more

gdi bitmap error

Gdi Bitmap Error table id toc tbody tr td div id toctitle Contents div ul li a href A Generic Error Occured In Gdi Bitmap save C a li li a href System runtime interopservices externalexception x A Generic Error Occurred In Gdi a li ul td tr tbody table p here for a quick overview of the site relatedl Help Center Detailed answers to any questions you a generic error occurred in gdi c image save might have Meta Discuss the workings and policies of this a generic error occurred in gdi in c windows application site About Us

gdi error eoutofresources copy bitmap

Gdi Error Eoutofresources Copy Bitmap table id toc tbody tr td div id toctitle Contents div ul li a href A Generic Error Occurred In Gdi Bitmap save C a li li a href A Generic Error Occurred In Gdi In C Windows Application a li li a href C Picturebox Image Save A Generic Error Occurred In Gdi a li li a href A Generic Error Occured In Gdi Bitmap save C a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta

gdi error on website

Gdi Error On Website table id toc tbody tr td div id toctitle Contents div ul li a href A Generic Error Occurred In Gdi Bitmap save C a li li a href How To Solve A Generic Error Occurred In Gdi a li li a href System runtime interopservices externalexception A Generic Error Occurred In Gdi a li li a href A Generic Error Occurred In Gdi Windows a li ul td tr tbody table p here for a quick overview of relatedl the site Help Center Detailed answers to a generic error occurred in gdi c image save

gdi error

Gdi Error table id toc tbody tr td div id toctitle Contents div ul li a href How To Solve A Generic Error Occurred In Gdi a li li a href A Generic Error Occurred In Gdi In C Windows Application a li li a href A Generic Error Occurred In Gdi Windows a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions relatedl you might have Meta Discuss the workings and policies a generic error occurred in gdi bitmap save c of this site About Us

gdiplus bitmap save error

Gdiplus Bitmap Save Error table id toc tbody tr td div id toctitle Contents div ul li a href A Generic Error Occurred In Gdi In C Windows Application a li li a href A Generic Error Occurred In Gdi Asp net C a li li a href C Picturebox Image Save A Generic Error Occurred In Gdi a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might relatedl have Meta Discuss the workings and policies of this site a generic error occurred in gdi

image save error

Image Save Error table id toc tbody tr td div id toctitle Contents div ul li a href How To Solve A Generic Error Occurred In Gdi a li li a href A Generic Error Occurred In Gdi Asp net C a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the relatedl workings and policies of this site About Us Learn more a generic error occurred in gdi c image save about Stack Overflow the company Business Learn more about hiring

interopservices externalexception a generic error occurred in

Interopservices Externalexception A Generic Error Occurred In table id toc tbody tr td div id toctitle Contents div ul li a href A Generic Error Occurred In Gdi In C Windows Application a li li a href How To Fix A Generic Error Occurred In Gdi a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions you might relatedl have Meta Discuss the workings and policies of this site a generic error occurred in gdi c image save About Us Learn more about Stack Overflow the company

interopservices externalexception a generic error

Interopservices Externalexception A Generic Error table id toc tbody tr td div id toctitle Contents div ul li a href System runtime interopservices externalexception x A Generic Error Occurred In Gdi a li li a href A Generic Error Occurred In Gdi Bitmap Save C a li li a href A Generic Error Occurred In Gdi In C Windows Application a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed relatedl answers to any questions you might have Meta a generic error occurred in gdi c image save Discuss the workings

interopservices externalexception a generic error occurred

Interopservices Externalexception A Generic Error Occurred table id toc tbody tr td div id toctitle Contents div ul li a href A Generic Error Occurred In Gdi C Image Save a li li a href A Generic Error Occurred In Gdi Bitmap Save C a li li a href How To Fix A Generic Error Occurred In Gdi a li li a href A Generic Error Occurred In Gdi At System Drawing Image Save In C a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers relatedl to any questions

net bitmap save error

Net Bitmap Save Error table id toc tbody tr td div id toctitle Contents div ul li a href A Generic Error Occurred In Gdi C Image Save a li li a href A Generic Error Occurred In Gdi Image Save Vb Net a li li a href A Generic Error Occurred In Gdi At System Drawing Image Save In C a li li a href A Generic Error Occurred In Gdi Windows a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers relatedl to any questions you might have

photorecord gdi error

Photorecord Gdi Error table id toc tbody tr td div id toctitle Contents div ul li a href A Generic Error Occurred In Gdi Bitmap Save C a li li a href A Generic Error Occurred In Gdi In C Windows Application a li li a href How To Solve A Generic Error Occurred In Gdi a li li a href A Generic Error Occurred In Gdi Asp net C a li ul td tr tbody table p here for a quick overview of the site Help Center Detailed answers to any questions relatedl you might have Meta Discuss the