Search results

  1. J

    application use survey

    Very strange. When I click on it it takes me www.microsoft.com. I had to copy/paste it to mozilla.
  2. J

    silent updating

    Actually, further test show that a:screen-value returns what is keyed in.
  3. J

    silent updating

    Hmmm... interesting ... Try this ... def var a as char. update a blank. message asc(a:screen-value) view-as alert-box.
  4. J

    silent updating

    Nice trick. How about this though: UPDATE vscan BLANK.
  5. J

    Emailing through Progress on Unix

    We have written some progress e-mail functions based on mutt if you are interested. You would need to install mutt of course. We even have a character UI.
  6. J

    Browser Help!

    reposition-to-rowid() ??
  7. J

    9.1D offline backup difficulties...

    What's in the structure (.st) file?
  8. J

    Browser Help!

    Closing/re-opening the query seems a little drastic. Have you tried the refresh() method?
  9. J

    interact with J2EE aplications

    From V6, I'm guessing your only option is to issue shell commands.
  10. J

    Where can I find support for progress 6?

    Define "windows app". Can u use a mouse?
  11. J

    Where can I find support for progress 6?

    Well, unless the users are accessing some sort of share, where they have centralized access to one single body of r-code, it HAS to be installed on the client machine. But in either case, that's not the where performance hit is. The problem is the data. The client is maintaining a live...
  12. J

    Where can I find support for progress 6?

    If you mean that standard client/server in a WAN environment sucks, you are right. Yes the r-code should be on the client machine.
  13. J

    Where can I find support for progress 6?

    Hey! my bullet points didn't show up!!
  14. J

    Where can I find support for progress 6?

    Let's do a terminology sanity check: Server: The machine where the DB lives. Also know as "host" Broker: A Progress process running on the host or server that allows clients to access the DB Client: A Progress session (which can run on the host OR on a remote machine), that, through the...
  15. J

    Where can I find support for progress 6?

    There are no major differences in making remote connections between v9/v10 Progress and V6. All of the documentation for V9 is online at the Progress Website, but basically you need to: - add an entry to your /etc/services file for each database you want to connect to . Simply create a...
  16. J

    logical data type in query

    Logical data type possible values: yes/no, true/false (not quoted) or ? (unknown)
  17. J

    Calling a function from an external procedure???

    Actually, you have at least 3 options: 1) Use the include file approach (.. groan ) 2) Use the MAP-TO option when defining functions (booo ...) 3) Use a SUPER PROCEDURE!!! (crowd roars it's approval) :)
  18. J

    Formatting String Numbers

    string(variable,"zzzz,zzz,zz9.99")
  19. J

    no window on OS-COMMAND

    In Windows, I found no way to eliminate the window completely. At the very least it will be minimized. I remember dealing with tech support on that. I guess that's why they call it Windows? :-)
  20. J

    locking problem

    "The record will be unlocked as soon as the transaction is done. Any errors in the write trigger requiring an undo will only be handled correctly if the release is done within the transaction block (weak transaction)". Incorrect. There is no such thing as a "weak transaction". There is...
Top