Thursday, June 16, 2011

Cannot display SOME JPEG files

Symptom:
Red X is shown instead

Cause:
The file was saved in CMYK instead of RGB
Some image viewer app can show this info on the Properties

Solution:
Convert CMYK to RGB

How to do it on Photoshop?
- Open the file
- Select all > Copy
- Open NEW file (choose RGB)
- Paste
- Save as JPEG

Wednesday, June 15, 2011

Terkait mobil (Indonesian)

Toyota Auto2000 Booking Service

Bantuan Darurat di Jalan

SEPUTAR MOBIL SUZUKI CARRY/KATANA
http://sundeespeed.wordpress.com/seputar-mobil-suzuki-carrykatana/

share dimari yang naek espass or daihatsu zebra
www.kaskus.us/showthread.php?t=4050582

Ganti Oli Mesin Mobil Sendiri
http://suaramerdeka.com/v1/index.php/read/gaya/2010/05/08/842/Ganti-Oli-Mesin-Mobil-Sendiri-Siapa-Takut

Beli Mobil Bekas, Perhatikan 11 Bagian Ini BAGIAN 1
www.modifikasi.com/archive/index.php/t-42258.html

Tuesday, June 14, 2011

Online free virus checker

ESET Online Virus Scanner
+ downloaded .exe can be run repeatedly
* first launch will take some time to download database
- if you disable Internet connection upon next launch, it will searching for connection (can't be skipped) and take about 5 mins (?) before giving up and offer to use older (existing) database

NetQin
+ APK support

www.virustotal.com

http://virscan.org/

http://virusscan.jotti.org/en

http://vscan.novirusthanks.org/

Google: online file scanner multi engine

Note to self:
If the file you upload seems to be lost (scan does not start), try to disable your AV first

Saturday, June 11, 2011

VFX: Determine Visual Extend used for a project

look at \include\vfx.h file

VFX: Activation key is generated...another hardware

Remove the folder corresponds to the version in question on \Documents and Settings\All Users\Application Data\dFPUG\Visual Extend
That will re-enable Activation dialog

Friday, June 10, 2011

XP: Cannot play sound

Symptoms
--------
"Your sound card may be in use"
No volume icon in the taskbar

Solution
--------
Open Sound and Audio Devices Properties
Select Audio tab
Ensure that correct hardware is selected as Default device

VFP: Custom paper size cannot be used at deployment

Issue:
Already setup custom paper size on [Print] Server Properties but it won't come into effect in the program

Solution 1:
- Report Designer > Page Setup > UNcheck Save printer environment
- save and close it
- "use" and "browse" report file (.frx)
- locate record with Objtype=1 and Objcode=53
- edit "Expr" field: remove "PAGESIZE=..." line
- at customer's computer:
Set Paper Size on Printer's Advanced Properties to the one desired

Solution 2:
- Getting PaperSize ID programmatically
http://hermantan.blogspot.com/2008/03/getting-papersize-id-programmatically.html
- Modify report's Papersize at runtime:
USE .frx
LOCATE FOR Objtype = 1 AND Objcode = 53
lcNew = "PAPERSIZE=9"
lcOld = "PAPERSIZE=41"
REPLACE expr WITH STRTRAN(Expr,lcOld,lcNew)
USE

Other useful tip:
Adding Custom Paper Size Programmatically
http://hermantan.blogspot.com/2007/08/adding-custom-paper-size.html