Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
AusMarkB
About
- Username
- AusMarkB
- Joined
- Visits
- 3,146
- Last Active
- Roles
- Member
Comments
-
Don't they say zealousy's a curse?
-
I'm not aware of any means to achieve the actual effect in your image. I think the best bet you have is to experiment with the cellcolors and related properties. It won't place an editfield within your cell but you should be able to distinguish betw…
-
The question was about header “columns” though?
-
I do get notifications for new threads and updates to threads I've contributed to. Either I didn't realise you could get notifications for updates to threads you haven't contributed to or I turned it off some time ago for some reason. I'll go check …
-
I find it curious that you need more than one. I generally need either just the one or none at all but I'm really just commenting so I get notified when there's a response cause my curiosity has been sparked. :)
-
Thanks Don, I considered setting the UseAsynchronous flag to false so it would skip that loop. Now that I know the actual consequences of that, I'll stick to the default. Would I be correct to assume then, that if the timeout kicks in, there will t…
-
Wasn't my question but thanks for answering Kev. I almost got distracted experimenting with it myself and
-
I think Don's suggestion is probably the simplest. Here's something slightly more involved that I did instead, not for the same reason, but it might work for you. Obj = OleCreateInstance("SRP.ControlInfo") SRPUtilVersion = OleCallMethod(Obj, "G…
-
Equ Dflt_ImageList$ to '.\images\rtstatus.png':@fm:31 Set_Property(CtrlEntID, 'OLE.Imagelist', Dflt_ImageList$) ; * Set the imagelist so all report tables have access to the same status icons by default If you want images within the table itse…
-
The cell works great thanks Kev and as I said, it's not a big deal, more unexpected. It would be nicer if it did take on the characteristics of the merged cell though.
-
Good point. I didn't check that. 4.0.0 I downloaded the latest RC version the other day but had the licencing messages getting in the way as per this thread vertical-scrollbar-behaving-as-auto-when-set-to-never so I rolled it back. I shall check th…
-
It was worth a shot. I've hit that same hurdle before as well. Can't suggest a solution for that one as I don't know what the ultimate end result that you want is. I assume you want to sort by date order but grouped into something bigger than indivi…
-
I'd be interested to know if you can too. The way I've handled that type of thing to date though is to add an extra column that I only use for grouping. I enter the text in that I want as the header into that column based on the contents of the othe…
-
Thanks Don. Typing the question out prompted another thought that I'm just now testing but it looks like it will work. I'm going to hide all the columns I don't want visible and just switch visibility rather than scrollpos. I'm controlling access vi…
-
and just an additional question please. What's the actual width of the scrollbar area? I want to fix the number of columns evenly in the available space. I may want to have more columns to the right of the visible space but I don't want the user to …
-
Sorry Colin, I was really just entertaining myself. Too much coffee today me thinks
-
-
For i = 1 to 4 Next i For i = 6 to 14 Next i
-
Well I was searching my code to figure out what I had done, thinking I had done something silly with the colours like made it white on white. Couldn't figure it out and was more baffled because it was working nicely in one screen and not another. Ca…
-
OI was still open but the editor wasn't so I'm thinking the editor closed overnight. Regardless, resetting the count to correspond to the number in the list did the trick. Easy when you know how. Thanks Kev
-
I assumed the above was stored in a registry setting somewhere so I went hunting it down. I thought I had found it but the entries didn't match what I was seeing in the editor, including the favourites. I assume that means I am looking in the wrong …
-
Hey Barry, I haven't used that approach either. Do you know off hand what it actually validates, that is, does it validate that the email address is indeed a valid email address or does it validate that the string complies with specific characteris…
-
If you use the array property when your data is in list format or vice versa, the table will still populate, just that the data will end up in the wrong place. Basically what you were expecting to be columns will be rows and what you were expecting …
-
Don interpreted my suggestion correctly. Michael, yes try using LIST to see how it pans out. My suggestion was that whilst you were populating the ARRAY format, your data may have been in LIST format. If that's the case, you can either * use th…
-
Is your array really a list perhaps? You could use srp_rotate_array to swap it or build it differently in the first place so that your fms and vms are in the opposite places to what they are now
-
I suspect that the only way to prevent this is to ensure you have the necessary number of columns pre-defined in design mode, whether that be the exact number or more than the number required. Rows are fine but columns won't get created at runtime.
-