Search results

  1. S

    Display "Hello world" using class?

    Hi, No probs...I didn't also noticed that...It is a simple object creation only.:awink:
  2. S

    Display "Hello world" using class?

    Hi, Thanx for ur valuable solution...It helped me a lot. first code working fine, but when i try to run the second code it has given following error. Can't find class or interface myClass() at line 4.
  3. S

    Display "Hello world" using class?

    HI Friends, I am very new to the class oriented procedures. My intention is to print "Hello world". As read from materials I used following code, it is running fine but not displaying anything. CLASS sample. METHOD PUBLIC VOID mess() . DISPLAY "Hello world!" . END METHOD . END CLASS...
  4. S

    how can save current time in database attribute?

    Hi Tamhas, I need employee time details per session. whenever user login into the system he need to start entering times and when logout that values should be vanished. help me in writing such type of code.
  5. S

    How can we retrieve first value of an attribute from a database table?

    thank u very much..it is working........
  6. S

    How can we retrieve first value of an attribute from a database table?

    Hi, I am new to the progress. I am building an employee timesheet application where login time and logout times for a particular day should be recorded. I used, create inout . assign inoutTime=NOW . above code to store the timings. but, the problem is whenever i execute the code, present...
  7. S

    how can save current time in database attribute?

    Hi friends, I need your help in modifying my code for build employee time sheet. create pay.inout . assign inout.inoutTime=NOW . when I use the above code the time is saved into the inout attribute. I need such code where employee login time should be constant for the whole day. when I try...
  8. S

    how can save current time in database attribute?

    Thanx friends It is working.....
  9. S

    how can save current time in database attribute?

    Hi, I am building an employee appication where I need to capture the employee login time...when I am trying with the following code it doesn't work. Can u help me in this problem. CREATE InOut. assign empNum=integer(getSession("empNum")) inoutTime=DATETIME(STRING(TIME,"MM-DD-YYYY HH:MM:SS")) .
  10. S

    how can i Match user name and password ?

    Hi paul, I tried with the code that u provided for login. But, I didn't get the desired output. what type of code I need to provide at the end "else" part to get the output.
  11. S

    how can i Match user name and password ?

    which code I need to replace in place of "?" in the following code in order to retrieve the user details from a database table? <!--WSS if get-value("loginName") ne "" then DO: if get-value("loginName") eq " ?" AND get-value("password") eq "?" then -->
  12. S

    how can we add button to a html page using CGI wrapper web object?

    Hi Casper, I am using folllowing code to navigate to the next page in CGI wrapper, but it is not working. Can you suggest me how we can achieve this.I am new to the progress. So, please help me. {&OUT} "<INPUT TYPE=~"submit~" VALUE=~"SUBMIT~">":U SKIP "<FORM action=~"sample1.htm~">":U SKIP .
  13. S

    how can we add button to a html page using CGI wrapper web object?

    thanx Casper it is working fine. I am also try to change my code to embeded script from CGI wrapper.
  14. S

    how can we add button to a html page using CGI wrapper web object?

    Hi Casper, I tried with the following code to create a text box using CGI wrapper web object, {&OUT} "<INPUT TYPE="TEXT" VALUE="TEST">:U SKIP . But I am getting following error message in web tools, ** Unable to understand after -- "<INPUT TYPE=TEXT"". (247) ** Could not understand line...
  15. S

    how can we add button to a html page using CGI wrapper web object?

    hi, I can display table data using <table> attribute in a web page but in adding a button I am getting error....can u help me in adding a button or text box in a web page using CGI wrapper web object....?
  16. S

    How webspeed agents are connected to database?

    I got solution in other way i.e, in web tools there is a option to set the path for DB. I used that and i got connected to the database.
  17. S

    How webspeed agents are connected to database?

    thanx casper, for your valuable advice.
  18. S

    How webspeed agents are connected to database?

    Hi, can you help me in solving following issue. How webspeed agents are connected to database? I am trying to run the sample codes that are given with progress software to make use of Web Speed. But, I am getting "table not found" error.So, please help me in connecting the Sports2004...
  19. S

    How to generate report with changed data?

    I am getting problem with Crystal reports. I created a report using Crystal reports with data stored in a table. By Using openReport() method I generated report in progress 4GL. But when I changed the data in a table it's not was not reflecting in the report. I tried with REFRESH() method but...
  20. S

    Generating a report in Progress 4Gl with dynamic data

    I am getting problem with Crystal reports. I created a report using Crystal reports with data stored in a table. By Using openReport() method I generated report in progress 4GL. But when I changed the data in a table it's not was not reflecting in the report. I tried with...
Top