I have the need to modify my website's products. It uses fcksource as the tool to maintain products. I have nearly 2000 items and I would like to automate this process.
All of my raw data is in Excel (i recieve it from my various venders in Excel)
I am wondering how I can programically modify the textarea (and preferably insert HTML) into the textarea.
Here is a sample of how how the source looks in normal view
<textarea name="fx_DESC2a" style="display:none">Find Me</textarea>
I have been able to FIND the element I need to modify with VBA, but I have not been able to CHANGE its value.
I also have not been able to "toggle" the Source button programically so that the HTML editor is showing.
I want to be able to replace "Find Me" with some different text like:
"Volume Pricing:
1-4 $10.00
5-9 $9.50
10-19 $9.20
20+ $9.00"
Or better, I would like to insert a TABLE with the info
How can I manipulate these fields/components with VBA?
So in a nutshell, how do I change the value of "fx_DESC2a"
Thanks!
Bruce
All of my raw data is in Excel (i recieve it from my various venders in Excel)
I am wondering how I can programically modify the textarea (and preferably insert HTML) into the textarea.
Here is a sample of how how the source looks in normal view
<textarea name="fx_DESC2a" style="display:none">Find Me</textarea>
I have been able to FIND the element I need to modify with VBA, but I have not been able to CHANGE its value.
I also have not been able to "toggle" the Source button programically so that the HTML editor is showing.
I want to be able to replace "Find Me" with some different text like:
"Volume Pricing:
1-4 $10.00
5-9 $9.50
10-19 $9.20
20+ $9.00"
Or better, I would like to insert a TABLE with the info
How can I manipulate these fields/components with VBA?
So in a nutshell, how do I change the value of "fx_DESC2a"
Thanks!
Bruce