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,048
- Last Active
- Roles
- Member
Comments
-
I've tried rebuilding system index to no avail.
-
I realise this means that the sysrepos record outlined in the error message is missing but I don't understand why or how to get it back. More accurately what to do to return all the missing entries as I don't know what else has gone awry.
-
@bhaughn, sorry no suggestions for resolving your issue. I just popped in to say
-
@josh as it seems you are experimenting and using large data sets, it might be worth it for you to check out this little FastArray nugget provided by SRP. Only you can determine whether or not it is beneficial to you.
-
use Itemlist to initialise the tree. Use the addItems method if you want to 'add' stuff after the fact, generally due to some user interaction. The OI select is one of the biggest drawbacks of OI. Yours isn't broken. It's consistent. With all the y…
-
I might make it a control flag somewhere that can be implemented as needed on a per client basis
-
This has cropped up for me again but with a different use case. We're rolling out some work utilising the sendHttpRequest service and whilst everything worked in testing, once we hit some clients, it worked for some and not for others. The solution …
-
Revisiting this now because after adding the flush/garbagecollect statements it has had no apparent affect on the issue that needs addressing. So the problem I need solving is how to prevent the engines maxing out the machines memory. The config is …
-
@BarryStevens, Yeah, that's what I really said.
-
With my correction out there, to achieve what you're after, a "Left" aligned caption, it's just more smoke and mirrors. Use two separate controls. One label control to serve as the caption and a Divider picture control without a caption alongside it…
-
Barry, I take that back. I misread your post thinking the captions were always left and you wanted them centered. Now that I've reread and retested, nope, they're always centered. Sorry for the bum steer
-
@BarryStevens, using the picture control as dividers, separators etc is the one time I use the properties box in the form designer. Everything you need is in there and it saves adding excess code to your commuter. It's just the simplest approach. Wi…
-
-
Removed them and significant, probably acceptable improvement. Started to put them back again and symptoms begin to reappear. I'm not a big fan of group boxes or excessive group boxes myself so perhaps just getting rid of them and selective impleme…
-
Not as extreme but same otherwise. Definitely affects controls in group boxes more than anything else.
-
I wasn't sure if it was form fixed or not so I fixed it. Alas, no improvement to the problem. FWIW, another symptom is the changing of the page after the tab (pushbutton) is clicked. It takes a few seconds to switch and you see each of the controls …
-
With some careful perhaps tedious planning, you can place all the controls on the one page, then use the click to manage visibility. Interesting you should use this example. Here's one I prepared earlier using the visibility method This was done t…
-
Yep but didn't want to make it too easy to understand by using proper terminology
-
There's no changed event but there is a click event. I'm working with one right now which is why I was able to answer promptly.
-
or just set an @window variable, firstly on the create, set to the default value and then upon the click, just compare the current selection to the @window variable and then update the @windowvar with the current value. No need to post an additiona…
-
@josh, yes. yes I could. @FrankTomeo Do you know how many times I've read that about the button and thought "I can't think of why anybody would want that"
-
Whilst I'm still not settled on whether I'll take this approach or not, here's where I've landed at the moment. Actually as a 'toggle' it doesn't work too bad once you realise they switch positions because you never need to move the mouse to switc…
-
You guys thought I wanted to use the tabcontrol as an actual tab. I thought you knew me better than that by now to think I was going to use something for what it was designed. Thanks for the suggestions/opinions and @DonBakke, I checked out the …
-
@josh, if you're wanting only a row selection as opposed to cell selection with a highlighted row, it might be worth reviewing fields 4 and 5 of the selectionstyle property. They can help in making the selected cell look the same as all the other ce…
-
In short. No. You need to set the visibility of the column to false for that effect but you can do that easily enough when initialising the table with columnList. The thing I find a little odd is that, what you're asking for is the default behaviou…
-
I think GroupRowContextMenuEnabled would give you the best chance at achieving this but you would have to forego the default "Expand All/Collapse All" context menu
-
I see except I must have an early version of clearSettings because there's no mention of flushing cache //---------------------------------------------------------------------------------------------------------------------- // ClearSettings // /…
-
Now that I think about it, I attach and detach dbs with each request and because they may be different it's probably safest to flush and garbagecollect each request anyway.
-
Hey Don, sorry for the confusion. Yes I have a clearSettings service. The mixed message was because I think (but I don't know) that the garbagecollect might be * extra overhead I don't want happening too often if I can avoid it and * may clea…