Hi Ethan,
Vapir was already works very good with utf-8.
But i have a problem when read data utf-8 from excel
myscript.rb
----------------------------------------------------------------------------------------------------
require 'rubygems'
require 'win32ole'
require 'vapir-firefox'
$ff = Vapir::Firefox.start("
www.google.com")
$excel = WIN32OLE.new("excel.application")
$excel.visible = true
$workbook = $excel.workbooks.open("#{getPathExe}HpTel.xls")
$ws=$workbook.worksheets(1)
$workbook = $excel.ActiveWorkbook
s = "Năng động mỗi ngày"
$ff.text_field(:name,'q').value = s # good
$ff.text_field(:name,'q').value = $ws.range("e5").value #not work
------------------------------------------------------------------------------------------------------
Help me!!! plz