Creating customizable products in your Shopify store not only increase your customer satisfaction, it also increases your conversion rate. Here is a method to add custom options for your Shopify product and convert it into personalized product - Go to Shopify store page and search for "Advanced Product Customizer" app or you can directly the the Shopify app page by clicking on this link Advanced Product Customizer . Install Advanced Product Customizer app for free in your Shopify store From the application dashboard, enable to app embed block to complete the installation process Click "Product Custom Options" From the Shopify products list, select the product on which you want to add custom options. Advanced Product Customizer offers Image Swatch, Color Swatch, Text box, File Upload, Radio, Checkbox, Date Picker and more. Here is the a demo video for adding custom option for a Shopify product -
Hi, recently I worked on a project where the requirement was to add an ActiveX control dynamically to a UserControl type project. Here I was trying to add that activeX control to multiple tab pages of a tab control.
Here is the code that I used -
Here is the code for "treeload" function -
Now, after implementing above code I am able to add ActiveX control to tabpages at run-time.
Here is the code that I used -
for(int i = 0; i < 4; i++)
{
this.LineTabs.TabPages.Add(i);
AxTree treeadd = treeload(this.LineTabs.TabPages[i]);
}
In the above code I am creating four tab pages at runtime and adding ActiveX control "AxTree" to these pages dynamically using function "treeload".Here is the code for "treeload" function -
private AxTree treeload(TabPage tab)
{
AxTree treeobject = new AxTree();
((System.ComponentModel.ISupportInitialize)(treeobject)).BeginInit();
SuspendLayout();
tab.Controls.Add(treeobject);
treeobject.Dock = DockStyle.Fill;
ResumeLayout();
((System.ComponentModel.ISupportInitialize)(treeobject)).EndInit();
return treeobject;
}
In above code, you can see that we are passing a tabpage to treeload function. Here in this function first we created an object of ActiveX control "AxTree". Then we add this object to tab page. Later on we treeload function returns this object to do some other stuffs with ActiveX control's objects.Now, after implementing above code I am able to add ActiveX control to tabpages at run-time.
Comments
Post a Comment