You can subscribe to this list here.
2009 |
Jan
|
Feb
|
Mar
|
Apr
(4) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
From: Daniel K. <dk...@ve...> - 2018-09-17 10:29:00
|
Hi, sorry for the delay. Can you send me a small a4gl example to reproduce your Problem? Regards Daniel > > > ---------- Forwarded message --------- > From: *Ridwan Wahab* <rd...@gm... <mailto:rd...@gm...>> > Date: Sun, 16 Sep 2018 at 07:58 > Subject: [Aubit4gl-xmlgui] Problem on running test program > To: <aub...@li... > <mailto:aub...@li...>> > > > Hi, > > I'm new to Aubit4GL and need to learn more. > > Currently I've just download A4GL 1.5.1 and installed it on my Linux > Mint Cinnamon ver 18 and test the example "hello program. > > I tested it with VDC and A4GLUI=XML,while with TUI it run OK. > Actually the hello program displayed nicely, but on console I see some > message : > > ========================================================================= > Warning: QObject: Cannot create children for a parent that is in a > different thread. > (Parent is MainFrame(0xf40600), parent's thread is QThread(0xa64df0), > current thread is ProtocolHandler(0x11d2dc8) > ========================================================================= > > The test result as follows: > - When I click on "window" it's just hang can not display the sub > window saying "Hello World", > - Click on "prompt" it's could display asking my name but after press > ENTER the program terminated. > - Only click on "exit" work success. > > Is there some thing wrong with my setup? > Appreciate for your help. > > Regards, > Ridwan > _______________________________________________ > Aubit4gl-xmlgui mailing list > Aub...@li... > <mailto:Aub...@li...> > https://lists.sourceforge.net/lists/listinfo/aubit4gl-xmlgui -- Mit freundlichen Grüßen Daniel Kroker VENTAS AG 20+ Jahre ERP-Erfahrung! Web: www.ventas.de Fon: 040 / 32 33 34 0 Fax: 040 / 32 33 34 38 Firmensitz: Neuer Wall 10, 20354 Hamburg, Deutschland Registergericht: Hamburg, HRB 80 297 Ust.IdNr.: DE118686712 Vorstandsvorsitzender: Dipl. Ing. Alain Siverly Aufsichtsratsvorsitzender: Dr. Olaf Rehme |
From: Ridwan W. <rd...@gm...> - 2018-09-16 06:59:12
|
Hi, I'm new to Aubit4GL and need to learn more. Currently I've just download A4GL 1.5.1 and installed it on my Linux Mint Cinnamon ver 18 and test the example "hello program. I tested it with VDC and A4GLUI=XML,while with TUI it run OK. Actually the hello program displayed nicely, but on console I see some message : ========================================================================= Warning: QObject: Cannot create children for a parent that is in a different thread. (Parent is MainFrame(0xf40600), parent's thread is QThread(0xa64df0), current thread is ProtocolHandler(0x11d2dc8) ========================================================================= The test result as follows: - When I click on "window" it's just hang can not display the sub window saying "Hello World", - Click on "prompt" it's could display asking my name but after press ENTER the program terminated. - Only click on "exit" work success. Is there some thing wrong with my setup? Appreciate for your help. Regards, Ridwan |
From: Rodney S. <ro...@tr...> - 2016-05-30 14:16:09
|
aperform node (node.per) Works in text mode fine, should it work on the Ventas client? Iv'e created the .xml from the .per and fshow node runs without error in text and Ventas GUI mode, but, aperform with gui enabled, gets "Form was not found." (I've made sure the node.xml was coppied to a forms folder described in DBPATH I'vee tried seraching the docs for an answer,without luck.... also I The Aubit docs on the Ventas site refer to runforms (and there is a runforms.4ae in the4 Aunit bin is the is the same as aperform, both get the erro tho,. Which is the corect method to run forms? Note the fxx ? (the formname is node -- reply above this line -- -------------------------------------------------------------------- Rodney Sheppard Software Engineer - Development Manager Trans-Mit Pty. Ltd. 7 Wendy Court Hampton Park, Vic 3976, Australia Phone... +61 3 87878744 Fax.........+61 3 87875722 Email...... ro...@tr... Web....... www.transmit.com.au -------------------------------------------------------------------- __________________________________________________ --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus |
From: wh <spa...@gm...> - 2013-11-19 08:38:24
|
Hello, I want to build a form with some fields on the top and some folder-tabs below. Here is a simple Ascii-art to illustrate what I mean: +--------------------------------------------+ | Header field 01 [ ] | | Header field 02 [ ] | | | | +----------+----------+----------+ | | |FolderTab1|FolderTab2|FolderTab3| | | | +------------------------------+| | | || | | Detail Field 01 [ ] || | | Detail Filed 02 [ ] || | | || | +-----------------------------------------+| +--------------------------------------------+ I tried the following, but the folder tabs are layouted at the top of the screen, so the "Header Fields" are hidden... <<< database formonly layout vbox vbox01 grid commondata { Header field 01 [h1 ] Header field 02 [h2 ] } end -- grid commondata folder folder1 page page1 (text="FolderTab1") grid ftab1 { Detail field 01 [d1 ] Detail field 02 [d2 ] } end -- grid ftab1 end -- page page1 page page2 (text="FolderTab2") grid ftab2 { Detail field 03 [d3 ] Detail field 04 [d4 ] } end -- grid ftab2 end -- page page2 page page3 (text="FolderTab3") grid ftab3 { Detail field 05 [d5 ] Detail field 06 [d6 ] } end -- grid ftab3 end -- page page3 end -- folder folder1 end -- vbox vbox01 attributes h1 = formonly.h1; h2 = formonly.h2; d1 = formonly.d1; d2 = formonly.d2; d3 = formonly.d3; d4 = formonly.d4; d5 = formonly.d5; d6 = formonly.d6; >>> thanks for any help! Walter |
From: wh <spa...@gm...> - 2013-11-18 09:36:06
|
Hello, I have a lot of code which does an INPUT inside an DISPLAY ARRAY. This works well with A4GL_UI=TUI, but with XML/VDC Client I got the follwing error message: contexts[context].ui.input.num_field_data=1 last_attr->sync.nvalues=2 too many values sent back consider the follwing example: f1.per <<< database formonly screen { [a |b ] [a |b ] [a |b ] [a |b ] [a |b ] [a |b ] [a |b ] [a |b ] [a |b ] [a |b ] } attributes a = a; b = b; instructions screen record s[10] (a,b); >>> t1.4gl <<< main define r record a char(30), b char(20) end record define a array[20] of record a char(30), b char(20) end record define lv_i integer define lv_scr, lv_arr integer for lv_i = 1 to 10 let a[lv_i].a = lv_i using "##&" let a[lv_i].b = lv_i using "&&&&&&&&" end for open window w with form "f1" call set_count(10) display array a to s.* on key(return) let lv_arr = arr_curr() let lv_scr = scr_line() let r = a[lv_arr] input r.b without defaults from s[lv_scr].b let a[lv_arr] = r end display close window w end main >>> see also attached file with debug.out and proxy.log |
From: Mike A. <mik...@au...> - 2009-04-16 18:27:53
|
We'll need an example ... On Thursday 16 April 2009 19:19:51 Diogo Angelo Cani wrote: > I am not obtaining to open the images you blow in it. it is DBPATH= > d:\aubit\pics and nothing. what it can be? > > > > > > > > Diogo Angelo Cani > Coordenador de Desenvolvimento > Unidade Campinas > > (19) 3343.3333 > (19) 3343.3321 > (19) 8128.3722 > Email: dio...@vi... -- Mike Aubury http://www.aubit.com/ Aubit Computing Ltd is registered in England and Wales, Number: 3112827 Registered Address : Clayton House,59 Piccadilly,Manchester,M1 2AQ |