Ignore:
Timestamp:
Sep 18, 2007, 12:10:41 AM (17 years ago)
Author:
イグトランス (egtra)
Message:

SPrintF関連の追加。関数FloatToChars, FormatFloatE, FormatIntegerUと列挙体FormatFlags。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Include/com/vbobject.ab

    r267 r335  
    165165    End Function
    166166
    167     Sub Prop(ByRef arg As Variant)
     167    Sub Prop(arg As Variant)
    168168        Prop(ByVal arg.PtrToVariant)
    169169    End Sub
     
    173173    End Sub
    174174
    175     Sub PropRef(ByRef arg As Variant)
    176         PropRef(arg.PtrToVariant)
     175    Sub PropRef(arg As Variant)
     176        PropRef(ByVal arg.PtrToVariant)
    177177    End Sub
    178178
     
    297297
    298298Function CreateObject(className As PCWSTR) As VBObject
    299     Return New VBObject(className)
     299    Return New VBObject(className, 0, CLSCTX_ALL)
    300300End Function
    301301
    302302Function CreateObject(className As String) As VBObject
    303     Return New VBObject(ToWCStr(className))
     303    Return New VBObject(ToWCStr(className), 0, CLSCTX_ALL)
    304304End Function
    305305/*
Note: See TracChangeset for help on using the changeset viewer.