
Andreas Pfeiffer
Forum Replies Created
-
Andreas Pfeiffer
AdministratorNovember 7, 2023 at 2:56 pm in reply to: How to Retrieve Domain Name of current Windows user in Omnis Studio?Hi Roland,
getenv() receives any Windows environment variable.
For instance you could use getenv(‘hostname’) to get the hostname of the system. Here is the documentation: https://www.omnis.net/developers/resources/onlinedocs/FunctionRef/Functions_A-Z/getenv.html#getenv
Does that help?
Best,
Andreas
-
Andreas Pfeiffer
AdministratorNovember 7, 2023 at 8:47 am in reply to: How to Retrieve Domain Name of current Windows user in Omnis Studio?Hello Roland,
You can get this by using the getenv() function:
Do getenv(‘USERDOMAIN’) Returns myDomain
Best regards,
Andreas
-
Andreas Pfeiffer
AdministratorNovember 6, 2023 at 8:18 am in reply to: ERROR: failed to bind Omnis Server SocketHello Uwe,
you can change this in remote_debug_server_config.json, located in the folder clientserver/server/remotedebug in the data folder of the Omnis installed tree.
Best,
Andreas
-
Andreas Pfeiffer
AdministratorNovember 3, 2023 at 10:52 am in reply to: ERROR: failed to bind Omnis Server SocketHi Uwe,
looks like the socket for the node interface is already in use. It should not matter if you are not using the javascript worker object.
Best,
Andreas
-
Andreas Pfeiffer
AdministratorOctober 17, 2023 at 7:16 am in reply to: Date Picker Control displaying wrong datesYes – good idea 🙂
Best,
Andreas
-
Andreas Pfeiffer
AdministratorOctober 17, 2023 at 7:01 am in reply to: Date Picker Control displaying wrong datesHello Minh,
I did a quick test in Omnis Studio 11 (35659) and it appears to be fixed.
Best,
Andreas
-
Hi Martin,
I get what you mean.
This is hard to determine as when the subtotal header is printed it cannot know how much space the records will need for this subtotal.
Therefore the only solution that I can see here is to estimate the number of space that is needed from the amount of records you are going to print in that section and then set the $pagespacing of the subtotal header to the appropriate space. This requires to have the $pagemode setting on kTestspace. So for example if you know that it will require 11 cms you can then set it to 11 etc.
I hope this helps.
Best,
Andreas
-
Martin,
There is a property on the section $pagemode. Try to set it to kFitonpage
Does that help?
Best,
Andreas
-
Andreas Pfeiffer
AdministratorOctober 5, 2023 at 7:52 am in reply to: Reference an object in a superclassHi Martin,
There is no difference in the instance if the code is in the inherited form or in its superclass. The instance is the same.
Maybe I understand this wrongly. What exactly do you get back when you debug the code and look at the item reference variable?
Best,
Andreas
-
Awesome! Glad to help.
Best,
Andreas
-
Andreas Pfeiffer
AdministratorOctober 2, 2023 at 11:04 am in reply to: How do I set current field ?Hello Khanh,
You cannot use the Queue commands as those would simply try to do this on the server. But the users cursor is on the client. Instead try this command:
Do $cinst.$setcurfield(fieldRef)
You can pass in the name of the field, the reference or the id. You can also pass in a 2nd parameter if you want to make the content selected.
Hope this helps.
Best,
Andreas
-
If you want to use Omnis Studio 11 please do not replace the HTM file as described in the readme.txt file.
Best,
Andreas
-
Andreas Pfeiffer
AdministratorOctober 8, 2023 at 6:42 pm in reply to: Reference an object in a superclassThank you Martin,
Have fun.
Best,
Andreas
-
Andreas Pfeiffer
AdministratorOctober 6, 2023 at 1:32 pm in reply to: Reference an object in a superclassReading properties might only be possible in client methods. You may be able to read $name or $id from a server side method but some code might have changed a color on the client, so how would the server read such a property.
Therefore this can only be done from a client executed method.
Best,
Andreas
-
Andreas Pfeiffer
AdministratorOctober 6, 2023 at 12:04 pm in reply to: Reference an object in a superclassHi Martin,
I do not see anything wrong in the reference. It points to the grid component in the instance.
However $designcols is a property that is not accessible in the instance. That is why it is called $designcols.
Best,
Andreas
-
This reply was modified 1 year, 10 months ago by
Andreas Pfeiffer.
-
This reply was modified 1 year, 10 months ago by
Andreas Pfeiffer.
-
This reply was modified 1 year, 10 months ago by