Home > a generic > c# bitmap save generic gdi error

C# Bitmap Save Generic Gdi Error

Contents

here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings c# bitmap save a generic error occurred in gdi+ and policies of this site About Us Learn more about Stack c# bitmap.save gdi+ exception Overflow the company Business Learn more about hiring developers or posting ads with us Stack Overflow Questions Jobs c# image save a generic error occurred in gdi+ Documentation Tags Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of 4.7 million programmers, just like you, helping each other. Join them;

A Generic Error Occurred In Gdi In C# Windows Application

it only takes a minute: Sign up A Generic error occured in GDI+ in Bitmap.Save method up vote 26 down vote favorite 8 I am working on to upload and same a thumnail copy of that image in a thumbnail forder. I am using following link: http://weblogs.asp.net/markmcdonnell/archive/2008/03/09/resize-image-before-uploading-to-server.aspx but newBMP.Save(directory + "tn_" + filename); is causing exception "A generic error occurred how to solve a generic error occurred in gdi+ in GDI+." I have tried to give permission on folder, also tried to use a new separate bmp object when saving. Edit: protected void ResizeAndSave(PropBannerImage objPropBannerImage) { // Create a bitmap of the content of the fileUpload control in memory Bitmap originalBMP = new Bitmap(fuImage.FileContent); // Calculate the new image dimensions int origWidth = originalBMP.Width; int origHeight = originalBMP.Height; int sngRatio = origWidth / origHeight; int thumbWidth = 100; int thumbHeight = thumbWidth / sngRatio; int bannerWidth = 100; int bannerHeight = bannerWidth / sngRatio; // Create a new bitmap which will hold the previous resized bitmap Bitmap thumbBMP = new Bitmap(originalBMP, thumbWidth, thumbHeight); Bitmap bannerBMP = new Bitmap(originalBMP, bannerWidth, bannerHeight); // Create a graphic based on the new bitmap Graphics oGraphics = Graphics.FromImage(thumbBMP); // Set the properties for the new graphic file oGraphics.SmoothingMode = SmoothingMode.AntiAlias; oGraphics.InterpolationMode = InterpolationMode.HighQualityBicubic; // Draw the new graphic based on the resized bitmap oGraphics.DrawImage(originalBMP, 0, 0, thumbWidth, thumbHeight); Bitmap newBitmap = new Bitmap(thumbBMP); thumbBMP.Dispose(); thumbBMP = null; // Save the new graphic file to the server newBitmap.Save("~/image/thumbs/" + "t" + o

>

C# Picturebox Image Save A Generic Error Occurred In Gdi+

.NET Framework Class Libraries Question 0 Sign in to vote

A Generic Error Occurred In Gdi+ Windows 7

Hello All,I was just going to play around by generating some bitmaps programatically.I started off with http://stackoverflow.com/questions/15862810/a-generic-error-occured-in-gdi-in-bitmap-save-method this simple example, expecting everything to go smoothly, but have run into a strange error.The following code is by no means good, just something simple and complete I would expect to work:using System;using https://social.msdn.microsoft.com/Forums/vstudio/en-US/b15357f1-ad9d-4c80-9ec1-92c786cca4e6/bitmapsave-a-generic-error-occurred-in-gdi?forum=netfxbcl System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace BitmapOutput{    public partial class Form1 : Form    {        ///

        /// The picture i am drawing        ///         System.Drawing.Bitmap myBitmap;        ///         /// Graphics object for drawing        ///         System.Drawing.Graphics myGrafx;        public Form1()        {            InitializeComponent();            this.myBitmap = new Bitmap(800, 600);            this.myGrafx =                 System.Drawing.Graphics.FromImage(this.myBitmap);            this.DrawPicture();            this.ShowPicture();            this.SavePicture();        }        public void DrawPicture()        {            this.myGrafx.DrawEllipse(                new Pen(System.Drawing.Color.AliceBlue),                 new Rectangle(0, 0, 100, 100));        }        public void ShowPicture()        {            this.pictureBox1.Image = this.myBitmap;        }        public void SavePicture()        {            this.myBitmap.Save("Output\\out.bmp" ,                    System.Drawing.Imaging.ImageFor

