Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
ColinRule
About
- Username
- ColinRule
- Joined
- Visits
- 201
- Last Active
- Roles
- Member
Comments
-
Thanks, yes I was referring to the OI control. I will now move to the SRP control, although for what I want, the Report Table may be a better choice, if it too is fast. I am using OI 8.x, so this may be the cause. I suspect OI9 has improved in thi…
-
Tried download, version is still 3.0.3. This still causes error dialog when scrolling. Colin
-
Don I tried this with and without the following line Call Set_Property(Ctrl,"OLE.ScrollBarsVisible","AL":@FM:"AL") I still get the same. When the table is initially populated there are 1000s of rows, then this is filtered to say 10. Resizing to ma…
-
Providing an Event would be good. A property which keeps the column visible on grouping would be better. There is already an event which is fired, OnSelChange, but this fires on other triggers too. I have added a workaround, as below, which seems …
-
More on this issue. I have two columns being totalled, column 18 and 19. When grouped, this shows as Part: A [18] 69.23 [17] 140.78 The order is not in accordance with what I would expect, they are reversed, but I can deal with. Just mentioning for…
-
At first I just thought I would just like the value in brackets to be removed. Thinking a little more, if we could have the option to convert this to a specific value, then we could swap with a tab, so when pasting into Excel, the text and value are…
-
I have now checked and found the cause of the problem. I was using "ColumnFooterText" to manually calculate the totals, and display in the footer. Setting this to null causes the ColumnFormula to be lost on a subsequent refresh of the data, and henc…
-
Here is an example bit of code. Run, then move the mouse around the control, and click about, to see the values change... hopefully. OLE_TABLE=@WINDOW:".OLE_TABLE" ColumnList="" ColumnList<1>="Type" :@VM:"Text" :@VM:100 :@VM:0:@VM:1:@VM:0:…
-
I have tried on another view, separate form, and the problem persists there too. The format I am using is #,##0.00 If I add a value to the item being displayed of 0.01 then the problem can be seen. I am sure that the actual returned value from the l…
-
Doh !! Missed that one, thanks, works perfectly.
-
Actually.... it does work when the table is populated. It fails to work when there is no data.
-
Sorry, yes I meant Method. No problem, its not urgent. I have just dealt with it at the top level for the place I would have used it.
-
Oh well, thanks for looking. It would be nice to have, but its not super critical. It is a usability things really, as if you try and to a click-shift/click to select a range of rows, it is easy to get a bit messed up with the resize. I suppose I c…
-
Don, not quite. The Fixed Row Height property is working fine, in that it sets the row height to the value you specify. The problem is that is has a side effect. Without setting the FixedRowHeight property, you cannot resize the row depth of indivi…
-
Confirmed that this works in 3.1.4.RC1 There is however a retrograde, in that the body font applied to the ColumnList seems to have been lost.
-
Happens to all of us from time to time.
-
Kevin, Thanks for that. I keep looking to the Properties, and could not figure out how to do it. Then realised what you mentioned here is a SEND_MESSAGE, confused me totally, as I was expecting that the Row for a Record and vice-versa would be a pro…
-
Thanks, look forward to this feature, if possible.
-
Thanks Don I have changed to use a bulk set property @RM delimited, which seems a little bit faster. Maybe in the future the All keyword could be included as a new feature. AutoPopulate did not make much difference. I am setting 28000 rows, which …
-
Excellent, thanks
-
Excellent, I set this property and it resizes now. Thanks.
-
Thanks, no problem. The hyperlink gives some indication. The SubItemFocus is not suitable. I am trying to highlight a number of specific cells, based on a condition. Colin
-
Kevin, Any idea when the new release might be. I would like to make use of this facility soon.
-
The AfterUpdate (for me) was expected to be firing when I clicked my Save button. I think my problem here is that the form is using the SRP Ribbon, and as such the table control did not lose focus, which would have triggered AfterUpdate. When you t…
-
Doh!!!!!! Missed that one.
-
Kevin Worked perfectly. I added the qualify event, which triggered. Then this sends a message to the child form to prompt to save, with YNC options. Cancel triggers the OLE.Cancel, which aborts the close, and Y causes the save, and then carries on c…
-
Tried this (as per OI help chapter 10) and it works OK. X is disabled User is forced to close via System menu. Not that elegant, but removes the issue for now. Disable Close MF_BYPOSITION$=1024 hwnd=Get_Property( @window, 'HANDLE') system_menu_hw…
-
Kevin Thanks, understood. I seem to recall seeing a Rev post somewhere on how to hide or disable the Close button on the form (red X). I just tried using the Close option from the ribbon System/Home menu, which is my own Close, and this calls the C…
-
Further, just to be clear... It seems that the main form is not triggering the Close event on the panel form, which is the issue here. If there could be some event triggered, such as Close (obviously) or if not then even just sending an message to O…