Questions tagged [farpoint]

14 questions
2
votes
1 answer

Exporting image to excel with farpoint spread

I'm trying to export to excel of a cell with an image. The image doesn't appear in the excel file. Is it possible that this feature is not supported? imageCell = New ImageCellType imageCell.ImageUrl = "..." Sheet.Cells(0,…
the_lotus
  • 12,668
  • 3
  • 36
  • 53
2
votes
1 answer

How to set the Farpoint Spread control width auto

I'm having an issue with a Farpoint Spread control which has already set the grid's height by code behind and the width directly in the markup. My question is, is there any way to set the width as auto, because if I open the grid with 1440x900…
agus.sanchez
  • 21
  • 1
  • 2
1
vote
1 answer

Remove Focus from FpSpread

I have a problem removing the Focus from FpSpread to any other control in the same Form. The real problem happens when opening another form while the old form is still opened, the focus remains at FpSpread in the old form. any suggestions would be…
omar
  • 436
  • 6
  • 18
1
vote
0 answers

Creating an Excel wrapper application using 0365 APIs

Is it possible to create an app using the newest APIs for O365 that would provide a fully functional Excel spreadsheet, from a template, that would allow us to prevent access to SaveAs and other features? We've been able to create Excel wrapper apps…
1
vote
1 answer

Farpoint spreadsheet - disable cell right click menu

I'm using Farpoint Spreadsheet for WinForms with C#. How can I disable the "context menu" displayed when right-clicking over a cell that is being edited?
paul
1
vote
1 answer

Adding some text in FarPoint while Export To Excel

I am having FarPoint Web Spread and a Panel with a text box [T1] in my webpage. I am using SaveExcel method of FpSpread to write the contents into Excel. Is there any way by which i can write the contents of text box [T1] into the excel. Below is…
Code's
  • 208
  • 2
  • 18
0
votes
1 answer

Cancel EnterCell event of spread farpoint

My program use spread farpoint as a 3rd-party control, it has a TextBox control and a Spread control for showing data. When user change active cell in spread, I want to validate that the TextBox must not empty. If the TextBox is empty, EnterCell…
huypham99
  • 67
  • 7
0
votes
2 answers

Is it possible, 2 spread have 1 sheet to use farpoint spread

For example, 'A' spread and 'B' spread have same spread sheet(same design, and same formulars). So, if change the value in 'A' spread than change the same value in 'B' spread automatically. It is sure the same cell. Is it possible to simply?…
cardbt
  • 1
  • 1
0
votes
3 answers

Data-Binding breaks DataRow.RowState functionality

When I create a new dataset from code or retrieve it via data adapter from the database, changing the row contents results to changed rowstate. That's the default behaviour and everything works correctly: DataSet ds = new DataSet(); DataTable table…
grizzly
  • 1,146
  • 12
  • 26
0
votes
1 answer

C1 Tab Control leaving gaps if tabs are hidden

I am in the process of migrating my accounting software's usage of Farpoint's Tab Pro 2.0 to the ComponentOne Tab control. The only problem I'm having so far is that some of my tabs will be hidden in some scenarios, like if the user has a certain…
Bill Hileman
  • 2,798
  • 2
  • 17
  • 24
0
votes
1 answer

Using FarPoint Spreads in User Controls

i am using FarPoint Spreads in a Windows Forms Application. To show a spread on several Forms, I created a user control which contains one of my spreads and manages the representation. However the ActiveSheet Property of the Spread seems to always…
H W
  • 2,556
  • 3
  • 21
  • 45
0
votes
2 answers

Adding a column to a Farpoint Spread grid

I've never really used Farpoint Spread before, but I have an existing VB.NET application in which I need to add a column to a Spread grid. There is currently some code like: For Each dr As DataRow In g_AdoRS.Rows vaSpreadSum.SetText(1, x,…
intA
  • 2,513
  • 12
  • 41
  • 66
0
votes
1 answer

vatab pro 2.0.46 unsetting radio option on tab

I have a vatabpro control version 2.0.46 by Farpoint technologies in VB6 on a form. In the form activate event some code is run to show and hide the certain tabs in the va tab pro control. After this a normal option button on one of the tabs is set…
acheo
  • 3,106
  • 2
  • 32
  • 57
0
votes
1 answer

Farpoint Spread control captures Ctrl+Z instead fo MenuItem

I have a form where there is shortcut applied to a MenuItem. The problem is that when the focus is inside the Spread control it traps the Ctrl+Z press and the shortcut never fires. If the focus is placed on a different control (ex. TextBox) the…