I am sorry, can you come again.
Shankarcodebase
Posts
-
Visual Studio Add-in 2012 -
Visual Studio Add-in 2012Thank you Eddy for the relavent answer. Can you please extend your help in finding me an article/sample which can help me understanding your point "make a simple addin, and use that to load your functionality from a shared assembly". Thank you,
-
Visual Studio Add-in 2012Sorry again, I wanted to correct my mistake, so i wanted to remove this question from two forums, but i could not able to do it. Can you please help me in removing this post from below 2 forums. http://www.codeproject.com/Messages/4672977/Visual-Studio-Add-in-2012.aspx\[^\] http://www.codeproject.com/Messages/4672976/Visual-Studio-Add-in-2012.aspx\[^\] Thank you
-
Visual Studio Add-in 2012Richard/Team, Accept my apologies, as I was not sure of the correct forum, i have posted 3 forums...thanks
-
Visual Studio Add-in 2012Hi All, Is it possible to develop a visual studio add-in, which can be installable in any visual studio, I mean, that can be installable and usable in VS2005,VS2008,VS2010, VS2012 & 2013. I have a visual studio add-in developed in VS2008, I wanted to make it generic such that, it will be installable and usable in any of the Visual studios. is it possible? Thank you in advance for your help. Regards
-
Visual Studio Add-in 2012Hi All, Is it possible to develop a visual studio add-in, which can be installable in any visual studio, I mean, that can be installable and usable in VS2005,VS2008,VS2010, VS2012 & 2013. I have a visual studio add-in developed in VS2008, I wanted to make it generic such that, it will be installable and usable in any of the Visual studios. is it possible? Thank you in advance for your help. Regards
-
Visual Studio Add-in 2012Hi All, Is it possible to develop a visual studio add-in, which can be installable in any visual studio, I mean, that can be installable and usable in VS2005,VS2008,VS2010, VS2012 & 2013. I have a visual studio add-in developed in VS2008, I wanted to make it generic such that, it will be installable and usable in any of the Visual studios. is it possible? Thank you in advance for your help. Regards
-
Is VariantChangeType() have problem with BSTR to VT_I4 conversion with even numbers and odd numbersHi Guys, I am trying to round the value of long value. But i have this value in data type Variant.BSTR. I can convert to this value by changing its data type from BSTR to VT_I4 through VariantChangeType(), in this conversion this value will be get rounded to nearst integer. Again i should convert this value from VT_I4 to BSTR by VariantChangeType(). This is working fine for ODD numbers but failing for EVEN numbers. if(FAILED(VariantChangeType(&vtValue,&vtValue,VARIANT_NOVALUEPROP,VT_I4))) { ASSERT(false); } if(FAILED(VariantChangeType(&vtValue,&vtValue,VARIANT_NOVALUEPROP,VT_BSTR))) { ASSERT(false); } Ex: if vt.BSTR = "5.5" after conversion to VT_I4 its value will be 6 But if vt.BSTR = "6.5" My expected value is 7 here but after conversion to VT_I4 its value will be 6 only.....any idea please...need to set anything while using this api...