
Paul Mulroney
Forum Replies Created
-
I’ll try this out in the morning. I suspect that your content needs to be defined as list of key/value pairs, so it will be something like
do vlContent.$define(vsKey,vsValue)
do vlContent.$add(‘Robby3’,<image data>)
-
This reply was modified 3 days, 21 hours ago by
Paul Mulroney Mulroney.
-
This reply was modified 3 days, 21 hours ago by
-
Hi Roland,
The short answer is no – the VCS can’t handle branches and merges, because of the binary nature of the system. There are moves to use git, but this requires a radical change to the way that libraries work.
What you can do is to export the library in JSON, then use a text comparison tool to compare the branches and merge. Then re-import the merged result. You might find that a little quicker.
Regards,
Paul.
-
Paul Mulroney
MemberJuly 8, 2024 at 8:31 am in reply to: IconSet Material does not display after update from 11 35659 to 11 36251We’re still in Studio 10.2 but about to move to 11.x. We started using Fontawsome for our icons. To use font awesome we used a technique that @andreas-pfeiffer showed us once:
- Get an API key from Fontawesome. There are free tier levels available.
- Update your jsctempl.htm file to include the font awesome key eg
<script src="https://kit.fontawesome.com/<yourkeyhere>.js" crossorigin="anonymous"></script>
- In your remote forms, in the button control, have the $text of the control be something like this (this is a “New” button with a file plus icon)
<i class="fa-regular fa-file-plus" style="font-size:24px; vertical-align: middle;"> New
- Set the $textishtml property of the control to ktrue
Enjoy a vast list of icons available to you.
-
Maybe refactor the code so you’re not calling code in another subform? Maybe one subform shouldn’t be calling another – can the code be put in the top level form, or in an object instead?
-
HI Gary,
I’m in Perth, WA, but I’m sure there are some Omnis devs in Victoria. They may not be on the forums, but still on the Omnis Developers list instead…
-
Paul Mulroney
MemberJuly 7, 2024 at 1:17 pm in reply to: Can you upgrade a 16-bit app written in Omnis to 64-bitYes, it’s possible to go from Omnis 7 to Omnis Studio 11, just not in one step.
We originally started with Omnis 7 and converted some of these to Omnis Studio. It all depends on how the Omnis 7 app was built. It’s partly automatic conversion, and partly manual conversion.
Check out this article on Omnis’ website: https://www.omnis.net/developers/omnis-7/
If you want to contact me privately I’m happy to talk further with you about this.
Regards,
Paul.
-
Hi Martin,
Short answer is yes!
The long and more complicated answer is that you can setup Omnis to run on a cloud service, and you setup a jsClient to handle login and application framework etc. You can then host your database and application “in the cloud”. If your Omnis app is setup for Desktop, then you’ll have a bit of work to convert it to a cloud-based solution. That’s the situation we find ourselves in now.
We’re working on a solution. We’ve developed a framework for our application that works on desktop, tablet and mobile, and we’re creating jsClient forms that have the same functionality as our desktop windows.
Happy to talk you through the process.
Regards,
Paul.
-
Paul Mulroney
MemberMay 19, 2024 at 8:40 am in reply to: Query About the Omnis Developer Conference in DusseldorfHi Andreas,
Thanks for your reply! Hope you are well!
-
Paul Mulroney
MemberMay 14, 2024 at 11:22 pm in reply to: Query About the Omnis Developer Conference in DusseldorfI’ll say “Me too!” – I couldn’t make it to the conference, bad timing. If there is any video/livestream, we’d love to tune in too!
-
Hi Martin,
Glad it worked for you!
Sorry I can’t make it to the conference, would’ve loved to be there but timing didn’t work for us.
Regards,
Paul
-
Hi Martin,
You don’t need the first part – you just need to get the contents of the file into the variable lbinary, and then do this:
Calculate vsImageEncoded as utf8tochar(bintobase64(lBinary))
Calculate vsImageEncoded as con('data:image/png;base64,',vsImageEncoded)How you populate lbinary depends on whether you can read the file from disk, or retrieve it from a URL.
To read it from disk, do something like:
Do voFileOps.$openfile('path to the file')
Do voFileOps.$readfile(lbinary)
Do voFileOps.$closefile()If you need to fetch it from a website, you need something like this:
HTTPPage ('https://www.omnis.net/wp-content/uploads/2018/11/omnis-Logo.png') Returns lbinary ## fetches header and content
Calculate lbinary as bytemid(lbinary,binsearch(chartoutf8(chr(13,10,13,10)),lbinary)+4,binlength(lbinary)) ## strip off the header and leave the contentRegards,
Paul
-
Try something like this:
Calculate vsImageEncoded as utf8tochar(bintobase64(vrResult.delSignature)) ## bintobase64 returns UTF8 ready to send, but we need char because we're building the file ourselves.
Then you can append this to the start
Calculate vsImageEncoded as con(‘data:image/jpeg;base64,’,vsImageEncoded)
Good luck!
Regards,
Paul.
-
#CLIST has the name of the current list. I’m sure there’s a notation-y way to do it, but I’m not sure how that works.
Regards,
Paul.
-
Hi $All
This project has popped up again, so I thought I’d see – does anyone have anything that can do this?
Regards,
Paul.
-
Thanks Gav, that sounds like a great idea!