Search results

  1. 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...
  2. 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...
  3. 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")) .
  4. 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 -->
  5. 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....?
  6. 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...
  7. 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...
  8. 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...
  9. S

    Disconnecting Database in Proenv

    hi guys, i am new to progress 4gl...i connected to the database by using following command in proenv. proenv> proserve payroll -H localhost -s 1111. It is working fine. But the problem is I can't able to diconnect the database in proenv..... plz...help me in disconnecting the database...
Top