The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
24 views

Converting variant into array in VBA

I am trying to use the Excel built-in function SumProduct in VBA but keep getting errors. The code snippet looks as follows Dim X As Variant 'x is input value, given as Range X = x.Value Dim Y() As ...
0
votes
1answer
81 views

How to implement simple class with variant field in c++

I want to implement class which let's say have field key and class A or B. The argument in constructor in this class is array of chars. The constructor pseudocode would take a look at first char, if ...
0
votes
0answers
53 views

Traversing boost::variant types with Visitor that takes template

I've got a persistence class like: class Writer: private boost::noncopyable { template<typename T> struct Record { std::vector<T> _queued; // waiting to be persisted ...
0
votes
0answers
13 views

Can't create product variant through API

Cant seem to create new product variant using shopify api. This is my code: global $shopifyClient; $config['shopify_api_product_price'] = "/admin/products/128671451/variants.json"; $variant = ...
-1
votes
1answer
153 views

overflow while converting variant of type (OleStr) into Type Integer Delphi

Im trying to read a Xml file but i keep getting a "overflow while converting variant of type (OleStr) into Type Integer" error on Integer or WideString types, ive tried changing the types from ...
-1
votes
1answer
120 views

How to return a byte array as a variant in vb6

I've been trying to figure out why the function below throws an error saying "Type Mismatch" when it returns. From what I know about VB6, this should work without any issue, yet it obviously does not. ...
0
votes
2answers
35 views

Is it possible to have a boost::variant inside a struct that does not get “new”ed?

I have created the struct struct Event { int key; boost::variant<int, float> value; }; Is it possible to create Events like so: Event e; I have tried this but am getting compiler ...
3
votes
1answer
86 views

Recursive Typedef in C++

I want to write a typedefinition in c++, but do not know if something I want to implement is legal. Let's say I want to do a typedef of a vector of boost variant types, which point to an int, or ...
0
votes
0answers
14 views

How and when are variant type are converted to regular data types

When the actual data type of a variable will be decided? For ex: x=10 here x will hold integer x="Hello" here x will hold string My basic question is msgbox "2"+"3" is 23 because these are strings ...
3
votes
2answers
43 views

OCAML how to find the next element of the variant

I have -> type week = MON | TUE | WED...... I want to create the function tomorrow which return the next day! For example , if I call "tomorrow MON", the function will return TUE.
2
votes
2answers
202 views

VARIANT datatype of c++ into c#

What is equivalent of VARIANT datatype of C++ in C#? I have code in C++ which uses VARIANT datatype, how can i convert that code in C# ?
0
votes
0answers
52 views

Safe conversion of _variant_t

I need to perform a safe conversion between a _variant_t and a type such as long\bool_bstr_t etc. There are many options to do this, but I'm getting lost in the (poor) documentation. For example for ...
0
votes
0answers
32 views

VARIANT members not resolved in C++ OLE automation application (Eclipse IDE)

I'm developing a C++ application that reads and writes to Excel using OLE automation (code based on this: http://support.microsoft.com/kb/216686). The application has been up and running just fine ...
2
votes
1answer
85 views

How do I check if a Variant is a TDateTime?

I have an object, that has one value, but that value can either be an integer, string, boolean or TDateTime. So, it is a Variant. I use VarType() to check its type, but since VarType() has no ...
1
vote
1answer
166 views

vLookup error for VBA in Excel

I have a form that has a list of items from which it unhides the relevant item-sheet based on the form selection. Due to the length of item name, each item is assigned an ID. The vlookup function is ...
0
votes
1answer
124 views

How to Display a Metafield in Shopify

We have a group of products that we want to have FREE Shipping. In order to do so, I have made their weight =0 and created a weight based shipping for 0lbs. That way the shipping passes through the ...
8
votes
1answer
163 views

Why does assigning a single to a variant result in a varDouble variant?

uses SysUtils, Variants; var VariantSingle: Variant; VTSingle: TVarType; SingleTest: Single; VariantDouble: Variant; DoubleTest: Double; VTDouble: TVarType; begin SingleTest := ...
0
votes
1answer
189 views

how to get values of the _variant_t?

