Recent content by pejgan

  1. P

    Crystal performance problem

    I'm using crystal XI and the crystal ActiveXReportViewer to create anv view reports via Progress. The reports are fairly simple, without subreports, and workt great locally but when applied to the actual development environment it takes AGES! A report that takes about 2 secs on my local...
  2. P

    escript problem..

    *sigh* Back to work after maternity leave and boy am I out of practice.. downloades and "installed" escript to try and figure it out but it just WON'T work!! I get the escript object working but when I try to use the functions (EXACTLY as in the sample...) it just won't compile.. what...
  3. P

    Temporary internet files problem

    *lol* Problem resolved.... I had accidently edited the meta tag: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> and changed it to: <meta http-equiv="Content-Type" content="text/htm; charset=iso-8859-1"> and therefore some IE didn't understand that is was a...
  4. P

    Temporary internet files problem

    Hi! I've got a homepage built in webspeed that works ok on some computers but on others it insist on downloading the file to temporary internet files and opening it there. That meens the relative pathways don't work and therefor no links or images or css. Anyone with any ideas as to WHY it...
  5. P

    Feeling really stupid now!!

    feeling even more stupid now.. *lol* I was so sure I did something wrong.... until 2 hours later when I realized I had just spelled a filenamn wrong *lol* But another question.. I got everything working with the sports2000 db but when I tried to change the database ... it still uses the...
  6. P

    Feeling really stupid now!!

    I just got started using webspeed and as I was working through the "getting started" documentation I ran into a problem with a detailed report... I had to go into the code and change a few errors and now I can't seem to find where to save the html-code into a web-objekt?? I KNOW I did it once...
  7. P

    Changing Excel Fonts & Colors

    It's true that exporting data to Excel/Word is extremely slow in comparison to sending directly to a textfile. From what I can see from just a quick look at your code it seems you are doing what you should. Sorry no good tips ... "been there tried that" .
  8. P

    PDW, May 18th-20th, Dublin, Ireland

    Not that you're likely to have ever seen me around ;) But I'm going to Dublin anyway! All the progress developers at our firm will be there! I'll try to be more active here at progresstalk and maybe someone will "know me" by then ;) /Lena L.
  9. P

    how to send to excell, lookup, return corresponding entry

    I hope I understood you right now... Using a com-object you can do about anything you want to with Word, Excel etc.. Here is a sample code for opening an excel-sheet, selecting the value in cell C4 and displaying it /* Create a handle to a com-object*/ DEF VAR ch-Excel AS COM-HANDLE...
  10. P

    putting focus on a smart browse

    maybe.. I have no Idea if this is what you're looking for but here goes: /* Select the first row in browser */ REPOSITION browse-1 TO ROW 1. /* Make it active */ APPLY "entry" TO browse-1.
  11. P

    Selection List in progress 8.3B

    ugly but working.. The way we had to do it before version 9 was to put the text visible in the list, and the corresponding code in for example pos. 80, not showing on screeen. It's not a nice thing to do, but who does it hurt? If you don't want to do that you probably have to store some...
  12. P

    Word problem (?)

    *lol* That's ok. I'm not totally stupid *lol* Worked fine, just had to change som tiny things: DEF VAR ch-word AS COM-HANDLE. CREATE "word.application" ch-word. ch-word:VISIBLE = TRUE. ch-word:documents:OPEN("c:/temp/sql.txt"). ch-word:ActiveWindow:view:TYPE =3...
  13. P

    Word problem (?)

    Hi, I'm opening up a simple .txt file in msWord with pagebreaks. Great. The problem is that Word annoyingly enough opens it in "normal"- view mode (don't know the exact names in english versions, using swedish version). Due to that, the pagebreaks are only visible as dotted lines in the...
Top