Questions tagged [genero]

Genero is a unique rapid application development and deployment environment tailored for mission critical business applications.

Genero is a unique rapid application development and deployment environment tailored for mission-critical business applications. With Genero you will develop applications faster and smarter, enabling you to better respond to ever-changing market needs.

Faster, because you'll develop applications in a fraction of the time you are used to.

Smarter, because once written, they run everywhere – without recompilation – for the desktop, webtop, smartphone, tablet or the Cloud.

Develop robust, scalable, secure applications that integrate seamlessly into Service Oriented Architectures and can be deployed as Software as a Service.

Develop once and deploy everywhere. Create the time to innovate and invest in your future.

Home: http://www.4js.com/products/genero

19 questions
1
vote
0 answers

Unable to connect to Informix database server setup on a Virtual Box Linux environment from Genero Studio on my mac

I am very new to Informix and Gernero and I am trying to connect to my an Informix database server that I set up on my Virtual Box Linux environment. I am using Genero Studio to on my macos system to try and connect but can never seem to make a…
Jstagg
  • 11
  • 2
1
vote
1 answer

Convert Informix 4gl to Genero to create and write to .4gl - error of Permission denied to write to .4gl

I have a code in Informix 4gl that creates and writes to .4gl file. In short, it's code that generates a new program. It works perfectly in Informix:** let p_output = p_prog clipped,".4gl" start report rpt1 to p_output output to report…
1
vote
4 answers

How can i avoid the virtual keyboard overlapping input fields in webview?

I have a Genero web-app that displays a webview of an Angular app. MY issue I'm having is that the view (Chrome v72 based) will not scroll under an input when it gets the focus to allow the user to see what he's typing. Loading the page in a browser…
Magnesium
  • 597
  • 6
  • 22
1
vote
0 answers

How to execute or run FGLTTY command line in Java without GUI?

Is there a way to run the command line below within a Java application without opening FGLTTY GUI? public static void main(String[] args) throws Exception { ProcessBuilder builder = new ProcessBuilder( "cmd.exe", "/c", "cd…
1
vote
0 answers

Placement of 'Window' menu group in Genero Studio 2.50.15

The manual says that windowMenu Defines if the WCI container should display an automatic 'Window' menu, with Cascade and Tile features, and list of child windows. Values can be 'yes', 'no' (default). Setting
Richard Holyoak
  • 569
  • 5
  • 18
0
votes
2 answers

Find differences between list and column

im writing a program which finds the differences between a list of names(the values are in a temp table) and a databank column. I was thinking about using the IF clauses. Like IF tmp_names.name = names.name THEN Display „Nothing“ ELSE Insert into…
tacosoos
  • 11
  • 1
0
votes
1 answer

Genero 4GL "Unable to open resource for writing" Error When Saving XML

I am using the standard XML library that comes with Genero 4GL. I am trying to save the XML document to a specific directory based on a variable in a properties file. I can see that it is getting the correct path, AND I can verify that the…
snowfi6916
  • 697
  • 4
  • 9
  • 21
0
votes
0 answers

Warning: Unfamiliar unsecured document opened

I am editing a Word document in Genero Enterprise. Before opening the document I receive the following warning: This translates to: Unfamiliar unsecured document opened. This suggests that the user who created the document is not the same as the…
0
votes
1 answer

Is there a way of using the "Segoe MDL2 Assets" Icons as Image-sources in Genero 2.5?

As far as I know, you can use only actual images/URLs to images as sources for the image-attribute. Is there a way to circumvent this restriction and use the icons of a font like the one stated above? Currently using Genero 2.5.
A-Tech
  • 806
  • 6
  • 22
0
votes
1 answer

Is there a way to set the input option "wrap" as the default behavior for an entier project?

When tabbing through an input the default behavior is to exit the input after the last field, instead of going back to the first field. By using OPTIONS INPUT WRAP in the before input block, this can be avoided. However, this has to be done for each…
A-Tech
  • 806
  • 6
  • 22
0
votes
1 answer

Is there a way in Genero 4gl to create a drag and drop to insert files?

In know the method ui.Interface.frontCall to open the Windows-Explorer dialog and select files there, but I found nothing so far about an equivalent drag & drop method.
A-Tech
  • 806
  • 6
  • 22
0
votes
1 answer

Trying to write to VIM from Genero using 4gl

I would like to open a .4gl file in VI terminal and write to it, this is the code I have currently: let p_command = "test -f ", MTGENDIR CLIPPED,"/",p_prog clipped,".4gl" run p_command returning p_status let p_command = "vi ",p_prog…
0
votes
3 answers

Issue calculating month end date in 4GL

This routine is returning 12/31/2016 instead of 12/31/2015 and messing up a report. Any idea where it is going wrong? LET date_month = MONTH(p_selection.date_from) IF date_month = 12 THEN LET date_month = 1 LET p_selection.date_from =…
0
votes
1 answer

Dynamically enable options in Genero Mobile RADIOGROUP

I'm working in Genero Mobile on an app for iOS and Android. On one screen is a form with a RADIOGROUP. That RADIOGROUP can have only 3 options that are turned on and off by a web service. I'm already collecting the state of those radio options, but…
DeerSteak
  • 121
  • 2
  • 6
0
votes
2 answers

have 2 C files which I need to link with the compiler

So I finally cleared all the errors and warnings on the C files, and proceeded to link them. I have 2 C files which I need to link with the compiler. et5ibwqm0.c intfac_fl.c The compile command I was provided: gcc -shared -o et5stcklib.so…
1
2