Custom Query (3933 matches)
Results (448 - 450 of 3933)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1403 | Fixed | File write unicode text with bom error | ||
| Description |
$x=FileOpen("x.txt",2+128) ;have bom error
FileWriteLine($x,"我是中国人")
FileClose($x)
$x=FileOpen("y.txt",2+256) ;no bom right
FileWriteLine($x,"我是中国人")
FileClose($x)
x.txt : �����й��� 00000000h: EF BB BF CF 92 CB 87 D7 90 C2 B9 EF BF BD ; 锘肯捤囎惵癸拷 y.txt : 我是中国人 00000000h: CE D2 CA C7 D6 D0 B9 FA C8 CB 0D 0A ; 我是中国人.. |
|||
| #1409 | Fixed | Compile to .exe dialog keyboard shortcut nuisance | ||
| Description |
Ctrl-C is mapped to the "Compile"-Button. So if I want to Copy/Paste the source path to the destination path e.g. I start compiling. |
|||
| #1410 | Fixed | Using Pointer type with COM-object throws error. | ||
| Description |
AutoIt doesn't seem to have any code dealing with variables of pointer type when using COM, the following simple example throws com error 00000005. $oMyError = ObjEvent("AutoIt.Error", "_Au3Obj_Err")
Func _Au3Obj_Err()
MsgBox(48, 'COM Error', 'An error occured:' & @CRLF & $oMyError.description & @CRLF & _
"err.number is: " & @TAB & hex($oMyError.number,8))
EndFunc ;==>_Au3Obj_Err
$sh = ObjCreate("ScriptControl")
$sh.Language="VbScript"
$sh.Eval(Ptr(0))
|
|||
Note:
See TracQuery
for help on using queries.
