Search results

  1. jdpjamesp

    Resolved Trying to use an home C# Class

    "Simply" upgrade to a modern and supported version of Progress and you will find that you will be able to use .Net in OpenEdge. I know that's not particularly helpful, but why reinvent the wheel?
  2. jdpjamesp

    Scan Barcode using Scanner Gun & Save Scanned Data

    Yeah something like that.
  3. jdpjamesp

    Scan Barcode using Scanner Gun & Save Scanned Data

    So it's just a scanner connected via a wire? The scanner should just output the scanned value as text. Create a screen on your application with a fill in and there you go.
  4. jdpjamesp

    Scan Barcode using Scanner Gun & Save Scanned Data

    Answering #2 first as it's a simple (ish) answer. No you can't run a Progress client on the scanner gun. #1 depends a little on the scanner gun. From your #2 question I assume it's not just a scanner but actually has the capability to have an interface on it. In other words the device probably...
  5. jdpjamesp

    Suddenly slow database and sometimes losing connection

    That sort of configuration is quite common, for example if there have been instances where client sessions die within transactions as in a shared memory configuration this can bring down the database.
  6. jdpjamesp

    Suddenly slow database and sometimes losing connection

    What's the Progress version? What is the difference in the IOPs of the 2 disks that were switched?
  7. jdpjamesp

    0 / 0 = ?

    My calculator is fine...
  8. jdpjamesp

    Answered Protop on premise

    Yes there is - you can have a private portal. There is obviously some cost involved here. For reassurance though, there is no reason for the admins to worry about the health data going to the cloud. There is nothing in there that will tell anyone anything about the data held within the...
  9. jdpjamesp

    Error ** More than 1024 items in a single statement. Use the -tok parameter. (136)

    Please take a look at my suggestion from May 13th. You could easily pass the customer numbers to the back end and build a temp-table there to do the query. Not only will the query not break -tok, it will also almost certainly run quicker.
  10. jdpjamesp

    Example on how to calculate the week number of the year from a date

    I was trying to get a .Net solution working last week which was why I asked if it's Windows or *nix. Unfortunately support for ISO 8601 was only baked into .Net Core and not .Net Framework. Core has an ISOWeek class that does all the magic with very little effort. But that's not an available...
  11. jdpjamesp

    Error ** More than 1024 items in a single statement. Use the -tok parameter. (136)

    Wow that is never going to perform very well. Why not make a temp table with the customer numbers and then make the query: FOR EACH ttCustomer, each order no-lock WHERE order.co_num = "1" and order.warehouse = "primary" and order.customer = ttCustomer.customer :
  12. jdpjamesp

    Example on how to calculate the week number of the year from a date

    Are you working on a Windows or *nix solution?
  13. jdpjamesp

    Progress 8.3e recovery

    Hi there. Please provide the full command you're using to start the secondary broker. Usually that error indicates a casing issue in a parameter, or a parameter it doesn't recognise. Although - looking further I found this: -ServerType is a database startup parameter introduced in Progress...
  14. jdpjamesp

    Question What version of 11.7 for PASOE

    Hi Ashwani, I've moved your question to a separate thread so that it doesn't derail the original question. It's a good question. One thing that's very important to note is the dates that various versions were released. 11.7.4 is really old. Think about how much the security world has moved on...
  15. jdpjamesp

    Question I'm back.... Starting fresh with PASOE 11.7

    If you're starting from scratch I would start on OE 12.2 if at all possible. If you really can't then definitely 11.7.12. There are a lot of improvements in PASOE that you really don't want to miss out on. I also wouldn't be developing a Webspeed application in 2022. I would convert all the...
  16. jdpjamesp

    Progress ABL to c# convert

    It's not as easy as just converting it. C# doesn't have direct access to the database, so you can't translate the logic at all. You're going to have to provide a lot more context.
  17. jdpjamesp

    OpenEdge GUI development tools on 4K laptop screens--yay or nay?

    I had a few issues with some programs. IIRC Outlook was a problem for a while. But yes, Eclipse was the worst.
  18. jdpjamesp

    OpenEdge GUI development tools on 4K laptop screens--yay or nay?

    They work fine in my experience so long as you set the High DPI Scaling Override correctly.
  19. jdpjamesp

    Question What does business-object mean ?

    The number you're getting is the integer value of the handle. As Tom says, I would search the code base for other examples of where this is used and use that to work out what to do with the handle. You seem to be asking some very basic application specific questions here that we cannot help you...
Back
Top