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,059
- Last Active
- Roles
- Administrator
Comments
-
Will - Thanks. I've responded back to Revelation with both answers.
-
Here's the response I got from Revelation: So, immediately after startup it tries to shut down? My first guest has to do with some eserver.cfg settings (of course) - in particular, the error is complaining about the statsClientMonitor, maybe the set…
-
Ed - I'm not sure why you are not getting proper behavior. The visual issues are also strange, although some of the problems you are seeing are because you have the form shorter than its optimal height. Is there a reason you have resized it or is i…
-
Jared might have some ideas but I've gone ahead and posted in the Revelation forum as well for good measure.
-
And you are certain the port is open (or is this where working with the 3PV is hard)?
-
Are you sure the OEngineServer isn't already running as a Windows service?
-
I really don't have a solution to propose, at least one that is able to do all that you want out of the box (or close to it). This seems like an R&D project all by itself. That said, I can't help but wonder if this project will give you more he…
-
Awesome!
-
Thank you. Please forgive me because I have some other questions. Is the reason you need to have an RTF and HTML control is because you intend to publish content in both formats? I presume the RTF content will be published via OIPI whereas the HTML …
-
I want to make sure I understand your objective. Ideally, you want two controls on a form: an RTF and an HTML control. You want both to be editable. When content is change in one control, you want the content to be changed in the other control. Am I…
-
Phew.
-
I misunderstood. I thought you were suggesting to replace the line. I know understand you are simply suggesting we add this so a template formatted either way will be properly swapped. That makes sense to me so consider it done.
-
What about our friends who are not overseas?
-
To add to Kevin's comment, you can see examples of this in the code snippets in the aforementioned blog article. New objects are generated from the CALL method.
-
I know you told me you unblocked the file in our email exchange, but did you restart OI after doing so?
-
Colin - Before we start chasing shadows, have you read through this article on ADO?
-
This definitely sounds like a memory leak. We've done enough exports to SQL to be assured that SRP_COM itself does not have a memory leak, so this might be a problem with your code or the library you are communicating through. How "large" is large"?…
-
I think this is indicative of something gone awry. What version of Windows is this? Do all of those OECGI instances have WMI Performance Adapter as a sub-task?
-
Barry - The underlying problem has been reported to, acknowledged by, and fixed by Revelation Software. I think this will be included in 10.1. In the meantime, the workaround is pretty simple. In the CreateHashTable service just change this line: …
-
This thread discusses this very issue and uses EnumWindows as an example. Bob Carten provided a code sample.
-
You would update the DLL_GDI32 record or create a new one to avoid interfering with the default one. However, I'm not sure if you can make this work strictly within OI. Perhaps Kevin will chime in and set us both straight.
-
I see. Well, if you want to roll out your own then I don't think there is anything out of the box that you can use. You'll probably have to work with the EnumFontFamilies API.
-
So would the CHOOSEFONT service do what you want?
-
You didn't answer my question. What do you intend to do with this list?
-
Before I answer that, is the purpose to provide the user with a list of fonts to choose from?
-
A quick update. I had ruled out the SRP HashTable because I couldn't get the problem to duplicate when using a simple variable to manage the handle. But when I used a dynamic array, which is what Memory_Services does, the problem became evident. Upo…
-
No, FONT uses the LOGFONT structure. Height is not in pts, but in logical units. This is why the number is often negative.
-
The CharFormat structure uses twips to define the size of the font. 1 twip ~ .05 pts. Thus, your CharFormat sample has 180 twips as the size which converts to 9 pts.
-
Barry - I'm looking into this. I was able to duplicate the problem but am not sure what the cause is. It doesn't appear to be the SRP HashTable as I had originally thought. I'll report back when I know more.
-
* I checked the official RDK and it does have the SERVICE_SETUP insert. Not sure why it would be missing in your system. I suggest doing a search in SYSPROCS or SYSOBJ for SERVICE_SETUP. Perhaps it exists in an app you aren't inheriting. * I don'…