Recent content by Speedy Gonzalez

  1. S

    SMTP.p

    Hi guys, I'm sorry if I sound like an amateur (which I am because I've only been working with Progress for about 4 months). But I'm stuck at this part of my assignment. I would like to know what the steps are to make the smtpmail.p file to work. So what must I do to send an email through my...
  2. S

    SMTP.p

    Hi, I was searching for the SMTP.p file on peg.com (http://www.peg.com/lists/peg/history/200104/msg01739.html) but the link the user provided to his file isn't valid anymore. I would like to send an automatic email message which contains some tekst. It's an application in Progress. There is a...
  3. S

    Log out code

    Hi, no problem. You're right ofcourse. SpeedScript indeed is embedded 4GL into HTML. The project is going according to plan. Since this is my first real big project I'm allowed to make a few mistakes however it is wise not to. I'm still stuck at that the 'Align data left and at the top' Topic...
  4. S

    Align data left and at the top

    Hi guys and girls, I realy need ya'll help on the post above me (which I posted). Can anyone help?
  5. S

    display date

    Hi, I would like to create a unique number as follows: the date today is 24-08-05 en there are 5 messages sent to our system. For each of the messages are unique numbers available from which one can get the date out: example: 050824-001 050824-002 050824-003 050824-004 050824-005 Tomorrow...
  6. S

    pass a link to next page

    Hi, I found the solution. I use 2 defined functies called getVal and setVal. This is ofcourse OK when I pass data through other pages when the data isn't changing. This worked for the other pages but there is a page which has to use data which changes quite often. Solution is to set a...
  7. S

    Log out code

    Hi, I found another solution. Since I use session management, it means the unique session id will sometime expire. Just add a link called 'log out' in the navigation menu en link that to the login page. Ofcourse set the target to '_top'. This means when you click log out, then the program...
  8. S

    Align data left and at the top

    I tried to insert that piece of code in the string that asignes the values which are in eextrdeta. So what I wrote in the previous post was that I put the code with that Replace statement. I realised I was making a huge mistake and so I tried something else: So in de procedure output-headers I...
  9. S

    Log out code

    Hi, yes I use session management. My inlog page is the start page. After a succesfull login there is a frame page started and the rest of the navigation goes trhough one colom. At the top there is a header, left there is a navigation menu en right the target of the different HTMLK pages. Now...
  10. S

    pass a link to next page

    I get the following error: mismatched number of parameters supplied to 'url-encode' expecting 2 but 1 were specified Also what do you mean with these 2 vaiables: cUserName = GET-VALUE("rusername#") cRCode = GET-VALUE("rcode#")? Must I locally define them in searchcalldetails?
  11. S

    Align data left and at the top

    I think I need to clarify a few things. I have now removed the textarea edeta# in the first page. Now I only want to add details in the second page. So in the second page there will be a empty tablecell. Underneath it there is a textarea. In via that textarea people can add some text...
  12. S

    Align data left and at the top

    Hi, This is my code: <table border="1" width="100%" id="table10" style="border-collapse: collapse"> <tr> <td align="left"> `REPLACE(HTML-ENCODE(edeta#),"~n":U,"<BR>":U) + "<B>":U + (if edeta# EQ "":U THEN "":U ELSE "~n~n:U) + STRING(NOW,"99/99/9999...
  13. S

    Data types

    It is that simple isn't it? :biggrin: Thanks man! :D
  14. S

    Order the data

    Hi, thanks, it worked. I created a combined index of the unique number and date. Plus I've added a 'BY' in the for each and its working fine! thanks!
  15. S

    pass a link to next page

    Hi, I have a page on which there is a table. In this table there is a reference number. This reference number is a link which leads to an excisting page. Now what I want to do is after I click on the link, the (actual) username and reference number must somehow be passed through to that page...
Top