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

  • It should work automatically.
  • Shouldn't that be HeaderMerge[2; 2]? Also, if you just do CellMerge it should affect your headers automatically.
  • It's not quite that simple. It works like this: * Define the SRP EditTable's Dimension property based on the maximum number of columns you want to appear in a single row. Note, do not confuse this this with the total number of columns in your rec…
  • 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. Yeah...I was about to make a comment along those lines. You want to keep e…
  • If you have that service, then check your existing HTTP_MCP and you should see that this gets called automatically as one of the last couple of things it does before returning the response. You'll see that it performs a Flush/GarbageCollect for you …
  • I seem to be missing something. You start out by asking for "recommendations for implementing garbagecollect" but then end with "I don't want to be doing one every request if I don't have to". This seems like a mixed message. Before you reply back,…
  • In Postman you need to disable "Automatically follow redirects" which is in the Settings window under the General tab. This will allow you to make the request, get a 302 response, and then you'll see the Location header. I was wrong about the SendH…
  • Hmmm...that should be relatively quick, but of course mileage will vary based on different situations. Have you tried to just use the INSERT method instead? It doesn't sound like this applies to you, but this Sprezz article offers some advice if yo…
  • How are you populating the edittable control?
  • This seems as if you misplaced your license and restored an older copy. I sent you a private email with a copy of your current license.
  • Agreed. I'm still happy to help resolve this but I think the next step is to have you send me a copy of your app or schedule an online support session.
  • @AusMarkB - I can't duplicate your problem. For comparison purposes, can you change "MD24" to "D" and see if it allows a valid date to be entered? What version of SRPControls.ocx are you using?
  • Can you post your code that sets the CellConv property?
  • I'm not sure if you are looking for further help to get the OnInvalidData event to work as expected. If so, please let me know and I'll try to sort this out with you. If not, then I still suggest you use the BeforeUpdate event as your next best opt…
  • In order for BeforeUpdate or PosChanging to work properly you must qualify your events synchronously. If you are doing that, then is there a reason you aren't using the OnInvalidData event handler instead? If for some reason OnInvalidData can't work…
  • Officially we don't support anything older than OI 9 since Revelation no longer supports anything older than OI 9. Also, OI continues to introduce subtle changes that create conflicts with the way our OLE controls are programmed, so we have to make …
  • Before looking into this, I want to make sure you understand the way this property works. Focus is not the same as Selected. Look again at the documentation and the sample screenshot to get a clear understanding. Also, you must have the ShowFocusIte…
  • Try detaching and attaching these tables and then re-save the Database Definition. If that doesn't work, check for User-Defined Conversions for the Key IDs.
    in FS10 Comment by DonBakke April 2019
  • Do you have any MFS routines installed?
    in FS10 Comment by DonBakke April 2019
  • Excellent answer @DanielStieber! Thanks for stepping in. Just a minor correction. To run the current unit test you are in, it's Ctrl+F9 rather than simply F9.
  • @BarryStevens sorry...those of us who can best answer your questions are onsite at a client location for the week so we've been busy. Coincidentally, we spent part of one of our days giving a presentation on this very feature. Stay tuned and we'll …
  • @josh I really appreciate the update on this. I'm glad you got this resolved.
  • Not only did your buttons disappear, your tabs disappeared as well although the border for the tabs is still present. Curious. Unfortunately, this isn't much to go on. I'm very inclined to suggest this is a problem in your code.
  • I love it when problems fix themselves...other than leaving behind an somewhat unresolved mystery. By "new server", did you mean a new server that is running OI or a new web server? If the former, what was the OS of the old and new server?
  • At least this gives us a meaningful reason for the lack of a response. If the COM object encounters an error, then the HTTP request/response is not going to work as expected. I did a quick search and I'm certain the problem is similar to what this M…
  • Hi @albertkurniawan. Just curious, how did you expect the WhatsApp MySQL database to inform you of activity? Does it support a database trigger that will notify you in some way? I'm still confused on how you expect to chat with this environment. Th…
  • @albertkurniawan the SRP DirectConnect control can be used for an instant messaging (or chatting) application. However, the normal design is to use the SRP Sync Server as a go-between the various SRP DirectConnect controls. You use the Broadcast met…
  • @josh I'm not disputing the usefulness of this kind of documentation, but it isn't something we would normally include with our control documentation for a couple for reasons. First, it's a specific implementation (or use case, as you worded it) of …
  • Despite the lack of a response, this is actually progress. It suggests to me that the server processed the request and responded, albeit it seemed to return nothing. Just out of curiosity, did you confirm that the response status was set to somethin…
  • It actually means what it says. What you are describing sounds quite similar to what we've been hearing about from others in the Revelation forum by those trying to use OLE_GetWebPage. After consulting on a couple of these situations I've discovered…