Search results

  1. ForEachInvoiceDelete

    Question Using Browse W/ Conditions

    1. Stick browser on window 2. Create freeform query for browser. 3. Use variables in the freeform query. 4. Use action trigger to open query in browser.
  2. ForEachInvoiceDelete

    Question Static Class Vs Shared Temptables

    We have a persistent procedure running on the appserver that contains a temp-table of what used to be our shared variables. We then just call dynamic functions to return data out into the application. Just as bad but hey, makes it more readable.
  3. ForEachInvoiceDelete

    Piew - Free Progress Code Editor

    This has ALMOST taken over as my main text editor, if only it had a XML formatter like notepad++. Either way, great work.
  4. ForEachInvoiceDelete

    Error Not Commited To Db

    Betting an error occurred after your message and backed out the transaction. Post some code.
  5. ForEachInvoiceDelete

    Question Is There Any Function To Identify Whole Number, Field Name And Data Type In Progress4gl?

    Might be me but i need a little more context. You can use the VST information to grab field information like name and data-type. If you're using buffers you can query attributes to get the information. ---- >Buffer-field object handle
  6. ForEachInvoiceDelete

    Replace/concat May Not Result In Data > 32000 Bytes. (11678)

    Unless all of the options are alcoholic choices of beverage. In which case, any will do.
  7. ForEachInvoiceDelete

    Emea Pug Challenge

    Finally got approval to go so will be attending my first PUG in 7 years of progress development. Shame the 4GL performance workshop is full as it would have been interesting. If anyone can sneak me in it would be appreciated. A full three days of sponging information has really cheered me up...
  8. ForEachInvoiceDelete

    Answered Porting Code To Pas That Has Shared Variables

    just use compatibilityhandler. Our legacy app seems to work fine on 11.6 PAS and it has shared variables by the bucket load. Seems to reset the variable values per request.
  9. ForEachInvoiceDelete

    11.6 Pas

    Hey guys. 11.6 PAS, Linux server. Trying to migrate an existing web speed application into 11.6 pacific and its being an absolute ... Custom web-disp.p. No problems, merged it with web-handler. Created my class and inheritance and all seems okay. From the class, i can use...
  10. ForEachInvoiceDelete

    Corrupt Indexes?

    Yeah will try that on Monday. The only reference i found for IDXfix was for version 8 so i havnt done it yet. - For Each
  11. ForEachInvoiceDelete

    Corrupt Indexes?

    Yeah it reads just fine, but on an update/delete it throws that. Im going to take a probkup and restore it somewhere else to rule out storage failure. If it comes to it i will do a .d dump/load and remove the record manually but unfortunately i believe its more than one!
  12. ForEachInvoiceDelete

    Corrupt Indexes?

    windows 2012 64 bit 11.5.0 Trying to delete/update a record but getting the following. Any ideas? I have found some old KB articles that point me to upgrading progress to 11.5.0 but the cause of this error still seems unknown. No triggers running. I'm tempted to do a full backup elsewhere...
  13. ForEachInvoiceDelete

    Question How To Locate And Download A File From Ftp Server?

    I do something similar. OS-Command silent "C:\somepath\somefile.bat". That .bat file contains. "C:\Program Files\WS_FTP Pro\ftpsync.exe" "C:\somepath\receive.ctl" the .ctl file is a wsftp config file allowing it to connect to a site and do some tasks, which you can set up within WSFTP. -...
  14. ForEachInvoiceDelete

    Question Help Function

    If you press F1 in a progress application and it then runs progress code, you're searching wrong. There has to be an F1 trigger in the source. Try again. status default "Use[arrow keys] & [return] to select or <F1> Help". READKEY. lv-key =...
  15. ForEachInvoiceDelete

    Poor Network Performance

    Just run an online backup, restore it locally, run your month end reports then carry on as usual. Will take seconds to do. Edit. After pointing your client at your new local DB. Cant do anything to solve your day to days, we tried VM and the performance hit was massive. Try hosting on a...
  16. ForEachInvoiceDelete

    Answered Is using Temp tables and locking bad coding standards

    I never use locking statements with temp-tables, but always define the lock for DB tables. Its became more of a habit than solid reasoning. I have never came across an issue that was solved by using lock statements on temp-table queries, so i have never bothered. The only part of the code that...
  17. ForEachInvoiceDelete

    Using Xml To Create Excel File

    Ohhh that makes sense. Not sure i will be able to help you then as im out of my depth with CHUI linux. - ForEach
  18. ForEachInvoiceDelete

    Using Xml To Create Excel File

    You just want to create an excel document from a temp-table? Whats the value of converting it to XML? Ill post some code examples of com-handles and how to use them.
  19. ForEachInvoiceDelete

    Using Xml To Create Excel File

    Morning, Does the machine progress run on have excel? If so you could just directly call excel and skip the XML parts.
Back
Top