Tips/Tricks Top Articles Beginner Articles Technical Blogs Posting/Update Guidelines Article Help Forum Article Competition Submit an article or tip Post your Blog quick answersQ&A Ask http://www.codeproject.com/Questions/283361/A-generic-error-occurred-in-GDIplus a Question View Unanswered Questions View All Questions... C# questions Linux questions https://www.roelvanlisdonk.nl/2011/12/30/solving-a-generic-error-occurred-in-gdi-in-c/ ASP.NET questions SQL questions VB.NET questions discussionsforums All Message Boards... Application Lifecycle> Running a Business Sales / Marketing Collaboration / Beta Testing Work Issues Design and Architecture ASP.NET JavaScript C / C++ / MFC> ATL / WTL / STL Managed C++/CLI C# Free Tools Objective-C and Swift a generic Database Hardware & Devices> System Admin Hosting and Servers Java .NET Framework Android iOS Mobile SharePoint Silverlight / WPF Visual Basic Web Development Site Bugs / Suggestions Spam and Abuse Watch features Competitions News The Insider Newsletter The Daily Build Newsletter Newsletter archive Surveys Product Showcase Research Library CodeProject Stuff communitylounge Who's Who Most Valuable Professionals The Lounge   a generic error The Insider News The Weird & The Wonderful The Soapbox Press Releases Non-English Language > General Indian Topics General Chinese Topics help What is 'CodeProject'? General FAQ Ask a Question Bugs and Suggestions Article Help Forum Site Map Advertise with us About our Advertising Employment Opportunities About Us Ask a Question All Questions All Unanswered FAQ A generic error occurred in GDI+. Rate this: Please Sign up or sign in to vote. See more: C# C#4.0 I want to save an image to the same file it was created from. Platform: C#.Net. Bitmap varBmp = (Bitmap)Bitmap.FromFile(@"E:\a.jpg"); //do something varBmp.Save(@"E:\a.jpg"); It shows the following error: A generic error occurred in GDI+. How to solve the problem? How to get the handle of the varBmp image? Thanks in advance. Posted 13-Nov-11 23:24pm akul123749 Updated 13-Nov-11 23:26pm v2 Add a Solution 4 solutions Top Rated Most Recent Rate this: Please Sign up or sign in to vote. Solution 3 Accept Solution Reject Solution There is a fundamental problem here: Bitmap.FromFile holds a lock on the file until th

to: public void SaveImage() { byte[] byteArray = null; // Put the bytes of the image here.... Image result = null; ImageFormat format = ImageFormat.Png; using (MemoryStream ms = new MemoryStream(byteArray)) { result = Image.FromStream(ms); } using (Image imageToExport = result) { string filePath = string.Format(@"C:\Temp\Myfile.{0}", format.ToString()); imageToExport.Save(filePath, format); } } This resulted in the error: "A generic error occurred in GDI+." The error was resolved, after changing the code to: public void SaveImage() { byte[] byteArray = null; // Put the bytes of the image here.... Image result = null; ImageFormat format = ImageFormat.Png; result = new Bitmap(new MemoryStream(byteArray)); using (Image imageToExport = result) { string filePath = string.Format(@"C:\Temp\Myfile.{0}", format.ToString()); imageToExport.Save(filePath, format); } }

I found the solution at: http://stackoverflow.com/questions/1053052/a-generic-error-occurred-in-gdi-jpeg-image-to-memorystream Categorized in Uncategorized Tagged with C# View all 4 comments Leave a Reply Cancel reply Your email address will not be published. Required fields are marked *Comment Name * Email * Website 4 comments Dino says: January 13, 2012 at 17:57 Hello I find on web that you have similar error like I get now and I don't know how to resole. In my C#.NET application I catch webcam picture in pictureBox and try to save on disk with SaveFileDialog, but I get always the same error "A generic error occurred in GDI+". Code is blow, if you can help… ======================= SaveFileDialog sfd = new SaveFileDialog(); sfd.InitialDirectory = @"slike"; sfd.Filter = "*.jpg|*.jpg"; sfd.Title = "Spremi sliku kao…"; sfd.FilterIndex = 1; if (sfd.ShowDialog() == DialogResult.OK) { try { using (Bitmap bitmap = new Bitmap(pictureBox1.Image)) { bitmap.Save(sfd.FileName, ImageFormat.Jpeg); sfd.Dispose();//To Do…. isprobaj bitmap.Dispose();//To Do…. isprobaj } MessageBox.Show("Slika je spremljena! ", "Spremanje slike", MessageBoxButtons.OK, MessageBoxIcon.Information); } catch (Exception ex) { MessageBox.Show("Greška pri spremanju slike: \n" + ex.Message); } finally { sfd.Dispose();// to check….. } } sfd.Dispose();// to check….. button6.Enabled = true; button7.Enabled = false; button8.Enabled = false; button9.Enabled = false; pictureBox1.Image = Image.FromFile("nemaslike.jpg"); this.WebCamCapture.Stop(); textBox1.Focus(); Amine says: May 23, 2013 at 18:38 This problem is mostly occurred for the security reasons. Make sur that you give all permissions to your Folder. punit says: April 4, 2016 at 15:23 How to Put the

 

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 windows xp

A Generic Error Occurred In Gdi Windows Xp table id toc tbody tr td div id toctitle Contents div ul li a href A Generic Error Occurred In Gdi Windows 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 Crystal Reports 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 relatedl Center Detailed answers to any questions you might a generic error occurred in

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

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