Bengali Unicode string is displays as "???" on Windows 7 - unicode

In my project (VB6.0), there is a label control which is displaying UNICODE string from database. everything is working fine in my machine (windows 8). when i install this to another machine (Windows 7), everything is working but UNICODE is not displaying. what should i do??? plz help.

Related

NetBeans 11 and Encoding characters

Now I download Apache NetBeans 11 and after that, I CLONE my Git PHP Repository to Windows Folder, If I open HTML files via Notepad, everything is ok, but when I open it via NetBeans, I got wrong characters interpretation like this:
BAD
Ăšvod
RIGHT
Úvod
How can I solve it to use UTF8? When I open a file in example via PSPad Editor I see the encoding is UTF8, but the format is UNIX, not DOS, maybe this cause a problem
Edit:
When I use Netbeans 8.2 Characters are ok
Any sugestions?

MinGW-W64 Encoding with Clion

Windows 10 Jetbrains Clion 2018.2.1
MinGW-W64 Encoding
input[1] :
std::cout << "가나다라 abc" << std::endl;
output[1] :
媛?섎떎??abc
Settings > Editor > File Encodings
I can solve with Path setting: EUC-KR, but only configured file only. I have to configure Encoding setting every each project, every each file.
I found when using CMD, chcp 65001 works, but clion's cpp output cannot manage like that.
VM option :
-Dconsole.encoding=EUC_KR
-Dconsole.encoding=EUC-KR
-Dconsole.encoding=UTF8
-Dconsole.encoding=UTF-8
-Dfile.encoding=EUC_KR
-Dfile.encoding=EUC-KR
-Dfile.encoding=UTF8
-Dfile.encoding=UTF-8
I tried them all, each by each, but they does not work.
cygwin basically works well, but mingw-w64 doesn't work well. I searched for hours, but I couldn't find any answer.. :(
Thank you for reading..
Unfortunately, the Windows console only supports standard characters. If you try to print a special character, it will appear abnormally.
Windows cmd uses a simple ASCII table, while Windows uses an extended ANSI table. The 128 first characters are identical, so you can use them only.

Install Word on Wine (Linux Mint) with existing key

I switched to Linux (Mint) from Windows (10) a few months back and I am still running dual-boot (Win10 & Linux Mint 18.2). In an attempt to wean my dependency off Windows, I want to run Wine so I can open Word and view my old Word documents that look completely garbled when open them with LibreOffice Writer.
I have Microsoft Office Suite running on Win10 - is there a way to use the same product key for my Wine version of Word since it's the same computer? Or is there any other way to do this?

WinDbg is not loading my symbol files

I'm writing a Kernel mode usb-driver primary for Windows Vista 32bit but hopefully it will also be able to be builded for Win XP, Win Vista, Win 7 32 and 64 bit.
Anyway, I'm debugging from an Windows 7 32bit laptop to a Windows Vista 32bit laptop (the target). The laptops are connected via Firewire and the connection seams to be ok since I can set some breakpoints and step trough parts of my code. All information is in assembly though and WinDbg says "Your debugger is not using the correct symbols..." when I hover over an function in my driver.
Symbol file path is:
SRV*c:\symbols*http://msdl.microsoft.com/download/symbols;C:\Me\MyDriver\objchk_wlh_x86\i386
Source file path is:
C:\Me\MyDriver
Everything is newly compiled but WinDgb still won't accept my symbol files. Why?
If you can set breakpoints and step through your code it sounds like your symbols are fine. You can try:
!itoldyouso mydriver
If you want the debugger to convince you that your symbols are OK.
I never use the hover feature in the GUI, but it's entirely possible that it just doesn't work properly in some cases.
-scott

NetBeans charset problem. Linux -> Windows

I have problem with charset in my NetBeans on Windows when I open files, which were editting in NB on Linux by my coworkers.
I guess it should be unicode in both.
What I should to do to resolve this problem?
I can find proper option.
I use frensh and changed the netbeans encoding to Iso-8859-1 and it worked for me.
tried UTF-8 before didn't do it
my symptoms were as follows:
- a website hosted on linux and developped by another dev
- downloaded on my windows 8 , netbeans 8.0 beta or 8.1
- when opening a file for the first type it was saying "cannot option safely..." if chose Yes all my frensh special chars were messed up
-Hicham
right-click on Project -> Properties -> Sources -> Encoding
for maven project, put project.build.sourceEncoding in pom->project->properties
We had the same problem with Eclipse because of mixed Windows and Linux developers. If you use Java you have 3 options:
change to Unicode charset. Though we couldn't do that with Eclipse on Windows, maybe it works out for you. Linux should be usually on Unicode already.
change to Iso-8859-1 on Linux, seems to be compatible with CP1252
use the tool native2ascii to change non-ASCII-characters in strings to their explicit unicode representation (IMO this is the most robust solution, though it's Java only I guess)
The most easy way to solve this is by a terminal command
$ sudo sh netbeans-8.0.2-linux.sh