Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(DataFlex) Appending Strings to BinDataDemonstrates appending strings to a BinData..
Use ChilkatAx-win32.pkg Procedure Test Handle hoBinData1 Boolean iSuccess Handle hoBinData2 String sTemp1 Get Create (RefClass(cComChilkatBinData)) To hoBinData1 If (Not(IsComObjectCreated(hoBinData1))) Begin Send CreateComObject of hoBinData1 End // Append a string using a 1-byte per char encoding Get ComAppendString Of hoBinData1 "This is a test" "windows-1252" To iSuccess Get ComGetEncoded Of hoBinData1 "hex" To sTemp1 Showln sTemp1 // The bytes contained within the binData1 (in hex) are: 54,68,69,73,20,69, ... Get Create (RefClass(cComChilkatBinData)) To hoBinData2 If (Not(IsComObjectCreated(hoBinData2))) Begin Send CreateComObject of hoBinData2 End // Append a string using a 2-byte per char encoding Get ComAppendString Of hoBinData2 "This is a test" "utf-16" To iSuccess Get ComGetEncoded Of hoBinData2 "hex" To sTemp1 Showln sTemp1 // The bytes contained within the binData2 (in hex) are: 54,00,68,00,69,00,73,00,20,00,69,00, ... End_Procedure |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.