At 09:06 PM 1/9/2003 -0600, Javier Valencia wrote:
Is it just me or we can no longer report bugs for 6.5++?. I tried to report a bug to RDCC but under Product, the only option is RBASE V7.0 for Windows Private BETA & does this mean that if we find a big in 6.5++ we are SOL?
Javier,
No . You are NOT SOL? If you are able to reliably replicate ANY bug and there is no work around, you can submit your reliably replicable bug, along with necessary files to: mailto:[EMAIL PROTECTED] You can also communicate with dedicated support staff via phone at 724.733.0053 or e-mail at mailto:[EMAIL PROTECTED] Note: Before sending anything, make sure that you are able to replicate the bug.
Also, a couple of question on forms: Question 1: I have a form in which I display information on a vehicle and I would like to display a lookup variable with the lowest (MIN) mileage for that vehicle based on information on maintenance intervals for different maintenance procedures stored in a separate file (schedule). Right now I use an eep to calculate this value on entry to the row.: COMPUTE vnext_rdg AS MIN proc_code_nrdg FROM fsched_file + WHERE equip_code = .vequip_code
You need to learn the new Syntax and take advantage of SQL command to compute the MINimum, MAXimum, SUM, etc. Example: SET VAR vNext_Rdg INTEGER = NULL SELECT (MIN(Proc_Code_nrdg)) INTO vNext_Rdg INDIC ivNext_Rdg + FROM Fsched_File WHERE Equip_Code = .vEquip_Code
Is there a way to define a variable in the form to do this, without using an eep? I seem to recall doing something similar this once upon a time, but I cannot remember exactly how&
Yes you CAN! Example: Database: Concomp: Driving Table: TransDetail Form: TranForm Expression: vMinAmount = (MIN(Netamount)) IN Transmaster WHERE TransID = TransID Locate that variable on the form and then run that form as: ENTER USING TranForm Enter TransID = 4760 and press [Enter] See what happens!
Question 2:
From a main form for a file that stores work order information (one), I call (via eep)
a second form for a file that stores the manpower information for the work order
(many), when I exit the second form, the eep calculates a summary of the labor
costs and updates the work order file (using the UPDATE& command) type
command (SAVEROW, SETFOCUS and RECALC TABLE do not work) or any
other procedure that would force the main form to refresh.
You need to post more details and a sample of your EEP and related commands. Remember, NOTHING is impossible! Very Best Regards, Razzak.