I want to know how to get values of the _variant_t type. I already know the method a value using GetItems(), e.g.: _variant_t var = pRs->Fields->GetItem(i)->GetValue(); In the Excel file ...
-3
votes
1answer
189 views

Why is this wrong [closed]

I have the following code procedure TfrmJsApplications.colMaintStylesGetContentStyle( Sender: TcxCustomGridTableView; ARecord: TcxCustomGridRecord; AItem: TcxCustomGridTableItem; out AStyle: ...
0
votes
0answers
68 views

how to find the data type of a variant?

Is there a good way to find the type of data enclosed by a COM VARIANT type. the only to check if a variant is a SAFEARRAY is using following code now if (vtDATA.vt & VT_SAFEARRAY) { ... }
0
votes
1answer
46 views

Variant string conversion in C/C in WinPE environment

I have C/C++ code issue wherein there's WMI query which retrieves instances of Win32_DiskDrive and gets its Size property. This property is retrieved as Variant type and then I have to convert it to ...
2
votes
3answers
93 views

Polymorphism - Unsure about derrived class using templates - derrived function returns template type

Recently I've decided to work on a project where I need to have a single object, which can be any data type (uint8, unint16, uint32, or unint64) (I may like to add these are only numbers, and will ...
3
votes
2answers
275 views

Converting TMemoryStream to variant

How do I convert contents of a TMemoryStream to a variant? I use Delphi 2010. TMemoryStream stores contents of a file, it can be PDF or JPG (scanned document). File is being kept inside MS SQL base. ...
1
vote
1answer
127 views

Difference occurs when convert _variant_t to CString or displayed in (“%s”) using _variant_t.bstrVal

I want to convert _variant_t to CString, and use this: #define VartToCStr(vart) (_variant_t(vart)).bstrVal If I pass the value to CString, it just works ok, but to CString::Format(_T("%s")), ...
6
votes
2answers
280 views

C++ leak with VARIANT / bstrVal code

A leak checker tells me that I have a memory leak on memory that is allocated in the following code: // Get the value from the object as a variant. VARIANT vVal; VariantInit ( &vVal ); hres = ...
5
votes
2answers
318 views

convert a string to a variant in c++

I have this current code, which types "AAPL" into an excel sheet, and the returns the corresponding value. I would like to make it so that after cout << "Ticker: "; i can type in a ticker ...
3
votes
2answers
269 views

Do dynamic arrays support a non-zero lower bound (for VarArrayCreate compatibility)?

I'm going maintain and port to Delphi XE2 a bunch of very old Delphi code that is full of VarArrayCreate constructs to fake dynamic arrays having a lower bound that is not zero. Drawbacks of using ...
3
votes
5answers
96 views

type inference var

Type inference makes use of the var keyword. The compiler "infers" what the type of the variable is by what the variable is initialized to. e.g. var somenum=o; becomes int somenum=0; Even though ...
3
votes
1answer
381 views

C++ Template MetaProgramming: Compile Time Conditional Operator on Template Type

I'm using template metaprogramming to create a Variant and Functor (a generic functor) data type. I have an interesting problem with needing to handle arguments a certain way for particular argument ...
3
votes
1answer
345 views

How to convert Array of bytes to Variant

How to convert a byte array to Variant? I have a WebService that should receive an array of byte, but it only accepts variable of type VARIANT, I wonder how to convert in order to pass it as parameter ...
-1
votes
1answer
276 views

Propvariant to variant C#

I am a newbie in this. I am trying to convert propvariant to variant in C# I have a code like this. public static object PropValueToVariant(PROPVARIANT Value) { object result; ...
4
votes
1answer
180 views

Generic function to convert variant SAFEARRAY to STL containers

I have some functions that I use to convert a 2D variant SAFEARRAY into various STL containers, kinda like so (illustrative only) template<typename T> std::set<T> SetFromSafeArray(VARIANT ...
4
votes
1answer
161 views

Why does assigning a NIL array to a Variant cause a non-empty array to be returned in Delphi 6?

Consider the code below which compiles and runs without error in Delphi 6. When I recover the dynamic string array, instead of seeing an empty array in sa, I see an array with a length of 1 with a ...
1
vote
2answers
358 views

Getting Data from a VarArray using Delphi

I have a WebService that returns a Variant me that it has an Array ie varArray, would like to know how to get the data that varArray. Thanks for the help.
1
vote
2answers
94 views

Boost: create a function that returns a variant

I have an assignment to learn how to use boost::variant. I'm trying to create a function that asks the user for a shape type to create. Then create the requested shape and assign it to the variant and ...
3
votes
1answer
140 views

Assigning an Integer to variant

I want to set Flag as navOpenInBackgroundTab of BrowserNavConstants enum which soon will be passed as parameter to IWebBrowser2::Navigate2 Method. Signature of IWebBrowser2::Navigate2:- HRESULT ...
1
vote
1answer
149 views

VARIANT cloning in ActiveX

I'm programming an application in javascript which uses activeX object. The ActiveX function gets a VARIANT parameter from javascript call. If I define a global variable named *V1 and compare it to ...
1
vote
1answer
185 views

Translate CIM, C++ and VARIANT types [closed]

Here is a list of CIM types, I need to know the equivalent in C++ and VARIANT types. CIM_ILLEGAL CIM_EMPTY CIM_SINT8 CIM_UINT8 CIM_SINT16 CIM_UINT16 CIM_SINT32 CIM_UINT32 CIM_SINT64 ...
1
vote
1answer
223 views

Concise initialization syntax for nested variants?

I'm working a small C++ JSON library to help sharpen my rusty C++ skills, and I'm having trouble understanding some behavior with initialization lists. The core of the library is a variant class ...
3
votes
1answer
1k views

How to pass SAFEARRAY to COM object through IDispatch?

i am trying to call a method of COM object, where one of the documented parameters is an "array of bytes". The actual declartion depends on the per-language documentation you're looking at: in C# ...
2
votes
2answers
305 views

Marshalling VARIANT across ABI boundaries in a WinRT component

I am porting our component which is written in C++ at its core and has both an ActiveX and a .Net shell. The component internally uses the VARIANT type in many places. Some public properties (get/set) ...
1
vote
1answer
362 views

Boost.Variant Vs Virtual Interface Performance

I'm trying to measure a performance difference between using Boost.Variant and using virtual interfaces. For example, suppose I want to increment different types of numbers uniformly, using ...
0
votes
1answer
131 views

How to compare VARIANTARG types

I'm trying to build a function to assign VARIANTARG types to a DISPPARAMS structure, and I'm having some issues figuring out how to check the actual type of the arg. myFunc(int count, const BYTE* ...
0
votes
1answer
100 views

Python: parse VARIANT (?)

I have to read a file in python that uses Microsoft VARIANT (I think - I really don't know much about Microsoft code :S). Basically I want to know if there are python packages that can do this for me. ...
3
votes
3answers
137 views

Allow a vi node to accept any input type

I want to create a VI that will accept an Integer,float,bool,string, or enum as an input node (but only a single node), then inside my VI detect the input type so that I can use the data in different ...
5
votes
1answer
334 views

Pass data of arbitrary type between VBA and dll

So I am working on an Excel Project that is going to load a C++ dll using VBA. What I'd like to do is to be able to pass an Excel range with no specific type (data can be numerical or categorical) to ...
1
vote
1answer
132 views

What's the diffrence between _dispatch_main_queue_callback_4CF$VARIANT$mp and _dispatch_main_queue_callback_4CF$VARIANT$up in libdispatch.dylib?

Looking through multiple iOS crash logs, I'm finding stack traces which are near identical with the one exception being the aforementioned line from libdispatch.dylib. I'm curious if this difference ...
0
votes
1answer
606 views

VBA UDF Variant/Integer and Variant/String Arrays are printing only the first value to output cells

The following works great (thanks to gracious assistance by this community!) Function RangeToArrayToRange(inputRange as Range) As Variant Dim inputArray As Variant ...
-1
votes
1answer
360 views

copy variant to char*

how to copy to a character array from variant in c++. So far I have been able to come up with the snippet below. but need help in making it work. _variant_t vt_Data(parent->CharData); ...
0
votes
2answers
236 views

Is there a replacement for variant data type in .NET?

I would like to know if there is a variant data type in Delphi prism. I am converting a Delphi win32 application for Delphi Prism .NET environment.

1 2 3 4 5