Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
673 views

.NET How to parse a date string for Persian (Jalali calendar) into a DateTime object?

I've run across several great code libraries for converting a Persian (Jalali calendar) date to a Gregorian date. However, my original source is a string, not a DateTime object. There doesn't seem to ...
4
votes
2answers
219 views

How can I create a custom font service for Persian language

Hi There are very limited Persian fonts for the websites, I need to know if there is a way to have custom fonts loaded in websites ? There are some font replacement services but I dont know if they ...
3
votes
2answers
154 views

how to print datetime in persian format in c#

What is the simplest way to print c# datetime in persian? currently I'm using : static public string PersianDateString(DateTime d) { CultureInfo faIR = new CultureInfo("fa-IR"); ...
3
votes
3answers
654 views

How to show Persian numbers on ASP.NET MVC page?

I'm building a site which needs to support both English and Persian language. The site is built with ASP.NET MVC 3 and .NET 4 (C#). All my controllers inherit from a BaseController, which sets culture ...
3
votes
2answers
543 views

How to derive custom culture from .NET CultureInfo class?

I want to set my application culture to whatever I want, regardless of what the OS culture is. To obtain this I used CultureInfo class with "fa-IR" as culture, but it used the "GregorianCalendar" as ...
3
votes
2answers
160 views

How to convert Silverlight Projects or controls to WPF

There is no Persian Scheduler for WPF. I have found one which is in SilverLoght but not in WPF How can I convert it? I have full access to the SL source code
3
votes
2answers
472 views

persian transliteration java api

I need transliterate ENglish to Persian and I want to use it in offline mode , is there any free api that I use offline ?
2
votes
3answers
61 views

Detect Non-English KeyPress in VB.NET

When a user types into a VB.Net textbox, I want to detect the key press (assuming I cannot read the text from the textbox after its written). This is easy for English (by using e.KeyChar or Keys.[A, ...
1
vote
1answer
34 views

MySQL Table Convrted to to utf-8

I had an old table with latin1 charset and i convert it to utf-8 using phpmyadmin after that, when i read data with php, my data shows as ???? ????? question marks my page charset is utf-8 there is ...
1
vote
3answers
352 views

Right to Left support for TextView in Android

I'm developing an application for Android in Persian. I fetch data from SQLite database and display them, using TextView. How can I display the text (that contains multiple lines ) from right to left? ...
1
vote
2answers
83 views

python utf-8 problem

this is my script # -*- coding: utf-8 -*- from BeautifulSoup import BeautifulSoup import urllib2 res = urllib2.urlopen('http://tazeh.net') html = res.read() soup = BeautifulSoup(''.join(html)) ...
1
vote
1answer
88 views

How to get the week of the year in some cultures?

I want to get the week of a year (in current culture), so I do: var week = CultureInfo.CurrentCulture.Calendar .GetWeekOfYear(DateTime.Now, CalendarWeekRule.FirstDay, ...
1
vote
1answer
155 views

Zend Search Lucene And Persian Language !

i have the following code in my zf project : $index = Zend_Search_Lucene::open(APPLICATION_PATH . '/cache/search_index'); $doc = new Zend_Search_Lucene_Document(); $title = "سلام ...
1
vote
1answer
227 views

Persian language support in PHP/MySQL web application

I'm building a PHP/MySQL web application and I need to have persian language support besides english, french and german. Can you guys give me some advice regarding this topic? What encoding should I ...
1
vote
1answer
1k views

Changing Calendar Type in DateTimePicker , C#?

Is it possible to change type of calendar in DateTimePicker (C#) ? e.g : I'm gonna replace Persian Calendar with the default calendar in DateTimePicker ! Thanks
0
votes
1answer
101 views

how to solve this SQL and foreign language issue?

I wrote this procedure in a site. it take a string as input parameter(user name) and looks into the related table to find out it's record and return the "ID" field as output of procedure. this work ...
0
votes
2answers
78 views

PHP json_encode() function and Persian language

I'm converting a website database to Joomla's K2 component database. in K2 there is a extra_fields columns that user can create custom fields, similar as Drupal's CCK. So I used this feature to keep ...
0
votes
1answer
27 views

Working with Perso-Arabic Text (count + joining issues)

I'm trying to display the Persian alphabet in the Debug window in order. Once it reaches the final letter, subsequent letters will be multiplied by the group they are in. So, for example, if I want to ...
0
votes
1answer
169 views

Insert a persian text in mysql table

I want to store values of a form (in php) into mysql , one field is text and values of this field is in persian language , when I insert data to table this persian text stores in this shape : ??????? ...
0
votes
1answer
107 views

Zend Jalali Date

Does Zend support jalali date and calendar? And How can i get that ? I tried this: $locale = new Zend_Locale('fa_IR'); $date = new Zend_Date(); $new_date= ...
0
votes
2answers
338 views

Does Sqlite database support persian/arabic encoding?

I work with Sqlite database in C# and I have this question: Does Sqlite database support Persian/Arabic encoding? Because I have written some Arabic/Persian data in it and when I want to read data ...
0
votes
0answers
96 views

Hooking custom method in Microsoft Outlook

Disclaimer: I do not intend to misuse Microsoft Outlook for any illegal purposes. I am Persian and Outlook does not support Persian(Jalali) calendar. So I have to hook my own methods to outlook to ...
0
votes
1answer
389 views

using preg_match to detect persian (farsi) characters in string

I am trying to validate form data from server-side. my interest is that the user just fill the form by Persian characters. I am using this code: $name=trim($_POST['name']); $name= ...
0
votes
0answers
142 views

Send parameters to Web Service in Persian?

Display information in Farsi, but I have a problem when my site for web services can be sent a character "?" are displayed. pages are saved with Unicode(utf-8 with signature)codepage 65001 and the ...
0
votes
3answers
881 views

Farsi/Arabic number to be outputed properly

Ok, may be you think this dup question but I swear its not. lol You have a file that outputs as such: <div id="first">1</div> 2 <div id="third"> <? $i = 3; echo(i) ?> ...
0
votes
3answers
315 views

What's The Best Option For Rendering Complex Fonts?

I'm working on a game (using Ruby) and planning to have it available in several languages. I was wondering what's the best option for rendering text. In particular, whatever I use should be able to ...