product

C#product Application event log error

I have a product developed in c# winform winservice application ,when i installed product after some time i can see one service going Down and then Up that means restarting,this is making some issues with functionality.But when i checked the log files , ican see one warning just before service is restarting often The warning is like thi...

can i configure a product like this

Hi All, I want to configure product like this,when a customer puts his order he can upload the image that he wanna see over his product Thanks in Advance ...

Eclipse RCP: build product able to load all plugins in plugins directory

I need to configure my eclipse product to load all features/plugins in features/plugins directory. Now my product loads just plugins that are listed in metadata, so if I export some plugin directly from eclipse tool as "deployable plugins" it's loaded in my product, but if I put a plugin jar directly in plugins directory It doesn't appe...

Product Specifications

Hi Everyone, Anyone know where sites like amazon and ebay get their product specifications from? Surely they don't all have a large database of specifications for every product. I could do with one for cameras that I can plug into my site. Thanks ...

Eclipse RCP: building product with feature that requires other features

I need to build a product that contains one feature, I want this feature, containing application, requires another feature that can be updated independently from product, so I put this last one in required section and not in included section. the tree is this: it.prodotto (product id) it.rcp.prototipo.application.feature (main feature ...

How to remove all cross-sell product links from Magento?

I want to remove all of the cross-sell product links from the store - we have around 22,000 links that was the result of an auto cross sell extension that I have since removed. I imagine it has something to do with removing records from the table catalog_product_link? Or is there a way to do this programmatically? ...

Change my applications's exe file version in VB6

i made an application in vb6 now i have given it a product version from project/properties but i noticed the win explorer has two tags for exe a product version and a file version. i want to edit the file version of my app's exe any idea how can i do that? file version should be x.x.x.x ...

Does `productElement(i)` on a case-class use reflection?

Considering the following Scala snippet: case class Foo(v1: String, v2: Int, v3: Any) def inspect(p: Product) = (0 until p.productArity).foreach(i => println(p.productElement(i))) inspect(Foo("Moin", 77, null)) Does the invocation of inspect() here means that reflection is used (in whatever way)? I'd like to somehow be able to ac...