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,219
- Last Active
- Roles
- Administrator
Comments
-
I'm not an attorney and I definitely don't know international or local law for Australia, but in the US I've always understood that you can disable software but you can't prohibit access to data.
-
I see. So it scrolls when it shouldn't scroll at all and then behaves in ways that is unexpected.
-
I assume you are using the DataRow property to hide the row? Where exactly are you clicking when you notice the table scrolling oddly. You said "the area below" but I am not sure what that means. Are you referring to scrollbar?
-
I think you are better off letting OI tell you its version as you are in your second example.
-
Hey Mark. Bernie and I are in talks about this so stay tuned!
-
It should work for you in the Form Designer. I just tried it myself:
-
So are you asking if your UI design would have an impact on the database design?
-
@josh something of note in that article Barry linked you to is an indirect argument for NOT using MultiValue fields to track the comments. By doing this, it allows each record in the table to have very different sizes. This can lead to a "skew[ing …
-
Actually, you can use the same table as the source and target for a relational index. We do this specifically when we want to create hierarchical structures. I think your notes/discussion database is well suited to this design structure. However, in…
-
Btree indexes (and its close cousin the Cross-Ref index) just creates a reverse lookup of data. You still need to do an index search to find a match. The the associated source Key IDs are then returned. A relational index maintains a relationship b…
-
I have been told that having large records is bad (i.e., records with lots of data in them). Is this true? Questions like these are usually hard to generalize. "Large" can mean different things to different people. My first consideration what is …
-
@josh no...or I should say I don't have enough information to make an informed opinion. You simply piqued my curiosity. You might consider using the SRP EditTable control to view your pictures and add labels. This could make it a bit easier to layo…
-
I have to ask, what is the purpose of an OI form looking like the web form? How close do you need it to look and how are you intending to achieve this?
-
@BarryStevens thanks. I didn't realize the Rev forums were back online. I never saw an email announcing this.
-
@jimvaughan you mentioned that you posted a question on the Revelation forum. What forum are you referring to specifically?
-
@BarryStevens josh basically suggested an idea that I was going for. This is why I wanted to know if you had access to the SRP HTTP Framework. You don't need it per se, but it makes everything easier. We do what you are wanting to do. In addition t…
-
Are you using the HTTP Framework (or do you at least have it installed) for this system?
-
You meant "Thanks, Kevin". :)
-
Sweet.
-
If your code snippet is exactly what you have in your system then the problem is that you forgot to separate your COLUMN and ROW variables out of the quotes. This is what it should look like: VALUE=GET_PROPERTY(CTRLENTID,"OLE.CELLCHECK[":COLUMN:";"…
-
Can you post the code you are trying to use?
-
You might be able to resolve this if you run the SRP Form Fixer.
-
Then I'm not quite sure why the controls would change position. I assume you have the proper anchor and resize boxes ticked as well. If you suspect the age of the form is at fault then the simplest way to disprove this is to create a new form and a…
-
Are any of your OLE controls set with the Border checkbox ticked?
-
At first blush it looks like you aren't accounting for the position of the form within the desktop itself. The ShowAt method uses the absolute X, Y position of the desktop rather than the relative position of any control or form. You have the lates…
-
Will - I have to confess I'm stumped on this issue. With your permission I'd like to look at this myself. Just let me know which folder on your server I should be looking at.
-
Just so I'm on the same page as you, we still have one issue left. That is, the 2nd window displays but it still doesn't render correctly. Is this correct? Assuming it is correct, did you debug the commuter module at the place where the OLE control…
-
If I'm reading this correctly you have been able to separate two different issues that previously seemed to be one and the same. Regarding the display issue for the second window, it seems as if the code that sets up the OLE controls isn't getting …
-
Now that you mention it, We do not have this in that merged version (as it is longer be needed) and we do not get the error, just no 2nd window. I think that something is happening with the 2nd instance of a window that is forcing Form_Services t…
-
Actually, that is more helpful than you might think! That implies that OI is attempting to call a program with no name. In your merged version of the Form_Services do you still have code that handles cases where the GoToService line fails? Do you ha…