<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><category>pcsoft.us.windev</category><copyright>Copyright 2026, PC SOFT</copyright><lastBuildDate>5 Jun 2015 16:14:00 Z</lastBuildDate><pubDate>2 Jun 2015 10:01:00 Z</pubDate><description>I am making progress with accessing the Gembox features but the problem I have is to access a specific worksheet, a specific row or specific cells.&#13;
&#13;
I have the following with my comments on what is working&#13;
&#13;
ef is "GemBox.Spreadsheet.ExcelFile"&#13;
//This loads an existing empty xlsx file&#13;
ef &lt;- ExcelFile.Load("C:\My Sites\PlumAccounting\Exe\PlumAccounting_NOB97010\0\Test.xlsx")&#13;
//This loads the data into Sheet 1 of the above file&#13;
ef.LoadCsv("C:\My Sites\PlumAccounting\Exe\PlumAccounting_NOB97010\0\ActualvsBudget.csv",",")&#13;
//This supposedly adds another sheet to the existing spreadsheet&#13;
//If I return ef.worksheets.count it returns 2 so I think it is working&#13;
ef.Worksheets.Add("Sheet2")&#13;
//Now I want to ensure that I am working with the newly added worksheet so according to the Gembox documentation the recently added sheet becomes the ActiveWorksheet&#13;
//The code below is not giving an error and is supposed to 'load' the active worksheet.&#13;
ew is ExcelWorksheet &lt;- ef.Worksheets.ActiveWorksheet&#13;
//However now I want to work with one row on this worksheet&#13;
//The line below is accepted&#13;
er is ExcelRow &lt;-ew.Rows&#13;
//but if I want to change the details of 1 row there is no way I can do that&#13;
//this gives an error that er is a COLLECTION of rows (ExcelRowCollection). I want to work with 1 row&#13;
er.Style.Font.Weight = ExcelFont.BoldWeight&#13;
//I have tried various ways to refer to a single row i.e.&#13;
er[1].Style.Font.Weight = ExcelFont.BoldWeight&#13;
er(1).Style.Font.Weight = ExcelFont.BoldWeight&#13;
//I have tried this to indicate that I am only working with Row 1. Although the code does not give an error at execution you get message that you cannot access a sub-element&#13;
er is ExcelRow &lt;-ew.Rows[1]&#13;
&#13;
Is there anybody that can help please?&#13;
&#13;
Thanks in advance.&#13;
&#13;
&#13;
Ericus Steyn</description><ttl>30</ttl><generator>WEBDEV</generator><language>en_US</language><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt/read.awp</link><title>[WD19] and Gembox - Another attempt</title><managingEditor>moderateur@pcsoft.fr (El moderador)</managingEditor><webMaster>webmaster@pcsoft.fr (El webmaster)</webMaster><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52568/read.awp</comments><pubDate>5 Jun 2015 16:14:00 Z</pubDate><description>Yes Alexander the interface everything is there.&#13;
&#13;
For instance:&#13;
&#13;
//other stuff before this&#13;
ef is ExcelFile dynamic = new Ex…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52568/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52568/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt/read.awp">[WD19] and Gembox - Another attempt</source><title>Re: [WD19] and Gembox - Another attempt</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52567/read.awp</comments><pubDate>5 Jun 2015 14:29:00 Z</pubDate><description>Hi Ericus,&#13;
&#13;
Has WD created an interface with functions like get_ExcelWorksheetCollection( n ) or something in the like? I reme…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52567/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52567/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt/read.awp">[WD19] and Gembox - Another attempt</source><title>Re: [WD19] and Gembox - Another attempt</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52565/read.awp</comments><pubDate>5 Jun 2015 11:27:00 Z</pubDate><description>Thanks Jose&#13;
&#13;
Array is just one way I tried to access a single worksheet or cell.&#13;
&#13;
In windev you either get a syntax error on…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52565/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52565/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt/read.awp">[WD19] and Gembox - Another attempt</source><title>Re: [WD19] and Gembox - Another attempt</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52564/read.awp</comments><pubDate>5 Jun 2015 11:13:00 Z</pubDate><description>Hi.&#13;
In the windev help says that arrays of objects are not supported.&#13;
I also tried yesterday some basic example and could not …</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52564/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52564/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt/read.awp">[WD19] and Gembox - Another attempt</source><title>Re: [WD19] and Gembox - Another attempt</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52563/read.awp</comments><pubDate>5 Jun 2015 10:31:00 Z</pubDate><description>Hi Al&#13;
&#13;
You are right about Gembox support. Been dealing with a Mario there and he tried as best he could. For anybody else int…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52563/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52563/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt/read.awp">[WD19] and Gembox - Another attempt</source><title>Re: [WD19] and Gembox - Another attempt</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52559/read.awp</comments><pubDate>5 Jun 2015 00:36:00 Z</pubDate><description>Hello Ericus&#13;
&#13;
You might also try talking to Gembox.&#13;
From personal experience with their MS Word product, their level of suppo…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52559/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52559/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt/read.awp">[WD19] and Gembox - Another attempt</source><title>Re: [WD19] and Gembox - Another attempt</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52556/read.awp</comments><pubDate>4 Jun 2015 21:13:00 Z</pubDate><description>Thanks Yogi&#13;
&#13;
I have followed the examples closely and the C# ones are very close to the syntax in Windev.&#13;
&#13;
It is to point to…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52556/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52556/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt/read.awp">[WD19] and Gembox - Another attempt</source><title>Re: [WD19] and Gembox - Another attempt</title></item><item><author>guest</author><category>pcsoft.us.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52553/read.awp</comments><pubDate>4 Jun 2015 17:23:00 Z</pubDate><description>Please check the .NET samples for GemBox and then try to do the same in WD.&#13;
&#13;
Yogi Yang</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52553/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt-52553/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.us.windev/52466-wd19-and-gembox-another-attempt/read.awp">[WD19] and Gembox - Another attempt</source><title>Re: [WD19] and Gembox - Another attempt</title></item></channel></rss>
