#UrduFontStyle #VisualStudio #Winfoms How to write Urdu on C# Controls How to display Urdu Unicode characters on my Windows Forms UrduTextBox Control for C# Urdu Fonts in the Visual Studio can be written easily without any hurdle. You just need to install the Urdu Keyboard from Google. Now if you see the fonts style then you have no option to change the style of Urdu fonts in visual studio. By default, Urdu Font style is very ugly and it might be difficult for you to read it. So, if you want to give the good looking, dashing display then you have to go to do some extra effort for it. That’s why we brought here a way to achieve the Urdu font with beautiful and Good-Looking Font Style. //class public static class MemoryFonts { [DllImport("gdi32.dll")] private static extern IntPtr AddFontMemResourceEx(IntPtr pbFont, uint cbFont, IntPtr pdv, [In] ref uint pcFonts); private static PrivateFontCollection pfc { get; set; } static MemoryF...
As we know that blogging website is very easy to develop. But if you want to use text editor for blog post. It will be very tricky to work with this. Simply Blog post are written in plain text for storing on the database. If you want some dynamic type of Blog posts then you would make sure that you have a text editor like ckeditor. Editor helps to put the data into a format and then you can put it in a post as it is. So here you are able to use the given code for storing the ckeditor data into database. Keep in mind you will face many errors. So don't give up. try try again at last you will get achievement. So let's start Controller // POST: Blogs/Create [ValidateInput(false)] [HttpPost] public ActionResult Create(BlogTable blogTable) { if (ModelState.IsValid) { ...