Search results

  1. S

    Align data left and at the top

    Hi, This is the code: <table border="1" width="100%" id="table9" style="border-collapse: collapse"> <tr> <td width="98">Subject:</td> <td><input type="text" name="subj" size="56" value= "` substitute("&1", subj#) `"></td> </tr> <tr> <td width="98"...
  2. S

    Align data left and at the top

    Hi JongPau, I've tried you're solution and it worked!!! Many thanks man, now I can move on. I have another problem: I have added some info in a textarea on a page. Now after pressing submit, I go to another page in which the info I typed in the previous page is being displayed in a table cell...
  3. S

    Align data left and at the top

    Hi, thanks for your reply. Do u mean I have to put this line: `REPLACE(HTML-ENCODE(<field-name>),"~n":U,"<BR>":U)` betweed the td tags? many thanks
  4. S

    Align data left and at the top

    Hi, I want to display a few lines of text in one cel of a table. I expand (resize it) this cell and want to put data from a database field in it. The database field contains a few lines of text. The reason I use one cell is I just want to display the data. The user can only see it and not...
  5. S

    Datetime datatype

    Hi, Thanks for your reply. I must use the datetime-tz type but I have a way after a bit of fooling around. This is the code: for each sessiontable where sessiontable.dsess < NOW -TIME: delete sessiontable. end. Remember that NOW is the keyword which returns the date and time of the...
  6. S

    Saving data selected from combo box (drop down menu)

    Hi, I have a page in which u can fill in some text forms and select some data from a combo box (drop down menu). After filling in and selecting the info, the user presses on 'save' and the data is saved in de database. Now I know the code for the fields but how to do this for the comboboxes...
  7. S

    Datetime datatype

    Hi people, I want to create a trigger which automatically deletes any session records which are 1 day older then today. So something like this will work if I used the keyword TODAY: for each sessiontable where sessiontable.dsess < TODAY -1: delete sessiontable. end. The dsess field is...
  8. S

    SpeedScript

    I've coded a simple block which verifies if the user has entered the userid and password. This is done so I can go program the remaining functionalities in my system. I will begin on the original problem later. Now another problem, say you now after loggin in, you go to a page where there...
  9. S

    SpeedScript

    Hi Casper, Thanks for your time and effort to put some code. I already have a solution thanks to my mentor. He suggested: <select size="1" name="D2"> <script language="SpeedScript"> FOR EACH 'tablename' NO-LOCK: {&OUT} "<option>" 'tablename.tabelfield' "</option>". END. </script> </select> It...
  10. S

    SpeedScript

    Hi, thanks for your reply. I have heard of amduus.com and even visited it but like you I also couldn't connect. I will try later. In the mean time I will follow your advice and check those links out.
  11. S

    SpeedScript

    Hi, I'm building an application in WebSpeed. I have connected to the database en now I would like to retrieve data from the database and display this in comboboxes for example. I would also like to see some standard SpeedScript code. So with the tags and all. It's a bit confusing so if you guys...
Back
Top