Hey,
If you happened to be in Japan and need to go through comments which are written in Japanese for some of your Visual C++ projects, then you may also have encountered that the comments are not displayed properly.
The reason is that the files are opened with different encoding; not in Shift-JIS.
To resolve this issue,
- in the "Solution Explorer", right click on some file and choose "Open with"
- in "Choose the program you want to use to open this file", select "C++ Source Code Editor (with encoding)" at set it as default.
- in next popup, choose "Japanese (Shift-JIS) - Codepage 932"and press OK
If the comments are still not visible, you may want to choose a different encoding scheme until you get it right.
PS
I am using Visual Studio 2013 Professional Edition
Cheers!
Showing posts with label Windows. Show all posts
Showing posts with label Windows. Show all posts
Wednesday, June 17, 2015
Monday, September 30, 2013
Writing small Katakana letters using IME Language bar
Hi guys,
To write small letters like トゥ simply type an 'x' before you type the 'u'
That's it.
Cheers!
To write small letters like トゥ simply type an 'x' before you type the 'u'
That's it.
Cheers!
Tuesday, April 12, 2011
Copying files in command prompt in windows
Copying files in windows is quite easy; just right click on the folder you want to copy, then select copy and then paste wherever you want it to be. However, you may have experienced that if copying stops due to some error, even the amount copyied upto that point can disappear. In that case you may want to use the command prompt for copying.
xcopy is a powerful version of the copy command with additional features; has the capability of moving files, directories, and even whole drives from one location to another.
To copy from folder1 to folder2, the syntax would be
xcopy "C:\folder1\*" "C:\folder2" /k /e /d
where
/k - Copies attributes. Normal xcopy will reset read-only attributes.
/e - Copies directories and sub directories, including empty ones.
/d[:mm-dd-yyyy] : Copies source files changed on or after the specified date only. If you do not include a mm-dd-yyyy value, xcopy copies all Source files that are newer than existing Destination files. This command-line option allows you to update files that have changed.
For additional parameter information you can have a look at here.
xcopy is a powerful version of the copy command with additional features; has the capability of moving files, directories, and even whole drives from one location to another.
To copy from folder1 to folder2, the syntax would be
xcopy "C:\folder1\*" "C:\folder2" /k /e /d
where
/k - Copies attributes. Normal xcopy will reset read-only attributes.
/e - Copies directories and sub directories, including empty ones.
/d[:mm-dd-yyyy] : Copies source files changed on or after the specified date only. If you do not include a mm-dd-yyyy value, xcopy copies all Source files that are newer than existing Destination files. This command-line option allows you to update files that have changed.
For additional parameter information you can have a look at here.
Subscribe to:
Posts (Atom)