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,156
- Last Active
- Roles
- Administrator
Comments
-
Barry, If I am reading your URL correctly, you have spaces in there, correct? Spaces are not allowed in the URL. You need to URL encode them. So put %20 wherever you have a space.
-
Barry, Good question. I should explain the purpose of Error_Services within the HTTP Framework and then answer your question. Error_Services is mainly used to set internal errors. We use this service just about everywhere within all of our SRP Fra…
-
LOL. Well, perhaps you didn't know the details, but I suspect you know the basics. After all, you are definitely well aware of the old 64K limit of AREV and OI 16-bit. It's just requires a little bit of extrapolation to realize that 32-bit systems (…
-
Ray, It's fairly well known that OI does have floating point number limits (16-digits) due to the 32-bit architecture. That's why we created SRP_Math. I was speculating that the random number you got was too long for OI's native statements and I th…
-
Ray, I can only assume that OI is having trouble with long floating point decimals or perhaps the number is being converted to scientific notation and this is causing issues. My suggestion is to try using the SRP_Math INT service or set the Decimal…
-
Martin, That tells me you have two different builds in your environment. I recommend downloading the SRP Editor from the product site and re-install in all environments. Then double-check to make sure you don't see any RC# (release candidate) build…
-
Martin, Just to confirm that you did not a bad install, can you please click on Help > About in both development environments and post the screen shots to this thread?
-
I used the following code to test an image: PicturePath = 'C:\AboutBanner.png' If Len(PicturePath) then OSRead PictureBinary from PicturePath then EncodedWithCRLF = SRP_Encode(PictureBinary, 'BASE64') Len1 = Len…
-
Barry, You are saying that the SRP_COM is generating an error?
-
Paul is correct. That argument is the Method.
-
Barry, There may very well be additional issues that we need to try and work on, but the first thing I noticed is your URL variable contains an entire HREF tag rather than just a URL. Am I missing something? If not, then I would not expect this to …
-
Charlie, Obvious your event handlers should work, but I'm curious if you considered moving your event handler logic out of event scripts and into a commuter module. I think you'll have much better success and you'll be more productive.
-
Charlie, So was the code running at all or was it running older code? I presumed you had tried to debug this at some point. Did the debugger come up?
-
Hi Charlie, This should work, so this leads me to a few more questions: * Are you sure you have the hidden column created? * Does the column exist (appear) if you do not set Visible attribute of the DataColumn property to 0? * What is the fo…
-
Charlie, How are you making the column invisible? How are you populating the text of the cells?
-
Why isn't there a link on www.srpsc.com to your products site and the wiki site? Because that site is not meant for the Revelation community. We separated our corporate website from our Revelation community site(s) a long time ago. For all intent …
-
Barry, Can you email me your stored procedure? Maybe your code is formatted in a way that is creating a parsing problem for the SRP Editor.
-
Barry, Please document how you are using the feature. Are you using the combobox in the SRP Editor toolbar? Are you using F12? Does it fail to work in all cases or does it seem to be unique to a specific label? FWIW, it is working fine for me on al…
-
For those monitoring this thread, thanks to Barry's discovery and his %FIELDS% record (which was rather full of all kinds of column goodness), I was able to confirm the issue he brought up. I have updated the GetColumnNames service and it will be re…
-
Barry, How long ago did you download the installer? This issue was already addressed in the comments of the blog article and we resolved it with a new installer several hours ago. Please download again and retest.
-
Barry, Upon reviewing the code again, the original placement of FieldPos -= 1 is by design to properly satisfy the Fields< FIELDS_FIELD_NO$, FieldPos > GT 0 condition. So, perhaps your dictionary poses a unique challenge to the design. If you…
-
Barry, I think some of my confusion lies in the smaller snippets of code you are putting in your post. Are those exact copies or did you simply type it out? I simply don't see any code that looks exactly like that. The larger snippet of code, of c…
-
Barry, I really am not at all clear on what you are asking, assuming you still have a question any more. If you still have an unanswered question please post again as simply as possible.
-
Barry, I'm not sure I detected an actual question in there, but it seems as if you are curious as to why the GetColumnNames service checks for a Master flag. Well, your situation is exactly why. I actually document the reason in the service comment…
-
Barry, Hopefully you understand that retrofitting your entire HTTP service is not something we would consider "support". We provided you full source code so you could do this yourself. Support is helping you with unexpected behavior or, perhaps, he…
-
Barry, No, not officially released yet, but it will be soon. Just go to the Tools > Options menu. Click on the Style tab. You'll see a combobox labelled Theme. Have fun!
-
Mark, To answer your question, "yes, it could work but it is not strictly standard". May I ask why the second scenario is required? Why could you not submit multiple requests? Keep in mind this will also benefit you in three ways: 1. Less overhead…
-
Hi Mark, First I'll answer your technical question. Yes, you can can encode an image as Base64 and place it within a JSON string. Base64 is designed to be safe, so it's safe to embed in just about anything. JSON will just view it as string data. H…