Search results

  1. ForEachInvoiceDelete

    Error Error In Soap Request Execution: Sessionpool : Noavailablesessions

    Phil, Are the agents not releasing after the request is returned, or do you simply not have enough agents to service the request volume? Post the code where you make the appserver connection. - Jason For future reference, include the Progress Version and what OS you are using in posts.
  2. ForEachInvoiceDelete

    Refresh Issue.

    You might be able to fix it by upgrading your OS to a supported version, and upgrading your Progress to supported version.
  3. ForEachInvoiceDelete

    Piew - Free Progress Code Editor

    Went to download latest version and keep getting unexpected end of archive. Winrar and 7 zip
  4. ForEachInvoiceDelete

    Question Fast Reading

    Post a code snippet. My Answer :- I know huge bits of legacy/other developers code can be pretty daunting. Just take the time to break it into chunks. eTime the queries, check the index's, make sure records are being read and used efficiently. What people do :- Buy faster hardware to mask...
  5. ForEachInvoiceDelete

    Pug Challenge 2017 Is Live!

    Was a nice little pub almost opposite EMEA that had some good bottled craft beers. Think i tried 4 or 5 before settling on something. Cant remember what it was for the life of me though!
  6. ForEachInvoiceDelete

    Pug Challenge 2017 Is Live!

    This is going straight to my boss :)
  7. ForEachInvoiceDelete

    Question PDFInclude 3.3.3 -> Error 560

    I might have the wrong end of the stick but i am assuming he was using pdf include in a native progress, client side application. (With his mention of workstations etc) Having experience of using com-handles this way i never noticed any performance issues with creating documents and interfacing...
  8. ForEachInvoiceDelete

    The Wall Of Shame

    Funny fact for server 2012. Create a proenv shortcut. Set the start-in parameter in properties to any directory. Double click the shortcut, proenv will be in the directory but no admin privilidge to do anything. right click run as admin. Proenv now has admin privilidges, but starts in...
  9. ForEachInvoiceDelete

    Question PDFInclude 3.3.3 -> Error 560

    I dont see the point in PDFinclude in a windows enviroment. Just use com-handles and open excel/word. You can use saveto and save as a PDF anyway, and it gives you more scope for layout etc. Oh and have fun when you upgrade to windows 10. It destroyed our V9 application.
  10. ForEachInvoiceDelete

    Question Progress Code To Retrieve Appserver Name

    What? Are you running progress client-server, with your business logic running on an AppServer?
  11. ForEachInvoiceDelete

    Buffer-copy Question

    So to elaborate slightly. DEFINE BUFFER bEmployee FOR Employee. FOR EACH Employee EXCLUSIVE-LOCK. FIND bEmployee where bEmployee.UniqueValue = Employee.UniqueValue NO-ERROR. BUFFER-COPY bEmployee to Employee. END. Now i realize this is pointless, as the source and target for...
  12. ForEachInvoiceDelete

    Buffer-copy Question

    I heard something new today, and being mr skeptical i wanted to validate. Buffer-Copy source to target wont cause any IO writes if the source and target are the same. Please validate/debunk. - Jase
  13. ForEachInvoiceDelete

    Question Legacy Program : How Can I Fix It ?

    Instead of assigning shared variables in the calling procedure, build a dynamic temp-table of the parameters and pass that temp-table to the .p as a single input param. That way you dont need to statically define data types. Just make sure you create your table data in a logical way, IE Record...
  14. ForEachInvoiceDelete

    Question Legacy Program : How Can I Fix It ?

    Take a look at the above knowledge base. You can use it to solve the shared variable issue. Using a mix of the two KB articles will resolve your form issue too.
  15. ForEachInvoiceDelete

    Question Legacy Program : How Can I Fix It ?

    Okay :) Todays clue. Progress KB - Temp-table Basics: Example code using a dynamic temp-table It wont do exactly what you need by copy and pasting but its enough of a shove in the right direction for you to sort it out.
  16. ForEachInvoiceDelete

    Question Legacy Program : How Can I Fix It ?

    Your variable declarations dont have to be dynamic, or even variables for that matter. What could you use instead? (Today's clue) Think outside the box for a bit and if you're still stuck tomorrow ill give you another clue.
  17. ForEachInvoiceDelete

    Question Legacy Program : How Can I Fix It ?

    Dynamic Queries will be your friend. Progress KB - How to use dynamic query - Sample code Read that, then understand that the entire query is a string and can be replaced with variables. I can get you some real life example code tomorrow when im in the office.
  18. ForEachInvoiceDelete

    Question Data Dictionary Vs Df Scripts

    Yeah i found it in the end. But much anger from my part at progress changing the default behavior. If i wanted crappy opaque grey selected highlights i'd have turned it on somehow.
  19. ForEachInvoiceDelete

    Question Data Dictionary Vs Df Scripts

    We had all of our progress browsers go an annoying grey colour instead of blue when using multi-select during a major upgrade. Took me a while to turn that crap off. My advice : - Test test test.
Back
Top