Motti

6,419
Reputation
888 views

Registered User

Name Motti
Member for 1 year
Seen 57 mins ago
Website
Location Israel
Age 35
˙uʍop-ǝpısdn sı ɹoʇıuoɯ ɹnoʎ 'sıɥʇ pɐǝɹ uɐɔ noʎ ɟı
53m
comment Dynamically building a URL in QTP
Heaven forbid you read the docs! ;o)
53m
comment Dynamically building a URL in QTP
Great answer, the only thing is I think that QTP anchors the beginning and end of properties so you may have to use "id:=.*target_id.*" instead of Albert's suggestion.
56m
revised Dynamically building a URL in QTP
formatting
2d
comment Copying between VARIANT and _variant_t
You'll probably get undefined behaviour in any case due to double deletion (in case of BSTR) and dangling pointers (in case of IUnknown) when both the safearray and the _varaint_t are destroyed.
2d
revised Copying between VARIANT and _variant_t
codify
2d
answered Copying between VARIANT and _variant_t
Nov
23
revised How does one return a local CComSafeArray to a LPSAFEARRAY output parameter?
added 299 characters in body
Nov
23
comment How to access Firefox cache from webdriver?
If you look in your about:cache you'll see that some cache items are on disk (Disk cache device) and some are in memory (Memory cache device) those in memory don't have a path associated with them and the OP wants to know how he can access them.
Nov
23
comment How does one return a local CComSafeArray to a LPSAFEARRAY output parameter?
This happens for both VS8 (2005) and VS9 (2008)
Nov
22
revised How to access Firefox cache from webdriver?
edited tags; edited tags
Nov
22
comment How does one return a local CComSafeArray to a LPSAFEARRAY output parameter?
Surely this isn't the way CComSafeArray is supposed to be used, it goes against the grain of CComVariant and CComBSTR.
Nov
22
asked How does one return a local CComSafeArray to a LPSAFEARRAY output parameter?
Nov
22
revised What is the correct syntax when passing CComSafeArray to a method expecting SAFEARRAY**
added 201 characters in body
Nov
22
answered What is the correct syntax when passing CComSafeArray to a method expecting SAFEARRAY**
Nov
19
comment Is there an Non-Short circuited logical “and” in C++?
This is why I think it's a design bug allowing overloading of the && and || operators.
Nov
18
answered Is there an Non-Short circuited logical “and” in C++?
Nov
18
answered If FindNextUrlCacheEntry() fails, how can I retrieve info of the failed entry again?
Nov
18
comment If FindNextUrlCacheEntry() fails, how can I retrieve info of the failed entry again?
I'm seeing the same problem, is there a maximal size I can allocate in order to avoid ERROR_INSUFFICIENT_BUFFER?
Nov
18
revised If FindNextUrlCacheEntry() fails, how can I retrieve info of the failed entry again?
codify and add wininet tag
Nov
17
revised Really impossible to use return type overloading?
quote is not code
Nov
17
comment Is there a simple way to create a unique integer key from a two-integer composite key?
+1 even though if key1 is a 32 bit integer then key1 << 32 == 0 (you should cast it to 64 bits first)
Nov
17
answered Conjugate function for complex number
Nov
17
revised Conjugate function for complex number
fix code formatting
Nov
17
comment Does a destructor always get called for a delete operator, even when it is overloaded?
Steve, if you explicitly call the destructor and then call delete it will cause the destructor to run twice which is undefined. If you call the destructor, then call placement new on that memory chunk and then call delete, you're fine since each constructed object's destructor is called exactly once.
Nov
17
comment Does a destructor always get called for a delete operator, even when it is overloaded?
My guess is that you were down-voted because placement new is relevant for separating construction and memory allocation, the question was about separating destruction and memory _de_allocation. As I said in the comment to the accepted answer, you can have destruction without deallocation but you can't have deallocation without destruction (unless you choose to subvert the type system by using char buffers).
Nov
16
comment Does a destructor always get called for a delete operator, even when it is overloaded?
Actually you can destroy an object without freeing the memory (by explicitly calling the dtor p->~Type) you can't do the opposite, free the memory without destroying the object.
Nov
16
comment Does a destructor always get called for a delete operator, even when it is overloaded?
You sometimes want to be able to delete an object and reuse its memory for a new object (with placement new), however it's never beneficial to release an objects memory without destroying it first (at least I can't think of such a scenario).
Nov
16
revised Does a destructor always get called for a delete operator, even when it is overloaded?
added 135 characters in body
Nov
16
comment Does a destructor always get called for a delete operator, even when it is overloaded?
My answer is Yes it's always coupled, or in other words, no you can't implement these semantics with a destructor and a delete operator.
Nov
16
revised Does a destructor always get called for a delete operator, even when it is overloaded?
fix code
Nov
16
answered Does a destructor always get called for a delete operator, even when it is overloaded?
Nov
8
revised How to clean up internet explorer cookies programmatically?
codify
Nov
5
asked What’s the difference between “domain” and “non-domain” cookies?
Nov
3
revised Intermediate results using expression templates
improve (?) formatting
Nov
3
answered Intermediate results using expression templates
Nov
3
revised Intermediate results using expression templates
Quotes are not code
Nov
2
awarded  Enlightened
Nov
2
awarded  Nice Answer
Nov
1
answered Working with HResult, interop and related things in C#
Nov
1
revised Working with HResult, interop and related things in C#
added 10 characters in body
Oct
26
answered * is illegal for a struct?
Oct
25
accepted Main’s Signature in C++
Oct
25
answered Main’s Signature in C++
Oct
25
comment Can you give me examples of odd single line comments in C++?
C++ doesn't have single quoted strings, you can remove that test.
Oct
21
revised Please explain this behavior with character arrays/strings in C
improve formatting
Oct
21
revised How can I create an interface without parameterless constructor in C++?
fix code indeng
Oct
21
answered How to pass a SAFEARRAY from C# to COM?
Oct
20
revised Web Extensibility
link to EA's youtube video
Oct
20
revised C++ Template + Iterator (noob question)
formatting
Oct
20
revised Most Astonishing Violation of the Principle of Least Astonishment
use kbd tags