Search found 36 matches
- Tue Oct 22, 2024 4:50 am
- Forum: Questions & Answers
- Topic: Pass working list to a procedure
- Replies: 0
- Views: 171692
Pass working list to a procedure
Is it possible to pass a working list to a service program procedure like it can be to a rpg program?
- Tue Mar 05, 2024 9:30 am
- Forum: Questions & Answers
- Topic: VLF-WIN Application Communication Errors
- Replies: 3
- Views: 21183
VLF-WIN Application Communication Errors
We have a VLF_WIN application using RAMP and aXes that is running over at a customer and they are having issues that appear to be communications related. They are reporting issues like having to click the log in button multiple times before the application will actually log in. Sometimes upwards of ...
- Tue May 16, 2023 12:58 am
- Forum: Questions & Answers
- Topic: VLF Application URL case sensitive
- Replies: 2
- Views: 41252
Re: VLF Application URL case sensitive
I've been looking at that but the httpd.conf file is not something that we typically manipulate and not something that we would have done lately.
- Sat May 13, 2023 5:53 am
- Forum: Questions & Answers
- Topic: VLF Application URL case sensitive
- Replies: 2
- Views: 41252
VLF Application URL case sensitive
Our VLF application url no longer works like it used to in test. It now seems to be case sensitive. What used to work is something like this
http://xx.xx.xx.xxx:xxxx/T22PGMLIB/T22/SD1_LAUNC.html?
But now we get a url not found error. If I change the T22PGMLIB part to be lower case that seems to ...
http://xx.xx.xx.xxx:xxxx/T22PGMLIB/T22/SD1_LAUNC.html?
But now we get a url not found error. If I change the T22PGMLIB part to be lower case that seems to ...
- Tue Apr 25, 2023 2:48 am
- Forum: Questions & Answers
- Topic: Exiting VLF-One Application
- Replies: 1
- Views: 28675
Exiting VLF-One Application
I am having an issue with exiting our application that I'm hoping someone will have a solution for. We have a log out button on the tool bar. The RP associated with it does nothing more than an avswitch to *EXIT. We also have axes screens that have framework locking associated with them that will ...
- Sat May 21, 2022 2:18 am
- Forum: Questions & Answers
- Topic: Settings Pane
- Replies: 2
- Views: 29729
Settings Pane
I have a settings pane in my VLF-One application that is listening for events using the #COM_OWNER.avEvent but it seems like none of the events are reaching it until the settings pane is opened using the gear icon. After it has been opened for the first time everything seems to work fine. Is there ...
- Tue Jan 04, 2022 4:33 am
- Forum: Questions & Answers
- Topic: VL WEB - Setting border for a list cell
- Replies: 0
- Views: 83446
VL WEB - Setting border for a list cell
I was wondering if someone could spot what I'm going wrong. I'm trying to set the top and bottom borders for a row in my list but nothing I do seems to work. It seems that all the other parts of the style are applied like the background and bold text but not the border attributes.
One thing I will ...
One thing I will ...
- Tue Jul 20, 2021 6:29 am
- Forum: Questions & Answers
- Topic: VLF-One/VLF-Web Invalid Session
- Replies: 1
- Views: 27731
VLF-One/VLF-Web Invalid Session
I was wondering if someone can tell me what causes an invalid session. It seems like everything will be working just fine and all of a sudden I start getting this error and then everything dies and I don't know how to avoid it or what is causing it. Hoping someone can give me some ideas on where to ...
- Sun Oct 11, 2020 2:42 pm
- Forum: Questions & Answers
- Topic: VLF-One Redisplay Business Object
- Replies: 3
- Views: 101582
Re: VLF-One Redisplay Business Object
Yes. That's sounds like what I am looking for. I'm using code you provided that allows us to list all the open Bo's in a rp. I am just looking to be able to toggle to the open bo selected in the list. Nothing more than making the pane that the bo is in visible.
- Fri Oct 09, 2020 4:57 am
- Forum: Questions & Answers
- Topic: VLF-One Redisplay Business Object
- Replies: 3
- Views: 101582
VLF-One Redisplay Business Object
I have a business object that has a single command that is attached to ramp. This business object is not in the navigation pane. If I do an avSwitch to that business object, the ramp screen shows up in it's panel and everything works fine. If I then select another business object from the navigation ...
- Mon Sep 21, 2020 3:51 pm
- Forum: Questions & Answers
- Topic: VLF_ONE Question
- Replies: 0
- Views: 77365
VLF_ONE Question
I was wondering if there were any other ways to get information from a RP to RAMP other than using the clipboard or signaling an event? I ask because I have a RP sitting in a slider which is nothing more than a list. when I click an item, I am doing an AVSWITCH to a business abject that has a single ...
- Wed Jun 10, 2020 2:16 pm
- Forum: Questions & Answers
- Topic: VLF-One Interface
- Replies: 3
- Views: 48532
Re: VLF-One Interface
Hey Mark, I'm talking about an interface that a class might implement. Something similar to iListCellDesign.
In Java it would be something like
public Interface IEmployee
{
public String getName();
}
public class Manager implements IEmployee
{
private String name;
public String getName ...
In Java it would be something like
public Interface IEmployee
{
public String getName();
}
public class Manager implements IEmployee
{
private String name;
public String getName ...
- Tue Jun 09, 2020 8:34 am
- Forum: Questions & Answers
- Topic: VLF-One Interface
- Replies: 3
- Views: 48532
VLF-One Interface
I was wondering if someone could post some sample code on how to create/write an interface. I can't seem to find an example.
- Thu May 14, 2020 6:18 am
- Forum: Questions & Answers
- Topic: VLF-One Reusable Code
- Replies: 1
- Views: 28433
VLF-One Reusable Code
I was wondering if there is currently a good place to put methods, event, etc that is accessible by all of the components in a vlf-one app. Things like utility methods, events, whatever that could be used by multiple components. Or is the best thing to do is create a new class and give it ...
- Sat May 09, 2020 3:07 am
- Forum: Questions & Answers
- Topic: VLF-One Visual Notification on Main Panel
- Replies: 25
- Views: 6969960
Re: VLF-One Visual Notification on Main Panel
Hey Mark, Thanks for the reply. I think I tried doing something like you did in your code sample. I was able to change the background color but it doesn't seem to effect the slider tab when the slider is closed but I'll try again. Just to give a visual, here is what I'm trying to accomplish ...
- Thu May 07, 2020 1:58 am
- Forum: Questions & Answers
- Topic: VLF-One Visual Notification on Main Panel
- Replies: 25
- Views: 6969960
Re: VLF-One Visual Notification on Main Panel
Hey Mark, yes our slider is a RP with ancestor VF_AC028O. And yes, it would be nice to have an example.
Thanks.
Thanks.
- Wed May 06, 2020 6:32 am
- Forum: Questions & Answers
- Topic: VLF-One Visual Notification on Main Panel
- Replies: 25
- Views: 6969960
VLF-One Visual Notification on Main Panel
I was wondering if it is possible to change the properties (mainly background color) of the tab for a slider panel? We have a notification rp in a slider that checks for new messages/events directed at a user and want a way to visually notify them with out interrupting them. Right now we show a ...
- Fri Apr 24, 2020 6:39 am
- Forum: Questions & Answers
- Topic: VLFOne - Active Menu Options
- Replies: 6
- Views: 51555
Re: VLFOne - Active Menu Options
I've tried using your sample code and it seems to work well. I did have a couple of questions. First, it looks like if I select a business object from the menu and then select a option from the instance list which starts a ramp session, two objects show up in the collection after I run you code. I'm ...
- Thu Mar 12, 2020 10:42 am
- Forum: Questions & Answers
- Topic: VLF-One Framework Locking
- Replies: 0
- Views: 64662
VLF-One Framework Locking
I'm trying to mimic framework locking in my VLF-One app like it works in VLF-WIN. We have several screens that we want to pose an "are you sure"
question before navigating away to another screen and for the most part I've got it working using the avRAMP_QueryCanClose and avRAMP_QueryCanExecute ...
question before navigating away to another screen and for the most part I've got it working using the avRAMP_QueryCanClose and avRAMP_QueryCanExecute ...
- Mon Mar 09, 2020 3:08 pm
- Forum: Questions & Answers
- Topic: VLF-One: RAMP Session Started
- Replies: 3
- Views: 47759
Re: VLF-One: RAMP Session Started
Hey Tim, Thanks for the response. I ended up doing something pretty much like you suggested for option 1. I used the clipboard to set a flag with the business object name as part of the key. Then when the filter/instance pane is closed, I delete the clipboard entry. I'm somewhat would have thought ...