Welcome to the SRP Forum! Please refer to the SRP Forum FAQ post if you have any questions regarding how the forum works.
ColinRule
About
- Username
- ColinRule
- Joined
- Visits
- 201
- Last Active
- Roles
- Member
Comments
-
Good point. Rather than an event, how about a property that is set to True once a change is made. Then I can pick this up to determine if I need to do something. Colin
-
Actually, thinking more on this I now beleive it is better NOT to allow the control to display. If you can display it, then someone could edit it, rather than having them re-sign. Not that this stops anyone from editing the saved image file, but its…
-
Thanks, no problem. What I will do is have the picture control and the signature control on the same form, and toggle visibility. The user can click a button to sign, make the signature control visible, then when done I can hide this and revert to t…
-
Setup Splitters OLE ColorFill = "Gradient(Blue L=75, Blue L=80), Border(Blue))" OLECtrlEntID=@window:".DIM_SPLITTER" Qualifier=1:@FM:"2*ICEPAC*OLE*":OLECtrlEntID Call Send_Message(OLECtrlEntID,"QUALIFY_EVENT","ALL_OLES",Qualifier) CALL Set_Pr…
-
Tried that, still does not work at 5 pixels deep. 10 pixels shows 3 little grippers on the Form Designer, but after applying backcolour, this only shows one little gripper. Therefore at 5 pixels there is still insufficient room. 5 an 10 used as tha…
-
Yes, I was using a border. I turn this off and I can now see the gripper. Cant really get the thing to be designed as I want, as I was looking to show the gripper and have a border, but also have it 5 pixels wide. Seems I cant have it all, as it jus…
-
Arghh!!! Yes, I did, and turning it off resolved it. How did I miss that? I guess seeing a border property made me think that was the thing to use, not thinking OI also has a border on the OLE control. Works fine now, thanks for the effort. I have …
-
Splitter image attached, with code on screen. I changed the gripper to 0 so you can see that the code has been run, not shown in the edit box code
-
I tried the Border properties in the code initially, and in the form designer properties only later to test the other types of border. I will make up a screen shot and post shortly.
-
Hi Guys, interesting to watch your thread. This is a good reason to use this wiki, so others can see the reasoning. I was using 2.0.0, so downloaded 2.0.1 and re-registered. I get the same. I changed the background to 3DFace, and this is now the sa…
-
I was also looking for this to trim @FMs where there were empty @VMs. I had code to do this manually, but performance was lacking, so with a bit of a think I have a solution in a procedure. Given the assumption that every row has the same number of …
-
Don My error, I renamed the SRP exe as RIPACLaunch.EXE, as I already had a RIPAC.EXE so thought I would just make up a name. It just so happened to be the same as a previous RIPACLaunch.vbs file, just a fluke really. I wrongly assumed that the SRP …
-
I have downloaded the install and copied the files to by app folder, so that I can test the concept. I set the parameters and renamed the EXE. It displays the nag screen, but does not launch the OI application. I note that it creates a VBS file, wh…
-
Don I believe it is 100% an OI thing, nothing to do with SRP at all. I would expect that if I removed all controls from the form except the splitter that it would interact with the form in exactly the same way. My initial posting was not an SRP is…
-
Don This is a regular window Screen attached
-
Don Sorry for the delay in responding, I forgot about this one, and now I see it on the new forum it jogged my memory. None of the controls are anchored. There is a SRP tree control either side of the splitter, and this is set to Autoresize heig…
-
Guys Seems I made a boo boo. I had it in my mind that the Parent was the 'original' parent of the item being dragged, not the new parent of the item where it was being dropped. Apologies to all. Rule #1 ; check your code and brain first!! I still…
-
Don I will send an EMail with screen shots. Basically getting the ParentKey from the same ItemKey on the OnDragStart is different to what it is in the OnDrop. Colin
-
I am using a mixture, AutoDrop is set to 1, which performs OK. Call Set_Property(CurrCtrl,"OLE.AutoDrop",1) Call Set_Property(CurrCtrl,"OLE.DragEnabled",1) Call Set_Property(CurrCtrl,"OLE.DropCondition","") Call Set_Property(CurrCtrl,"OLE.DropBehav…