Search results

  1. O

    calling Printer

    Hi Divya, if you mean printing the html page then use this: <input type=button value=print onclick=print();> This calls up the print dialog window that usually comes up when you go throught File -> Print.
  2. O

    excel QueryTables leave processes running

    Hi Plus, Thanks for the reply but that's not the problem. Just commenting out the querytables bit makes the program run well without leaving any processes running. After doing a bit of research on the web, it looks like it is a well known bug. A memory leak occurs when you query an open...
  3. O

    excel QueryTables leave processes running

    Hi Plus, thanks for the reply but I do release the chWorksheet object futher down the code as I use it for formatting. Here is more of my code: v-cnt1 = 0. /* counter variable to loop through textfile names */ v-cnt = 0. iColumn = 6. /* starting row to display data on the excel...
  4. O

    excel QueryTables leave processes running

    Progress 9.1D windows xp professional - office 2003 windows server 2003 - office xp Hi, I have a program that creates several excel spreadsheets and inserts several textfiles into these spreasheets using QueryTables. I create and release com-handles for these querytables but processes...
  5. O

    Check Stream question

    kb ID 18414 I haven't tested this myself but try this: /* closed.p */ DEFINE STREAM test. OUTPUT STREAM test TO junk.out. OUTPUT STREAM test CLOSE. IF SEEK(test) = ? THEN MESSAGE "Stream is closed" VIEW-AS ALERT-BOX.
  6. O

    excel import to progress database help

    Hi, these new records you want to create / add - could you explain what information you want them to hold? Give an example of what the record might store
  7. O

    Excel processes still running after program ends

    I've mananged to sort out my own problem. Because I was creating more than one chBorder objects, I was just releasing one. So I basically cut it down to one chBorder object and the excel processes seem to have dissapeared!
  8. O

    Excel processes still running after program ends

    Thanks for that but I have that bit in my code. Before l release the com objects I have these statements: chExcelApplication:DisplayAlerts = FALSE. chWorkbook:SaveAs (vFileName,,,,,,). chExcelApplication:Workbooks:CLOSE(vFileName). chExcelApplication:QUIT(). /* release...
  9. O

    Excel processes still running after program ends

    progress 9.1D Hi, I've got a procedure than produces an excel report. At the end of this program the excel processes are still running. Now the code below shows how I create and release my com objects. CREATE "Excel.Application" chExcelApplication. chExcelApplication:Visible =...
  10. O

    Webspeed Training

    I attended the webspeed training provided by progress and found it to be ok. I started using webspeed a couple of months before that. The course didn't really teach me anything new and it was quite basic. There was a one day html session which I didn't attend and 4 days dedicated to webspeed...
  11. O

    email excel document as attachment

    Thanks Mike. Worked like a charm. Obi
  12. O

    email excel document as attachment

    Hi, I'm using webspeed 3.1d on unix. I've created a report in excel (via appserver on windows) and transfered it back to my calling webspeed program in a temp-table with a raw data format. DEFINE TEMP-TABLE ttFile FIELD SeqNo AS INT FIELD FileData AS RAW INDEX...
  13. O

    Multiple Submits

    or another suggestion is to disable the submit button as soon as the user presses it. Once the button is disabled, it doesn't respond to any other user inputs. You could also change the text on the button to say "submitted" as well e.g <input id="butt1" type="button"...
  14. O

    Saving excel file generated from an Appserver

    Hi, We are running a webspeed program that is on unix and getting it to talk to a program that is on an NT machine through the appserver. This is because we want the program to directly output to an excel spreadsheet on a client's PC. What's happening is that excel is opening up where the...
Top