Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
josh
About
- Username
- josh
- Joined
- Visits
- 2,067
- Last Active
- Roles
- Member
Comments
-
@DonBakke Do you disagree with this approach?
-
It doesn't have to match 100%, but as close as possible would be good. We are remaking the call centre system in OI. One of the requirements is that a call centre worker be able to find a product, select the appropriate colour and size, and add it …
-
cool, i will try that. Basically, i need to create a 'product page' in OI, and it should look like a typical product page on the web.
-
ok that's a good idea. I am guessing there is an @window property that holds the background colour of the form.
-
Thanks, it works. Also, do you happen to know if it's possible to use your cursor to select the text of a static text control: e.g.,
-
oh cool i will try that thanks
-
you could have your own web service running somewhere (amazon web services?) which your OI program intermittently calls. The webservice could check if the client is still valid, and if not, tell the client to pay, or something...
-
Hi, no I was not. Your suggestion works. Thanks so much. The users will be much happier now (: I was aware of this property, but I didn't try it because I thought that it didn't apply to my case. I thought that the item was focused but had no sele…
-
you only have to loop once though. The first time you loop, you could create an indexes, each of which contains the rows of a particular filter option. When when the user changes the filter option, you get the data directly from the index. The ind…
-
ok, so then it's still not going to work. anyway, we have just deiced to embed an ie browser into the form and put the text we want to display in read only mode in that browser. We create the html file dynaimcally and save it to the user's local dr…
-
What's soft disabled?
-
Yeah, I am talking about the OI one.
-
ok thanks, it's not a big deal, obviously the app still works either way, but i think it would be easier for the users.
-
Yes, I also got "virus" popups whenever I went to their website. In general though, their website was really slow and the UI was hard to navigate. They should just copy the SRP website, which works perfectly.
-
yeah, we could use POP i guess, but it just means that we will have to implement the searching in OI rather than the email server doing it... Also, in my installation of oi, the .net dll that RTI_GETMAIL calls was in the wrong location on my comp…
-
Yeah, but i bet you the email server didn't have imap disabled lol.
-
oh ok thanks. Not really sure how I will do this then. I can see that exchange as a web api, but i can't find any docs on how to use it.
-
right thanks. Tabs might be the go.
-
@donbakke "Well, as I noted above, Xlate will use its internal cache 9 times and then it goes back to the disk. So, you need to decide if that is enough for you. We wrote our own service module" woops I missed that part. OK, i will just pass in the …
-
oh ok then, so i could just put the program in the OI directory. that would be easier actually. I will look at that,
-
"Caching simply means it returns the last known record for a given Key ID without having to read from the disk. So, unless you are reading the same Key ID more than once, there is no benefit to caching." This is good to know. I have a routine which…
-
I think we will add sftp api to our .net library which we call from oi. Having to install putty or winscp on every computer seems brittle. Our library is alraedy installed on every computer, and we can easily upgrade it.
-
I think it's fixed now. Problem was that the the windows 10 workstations were losing connection to the network share that OI is on. Which was happening due to a group policy update (https://www.qdoscc.com/blog/following-windows-10-upgrade-mapped-dr…
-
thanks I will have a look
-
Yeah it will release the lock, but our own table that stores lock info will not have been updated. That's what I was referring to. Also, i didn't know that you could set a property that controls the time after which a user has been logged off that …
-
"But you are still relying upon the UD for lock management, correct? That is, you are using the LOCK and UNLOCK statements which means you are asking OI (and ultimately the UD) to enforce and release the locks." Yes, true. "Consider using the IDLE…
-
@donbakke "Eventually the UD will clear the lock. I think the default timeout is 30 minutes but I believe this can be changed." Oh no, you have misunderstood me. I am not talking about OI's tracking of the locks. I'm talking about our custom built…
-
We do 2 things: 1. We have an MFS on some (but not all) tables that tracks locks and unlocks. This is 100% correct for the tables that it tracks. Note that if a workstation with locks crashes, then the workstation's locks will not be cleared. But …
-
hi, rti lock owner doesn't work for us. Anyway, we now have a solution that is 100% correct.
-
@donbakke Yes, i am guessing your function doesn't just get stuck in an infinite loop. Much better than the revelation parse_xml thing. We should probably change to yours.