The dreaded AI, when asked about:
"ftp error 425 passive mode address already in use"
says this:
The FTP error "425 Passive mode address already in use" indicates that the FTP server, when attempting to establish a passive mode data connection, is unable to bind to a specific IP address and port ...
Search found 116 matches
- Thu Aug 28, 2025 3:34 pm
- Forum: Questions & Answers
- Topic: Composer Processing Sequence fails always after 96 FTP GET
- Replies: 1
- Views: 47665
- Wed Jan 10, 2024 10:56 am
- Forum: Questions & Answers
- Topic: How to Add an Upload Button to a List Column
- Replies: 3
- Views: 122262
Re: How to Add an Upload Button to a List Column
The list in DF_T54H1O is a PRIM_LIST type of list.
The documentation for PRIM_LIST (https://docs.lansa.com/14/en/lansa016/prim_list.htm) gives a good example of how to add a button to a PRIM_LIST
So in the source code for your version of DF_T54H1O you would probably add a line like:
Define_Com ...
The documentation for PRIM_LIST (https://docs.lansa.com/14/en/lansa016/prim_list.htm) gives a good example of how to add a button to a PRIM_LIST
So in the source code for your version of DF_T54H1O you would probably add a line like:
Define_Com ...
- Tue Aug 22, 2023 3:39 pm
- Forum: Questions & Answers
- Topic: Error running VLF-Windows to IBM i
- Replies: 11
- Views: 133126
Re: Error running VLF-Windows to IBM i
Hi Art,
The line where the connection fails in VF_SY160 is probably just where the built_in CONNECT_SERVER is invoked. So its probably nothing VLF specific.
For general CONNECT_SERVER problems, the technical guide
http://docs.lansa.com/14/en/Lansa015/index.htm#lansa/connect_server.htm
suggests ...
The line where the connection fails in VF_SY160 is probably just where the built_in CONNECT_SERVER is invoked. So its probably nothing VLF specific.
For general CONNECT_SERVER problems, the technical guide
http://docs.lansa.com/14/en/Lansa015/index.htm#lansa/connect_server.htm
suggests ...
- Sat Jun 03, 2023 12:54 pm
- Forum: Questions & Answers
- Topic: VLFONE menu expansion
- Replies: 2
- Views: 7311
Re: VLFONE menu expansion
I don't think there is an option to modify the behaviour.
As far as I can tell, its hard coded in vf_ui051o.js. In method zInt_Show it sets all the menu items to CONTRACTED and then expands just the menu item for the current application. You should not modify internal VLF routines.
And since there ...
As far as I can tell, its hard coded in vf_ui051o.js. In method zInt_Show it sets all the menu items to CONTRACTED and then expands just the menu item for the current application. You should not modify internal VLF routines.
And since there ...
- Sun Jan 01, 2023 9:53 am
- Forum: Questions & Answers
- Topic: avRAMP_EndSession Command
- Replies: 1
- Views: 6109
Re: avRAMP_EndSession Command
As I understand it (my information may be out of date), its an Imbedded Interface Point (IIP).
The VLF controls the starting and ending of RAMP sessions, and whenever it ends a session, it also calls routine avRAMP_EndSession.
You can redefine this routine in your application's version of UF ...
The VLF controls the starting and ending of RAMP sessions, and whenever it ends a session, it also calls routine avRAMP_EndSession.
You can redefine this routine in your application's version of UF ...
- Sun Dec 11, 2022 1:55 pm
- Forum: Questions & Answers
- Topic: Using a Downloaded PNG in a Form Image Component
- Replies: 3
- Views: 6805
Re: Using a Downloaded PNG in a Form Image Component
Try:
#Bitmap.Image <= #Sys_Appln.CreateBitmap( #STD_BLOB )
Assuming #Bitmap is defined as a #Prim_IMAG
#Bitmap.Image <= #Sys_Appln.CreateBitmap( #STD_BLOB )
Assuming #Bitmap is defined as a #Prim_IMAG
- Sat Feb 26, 2022 11:03 am
- Forum: Questions & Answers
- Topic: VL_ONE Pop-Up window: Receiving back a value from a pop-up window
- Replies: 3
- Views: 11804
Re: VL_ONE Pop-Up window: Receiving back a value from a pop-up window
I think the uExecute routine has finished before the uConfirmClicked event occurs. So the value passed back is not the value from the selected list item.
Would it be possible to add a parameter to the uConfirmClicked event, and pass back the value as that parameter when signalling uConfirmClicked?
Would it be possible to add a parameter to the uConfirmClicked event, and pass back the value as that parameter when signalling uConfirmClicked?
- Sun Jun 13, 2021 10:28 am
- Forum: Questions & Answers
- Topic: Any way to force RAMP to open the commands maximized?
- Replies: 1
- Views: 6911
Re: Any way to force RAMP to open the commands maximized?
I think avPaneMaximize is in VF_AC034O
Your code works for command handlers because VF_AC034O is the direct ancestor of VF_AC010O (command handlers ancestor)
but VF_AC034O is further up for VF_CH006O (the ancestor of the ancestor)
Would Com_Owner.avPaneMaximize work for VF_CH006O?
Your code works for command handlers because VF_AC034O is the direct ancestor of VF_AC010O (command handlers ancestor)
but VF_AC034O is further up for VF_CH006O (the ancestor of the ancestor)
Would Com_Owner.avPaneMaximize work for VF_CH006O?
- Sun Jun 13, 2021 9:40 am
- Forum: Questions & Answers
- Topic: Screen Wrapper, VLF-ONE RAMP-TS, SENDKEY KeyEnter?
- Replies: 2
- Views: 7148
Re: Screen Wrapper, VLF-ONE RAMP-TS, SENDKEY KeyEnter?
Just a guess - try 'Enter'
- Fri Nov 20, 2020 1:36 pm
- Forum: Questions & Answers
- Topic: Where is Audit Info Store
- Replies: 5
- Views: 13596
Re: Where is Audit Info Store
Hi Casey,
If its lansa function source,
IBMi - the line source is in DC@F29 (command) and there are multiple DC@F30 records for each line. I think the audit info is appended to the end of the value in F30PRM on the last DC@F30 for the source line.
Windows - I think LXXF29 has all the source for a ...
If its lansa function source,
IBMi - the line source is in DC@F29 (command) and there are multiple DC@F30 records for each line. I think the audit info is appended to the end of the value in F30PRM on the last DC@F30 for the source line.
Windows - I think LXXF29 has all the source for a ...
- Fri Nov 01, 2019 4:11 pm
- Forum: Questions & Answers
- Topic: VLF-One Navigation Menu Popup
- Replies: 1
- Views: 7731
Re: VLF-One Navigation Menu Popup
I don't think it is currently possible to do that.
You could perhaps request an enhancement.
You could perhaps request an enhancement.
- Fri Nov 01, 2019 3:52 pm
- Forum: Questions & Answers
- Topic: Save and Restore Instance Lists - VLF One
- Replies: 4
- Views: 17224
Re: Save and Restore Instance Lists - VLF One
If you are using your own snap in instance list you would have to code it.
In it you have (or can redefine) a uTerminate and a uInitialize.
Mthroutine Name(uInitialize) Options(*REDEFINE)
Mthroutine Name(uTerminate) Options(*REDEFINE)
In the uTerminate you can save the grid column positions to ...
In it you have (or can redefine) a uTerminate and a uInitialize.
Mthroutine Name(uInitialize) Options(*REDEFINE)
Mthroutine Name(uTerminate) Options(*REDEFINE)
In the uTerminate you can save the grid column positions to ...
- Wed Oct 30, 2019 10:43 am
- Forum: Questions & Answers
- Topic: Save and Restore Instance Lists - VLF One
- Replies: 4
- Views: 17224
Re: Save and Restore Instance Lists - VLF One
As far as I know, VLF-ONE already does remember instance list column positions.
If for example, in a VLF-ONE shipped framework, using Chrome, I go to Examples -> foundation --> business object 102 and drag the salary column over to the left of the instance list, I can load the column with data ok ...
If for example, in a VLF-ONE shipped framework, using Chrome, I go to Examples -> foundation --> business object 102 and drag the salary column over to the left of the instance list, I can load the column with data ok ...
- Thu Oct 10, 2019 4:45 pm
- Forum: Questions & Answers
- Topic: VL Repository List Corruption (RESOLVED)
- Replies: 3
- Views: 13302
Re: VL Repository List Corruption
You could probably get a better answer from support, but
I think that repository list contents are stored in LX_DTA.LX_FIO, in MS SQL Server.
In the IDE, if you locate the list under Organizers --> Lists , and right mouse click on the list, there is an option to export to excel (make a csv file)
I think that repository list contents are stored in LX_DTA.LX_FIO, in MS SQL Server.
In the IDE, if you locate the list under Organizers --> Lists , and right mouse click on the list, there is an option to export to excel (make a csv file)
- Tue Jul 30, 2019 8:41 am
- Forum: Questions & Answers
- Topic: VLF-WIN 2nd question of the day
- Replies: 6
- Views: 12603
Re: VLF-WIN 2nd question of the day
I'm assuming the ancestor of these reusable parts is VF_AC010 (the VLF-WIN Command handler ancestor, and not some other intermediate ancestor that this site uses).
The begin_com of VF_AC010 is defined like this:
Begin_Com Role(*EXTENDS #PRIM_PANL) Help('Reference this object only as the ancestor of ...
The begin_com of VF_AC010 is defined like this:
Begin_Com Role(*EXTENDS #PRIM_PANL) Help('Reference this object only as the ancestor of ...
- Fri Jul 26, 2019 9:40 am
- Forum: Questions & Answers
- Topic: VLF Changing Business Object Title Bar (RESOLVED)
- Replies: 4
- Views: 10991
Re: VLF Changing Business Object Title Bar
I'm guessing that what you want to do is change the title above the command handlers.
(The business object instance's title)
You could do that by setting #Com_Owner.avTitleCaption in a command handler - e.g. in the uExecute routine.
If it has to be done from the filter, then you could
a) put a ...
(The business object instance's title)
You could do that by setting #Com_Owner.avTitleCaption in a command handler - e.g. in the uExecute routine.
If it has to be done from the filter, then you could
a) put a ...
- Thu Jul 25, 2019 9:25 am
- Forum: Questions & Answers
- Topic: VLF-WIN does not launch from IDE tool bar (SOLVED)
- Replies: 3
- Views: 9375
Re: VLF-WIN does not launch from IDE tool bar
Older versions of the VLF did not allow you to use Renderstyle X.
The Tools menu option to start the framework was changed to use RenderStyle X.
So you might get this problem if you have upgraded lansa but have not initialized the partition with the VLF.
The Tools menu option to start the framework was changed to use RenderStyle X.
So you might get this problem if you have upgraded lansa but have not initialized the partition with the VLF.
- Wed Jul 24, 2019 8:52 am
- Forum: Questions & Answers
- Topic: VLF Changing Business Object Title Bar (RESOLVED)
- Replies: 4
- Views: 10991
Re: VLF Changing Business Object Title Bar
If the ancestor of your component is VF_AC007O, then you must be trying to set the caption from a Filter.
Would #Com_Owner.avTitleBarCaption do what you want?
Would #Com_Owner.avTitleBarCaption do what you want?
- Mon Jul 22, 2019 11:11 am
- Forum: Tips and Techniques
- Topic: VF_BasicGoogleChart widget definition
- Replies: 6
- Views: 221286
VF_BasicGoogleChart widget definition
If you need a copy of the definition of widget VF_BasicGoogleChart, used in the VLF when generating VLF-ONE Graph or Chart command handlers, it is available here:
The compiled object is already shipped in VLF epc142057 (VF_BASICG.js)
The compiled object is already shipped in VLF epc142057 (VF_BASICG.js)
- Mon Jun 24, 2019 10:49 am
- Forum: Questions & Answers
- Topic: Trouble with persistant virtual clipboard manager
- Replies: 9
- Views: 18726
Re: Trouble with persistant virtual clipboard manager
Could you try it with a simple directory.
e.g. Create a directory called C:\Temp and point UF_EXEC at that and see if it works.
I noticed that C:\Users\Public\Public Documents\ is a bit unusual. When you look at it in explorer in the tree it looks like
C:\Users\Public\Public Documents\
but when ...
e.g. Create a directory called C:\Temp and point UF_EXEC at that and see if it works.
I noticed that C:\Users\Public\Public Documents\ is a bit unusual. When you look at it in explorer in the tree it looks like
C:\Users\Public\Public Documents\
but when ...