Ein, yes, I tried it, also.
I concluded that it cannot be fine ajusted: in the VFP book "What's New in Nine", page 100, it explains about "Absolut positioning": it cannot be perfect, as I have understood.
I used a green vertical line, as a ruler, as you advised in your earlier post. It helps...
Mark:
I have also it checked to Snap to Grid.
Set Grid Scale (to 6 pixels) doesn't wotk either: it just has effect to show the report on screen, it doesn't fine tune the position when moving a label using arrows.
For example, a label is 4.968 inches from left, the next position if I type...
Hello colleagues!
I have been wasting more time to fine ajust the position of objects when design a report than creating the report itself.
Is it a fault in VFP 9?
I have tried even (instead of moving labels through the report using arrows) to set the position "From left" (for example 5,614...
Just to simplify.
I created a new Form, and put a Combobox in it. In the Combobox GotFocus event I put the code:
PUBLIC ARRAY Texto(10)
Texto(1)="Paul"
Texto(2)="Charles"
Texto(3)="Mary"
ASORT(Texto) && Sort the array
With This
FOR I=1 TO 3
.AddItem(Texto(I))
NEXT I...
Hello colleagues!
I have been trying to sort an array in alphabetical order, but errors appear:
PUBLIC ARRAY Cabine(30)
FOR I=1 TO 30
IF XTIPOCAB(I)<>SPACE(3)
Cabine(I)=XTIPOCAB(I) + " - " + XCATEGCAB(I) + " ("+ ALLTRIM(XNOMECAB(I)) + ") "
ENDIF
NEXT I
ASORT(Cabine) && Sort...
Wow, another great lesson from Chriss!
Yes, Chris, all my reports are unchecked for 'Report uses a private data session'. In one computer I can only run one report (or other program function) at a time. The application doesn't allow to run the same program at the same time in the same computer...
The use of '==' presented by Greg worked fine. Now the report works as intended!
Also, the lesson presented by Joe is very didactic. I will print it and let it on my desk to refer to it when using comparisions between data.
Tore said:
Well, the command SELECT curPedProd before REPORT FORM...
Hello colleagues!
I am trying to display in a report only records which have in the PSTAT field the content "PENDENTE". This field lenght is set to 10 characters.
The variable QualStatus is defined during run time, and the user typed "Pendente" to be stored in it.
The code is:
SELECT * FROM...
Hello dear colleagues!
Mark, Chriss & Ein:
I tried to have more than just one detail in my former versions of the report, but unsucessfully, either (but I think I made a very big mistake, I'll tell you bellow):
From my 5th version of the report, clicking by chance in an "empty" area of the...
Hello, Criss!
I have not understood about "driving workarea" you mentioned above, but the problem was just solved this way:
1) I used the Report Wizard to create a "One-to-Many"
2) I ran it to test:
3) As it was ok, I copied the fields from my original report (which was not working as...
Criss:
In the Detail1 I have the fields from the table RESERVAS.DBF. There must have just one record (LOCALIZA field, example 5005741)
In the Detail2 I have the fields from the table TEMPPAX.DBF. And all the records in the TEMPPAX.DBF must be printed in the Detail2 of the Report, because all...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.