Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
DonBakke
About
- Username
- DonBakke
- Joined
- Visits
- 3,129
- Last Active
- Roles
- Administrator
Comments
-
Since it uses xlate, it won't have to read it every time, only once? Perfect. 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 …
-
If you can make that work then that should be a perfect enhancement for you. FWIW, we typically don't require our FTP clients to be installed on each computer. Most of the time we have a dedicated server that handles scheduled or on-demand tasks. So…
-
The SRP Editor uses its own OCX file. Try registering the SRPUtil.ocx file.
-
@AusMarkB that's okay. This was emailed to me directly and it contains snippets of code which might not be permissible to share openly. We'll start looking at this and share our conclusions here in case others run into the same problem.
-
OpenInsight does not have a native SFTP client. You will have to integrate one with OpenInsight. We've done this with WinSCP and PSFTP. The SRP Run Command utility works well for this.
-
I assumed, then, that when you commented that "if a workstation with locks crashes, then the workstation's locks will not be cleared" this was a reference to the true lock not be clearing. If that is the case, then my previous comment is applicable.…
-
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. Consider using the IDLEPROC property i…
-
Note that if a workstation with locks crashes, then the workstation's locks will not be cleared. Eventually the UD will clear the lock. I think the default timeout is 30 minutes but I believe this can be changed. We have code that runs every minut…
-
There are reverse engineering tools out there but it is against your license agreement to use them. Perhaps the SRP_Extract_XML function will help?
-
The SRP Editor knows how to interrogate object code in the SYSOBJ table and identify the arguments. This particular routine does appear to be a Revelation supplied SSP. The latest compile date is 2007. I suspect is a part of the library that support…
-
@josh, this was what I was wondering. We have discovered that this type of crash is often associated with OLE controls that are being loaded from a network share...which is why we've been pushing hard to have people store and register the OCX files …
-
Your understanding of application inheritance is correct. Unfortunately, the Form Designer doesn't make it easy to bring script event handlers from the parent app into the child app. We rarely see this because we don't use script event handlers. Ot…
-
What kind of Windows crashes are you getting or what does the Windows Error Log report as the nature of the crash?
-
I'm inclined to believe, however, this is not a network latency issue but something specific to your Windows 10 builds.
-
Fair enough...but if your problems are the result of network latency due to client controls running from a network share then we can't really help you with the consequences. :)
-
I can't say this will have an impact on performance, but OCX files are recommended to be installed on local workstations.
-
What version of the HTTP Framework are you currently using?
-
I would be helpful if you could send us the image you are using just so we can compare apples to apples. Feel free to email it to support@srpcs.com.
-
@josh (and anybody else monitoring this thread), a helpful bit of advice when you encounter potential problems but you know your control is not current is to simply download the latest control from our product website and register it locally for you…
-
Your best bet is to check the Product Version of the SRPUtilities.dll file in the REVBOOT folder. This is not a registered component, so you need to always check the file that is in the REVBOOT folder you are running OI in. Having said that, it is p…
-
We are using our SRP DirectConnect control to support peer-to-peer communication. A workstation can then send out a message asking who owns a lock and the workstation with the lock then responds right away. This same utility is also used for many ot…
-
That tool still has problems as others on the forums have pointed out. Still, I agree that it is worth trying to see if it works. We've had to write our own utility that knows how to ask who owns the lock and then we can send a request to release t…
-
* Just curious, how are you handling the trigger for when one person sends a message and another person should see the message? * I'm still not sure I get how the OI listbox would accomplish your presentation goals. What would you do if a user's …
-
@josh I didn't catch that this was for the "list box" control I just assumed "edit box". My suggestion won't work. Sorry.
-
Does the SELECTION property do what you want?
-
@josh what, exactly, are you looking to accomplish if you could see it?
-
I do not know of any way to access the local lock table.
-
Look at this: POP.SELECT: https://wiki.srpcs.com/display/Commands/Pop.Select+Subroutine
-
As you may have noticed, this is documented as a Routine rather than as a Function (or even a Subroutine). Routines don't behave the way normal functions and subroutines do and as such they normally aren't used in developer routines. Routines typica…
-
While it might work for OI 10.x, we were not attempting to re-invent a wheel that already exists.