Search results

  1. markluizdemauro27

    Error Radio-Set vertical attribute is not working

    Output: I'm using QAD Enterprise Applications version 3.0.0.127. It's working on progress editor/terminal, but it doesn't work in GUI.
  2. markluizdemauro27

    Error Radio-Set vertical attribute is not working

    I don't know why vertical attribute is not working and still displaying horizontal. Any ideas why?
  3. markluizdemauro27

    Error Radio-Set vertical attribute is not working

    I don't know why vertical attribute is not working and still displaying horizontal. Any ideas why?
  4. markluizdemauro27

    Error Search/Filter using calculated fields in browse maintenance is not properly working.

    I have created a calculated field (date) and supply its value with a function. Now, when I want to search using date range, it's not working and it only showed the last data within the date range. I've observed that search/filter using calculated fields is not properly working. Why and do you...
  5. markluizdemauro27

    AP Invoices in EE and Receiver Matching

    That's why QAD developers makes the whole system customizable.
  6. markluizdemauro27

    Answered What is the proper usage of gpbrparm.i?

    I already solved my problem. I just need to add c-brparm1 into the filter section of the browse using browse maintenance. Thank you.
  7. markluizdemauro27

    Answered What is the proper usage of gpbrparm.i?

    I followed the steps and codes provided by QAD Development Standards. STD-0298. See this link. Question - How To Pass Params To A Qad's Explore View?. You also drop a comment in that thread. Is there something i'm missing? Here's the script: DISPLAY v_invoice LABEL "Invoice"...
  8. markluizdemauro27

    Answered What is the proper usage of gpbrparm.i?

    I've followed the steps on how to use that include file/library but still doesn't pass parameter to the lookup. Is there something i'm missing?
  9. markluizdemauro27

    Question How To Pass Params To A Qad's Explore View?

    Hi Edgar Chinchilla. Did you find out already why gpbrparm.i is not working? Thanks.
  10. markluizdemauro27

    Question How to add new propath in qad?

    Thanks for the help.
  11. markluizdemauro27

    Question Procedure or Class?

    I'm asking this question because I can make simple reusable codes on both procedure and class (of course same logic but different coding design) . Thanks for your insight guys. Now I know that class is still better than procedure in terms of creating dynamic and maintainable codes.
  12. markluizdemauro27

    Question Procedure or Class?

    In terms of making reusable codes and functions that can be use for your future projects, which is better and why?
  13. markluizdemauro27

    Answered How to method chain in class?

    Well what I did is to return the object of the class's instance so that I can use it again for calling another method by a 'single blow'. You were pointing out before that I can do this instead: classCar:setName("Mark"). carName = classCar:getName(). but because the return type of the method...
  14. markluizdemauro27

    Answered How to method chain in class?

    First question, do you know what method chaining is? or do you have better ways to do that?
  15. markluizdemauro27

    Answered How to method chain in class?

    I just have to return the instance of the class in setName method so that I can also call the getName method. method public Car setName(name as character). mName = name. return THIS-OBJECT. end method.
  16. markluizdemauro27

    Answered How to method chain in class?

    For example: Define variable classCar as class Car. define variable carName as character. carName = classCar:setName("mark"):getName().
  17. markluizdemauro27

    Question How can I use .cls file from different folder into my procedure?

    I created a .cls file from different folder, now my problem is how to use or include it into my procedure? TIA.
  18. markluizdemauro27

    Question Event Listener

    Can anyone help me or give me a sample syntax how to use the events of progress? TIA
  19. markluizdemauro27

    Question How to Export csv to my desktop (Progress)

    I'm executing my codes using remote progress installed in the Appserver and our server is using linux OS and my PC is using windows. The problem is because it's remote, the exporting process was happening in server side? Can you throw some ideas on me? Thanks
Top