Hindi Characters not displaying in ms word document [closed] - utf-8

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I have generated a word document (docx) on fly, which contains 2 languages: English and Hindi.
English characters are displayed correctly but Hindi characters are displayed as box [] when you open the document. However when you select the hindi text (box) and re select the font from drop down to Aerial the characters displays.
Well the full document already has Aerial font but for some reason it doesn't display hindi characters when you open it.
I have tried to google for the it but I didn't found any instruction which may solve this issue. Please can anyone advise what is going on here.

It looks like that there is no way to do it. Alternatively, I have changed the font to "Mangal" and it works fine.
Thanks all!

Even I had same issue but it looks like MS WORD has got the solution.
in MS WORD 2007
step 1 - Go to 'Review'
Step 2 - Click on 'Set Language'
Step 3- Select check box 'Detect Language automatically'
Close word file and reopen it :)
Hope it help

try installing Kruti Dev 010 font. It worked for me.

Related

Emojis in Segmented Control [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
I have emojis used in the different segments for my Segmented Control. When I select a segment, the selected segment highlights (indicates which one was selected), and the emoji suddenly becomes all white. Is there anyway to fix this issue? Thanks!
I use follow code and it worked for me.
OC:
[segmentedControl setTitleTextAttributes:#{NSForegroundColorAttributeName:[UIColor whiteColor]} forState:UIControlStateSelected];
Swift:
let segmentedControl = UISegmentedControl(items: ["😊","😢","moon"])
segmentedControl.setTitleTextAttributes([NSForegroundColorAttributeName:UIColor.whiteColor()], forState:.Selected)
I believe this is because the coding for emoji is not compatible with UIViews.
What you can do is select Momentary for the State. It will still disappear on click but will quickly come back.
Unfortunately the segment won't stay hilighted blue like you probably want though.

Opacity of background in Textmate2 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I am new to Textmate 2. I have seen few people using textmate with a reduced opacity of the background color. I am trying to find a way to achieve that, but could not get to anything closer.
I tried tweaking the bundle file for the default theme, but eventually ended up messing the look of the existing theme.
What am I missing here. Do I need any other bundle to achieve it? How do I get a transparency in the background?
Ah! yes I now get it!... I guess its different in Textmate2. All you need to do is to goto the bundle editor and change the value of background in settings.
For example if the value of background is #141414 then append the hex value of the desired transparency. For example you want the opacity to be 62.8% then you can change the value to be #141414A1.
0xA1 = 161
161/256 = 62.8%

Trouble identifing this barcode, using zbar and redlaser [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
So I've got this barcode (which I will attach) and I don't know how to decode it, both zbar on my desktop and redlaser on my phone cannot read it. After a lot of googling, and reading on forums I can't find similar barcodes... Any suggestions?
https://dl.dropboxusercontent.com/u/13940239/2013-04-30%2009.36.28.jpg
Sorry I realised I needed a higher repuation to post an image, here is a dropbox link
After identifing the barcode, can anyone help with zbar decoding the barcode. I'd like do set this up so the software will decode similar barcodes...
It is a Code 39 barcode with a 3 bar widths char gap, which reads '1004876532'. Almost any standard bar code reader should be able to read this type. This online bar code decoder was able to read a cleaned up version of the image you originally posted.
*the yellow arrows represent the 3 bar width character gaps.
it seams to be Code_39 format, value: 1004876532

Ruby libraries to find "location" of items on laid out web page? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I'm looking for a library, or a strategy, that can be used, ideally in conjunction with Ruby/Nokogiri, to determine the layout location of items on a web page, when viewed in the browser.
For example, in the current page I'm looking at, there is a "Ask Question" button in the top right corner (I am guessing in the header). If, for example, I wanted to see where the all the words "question" are on the page, which would match this word, and other places hat have the word question, in terms of XY coordinates or pixels, how would I do that?
I clearly have to load the CSS. But, what else?
Any suggestions would be appreciated.
The Watir project might be able to help, as it talks directly to the browser, allowing you to get information about a page after the browser has finished rendering it. You'll need to look through the API to see if you can get the pixel locations for elements.
Pixel locations will be difficult though, because those are tied to font sizes and a real-human user could have something that is overriding the settings applied by the CSS. The information you get from a browser in your testing could vary wildly from what a real user would see. That might, or might not, be an issue for you.

What are the best fonts for numeric data entry? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I'm creating a GUI application that requires the user to provide lots of numeric data. What is the best font to display the user's data? I assume that a mono-spaced font would be better in this case, as multiple lines will have the same number of characters.
My favorite is Consolas
I'd probably go sans serif monospace.
What other fonts are you using for the rest of the application? If the answer is "Arial", "Arial Monospace" is probably the matching font for the numbers.
courier/courier new also looks better.
anything monospace will be fine.
Agreed on monospace but let the USER choose which one and the size - you have to set one by default
I'm a fan of Lucida Console or PT Mono.

Resources