Advertisement
Guest User

nhhh

a guest
Nov 26th, 2014
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. x=" "
  2. FOR i=1 TO RECCOUNT()
  3. GOTO i
  4. x=x+nume+" "+prenume+CHR(13)
  5. ENDFOR
  6. thisform.label1.Caption=x
  7.  
  8. x=" "
  9. FOR i=1 TO RECCOUNT()
  10. GOTO i
  11.  
  12. IF left(nume,3)="pop"
  13. x=x+nume+CHR(13)
  14. endif
  15. ENDFOR
  16. thisform.label1.Caption=x
  17.  
  18. x=" "
  19. FOR i=1 TO RECCOUNT()
  20. GOTO i
  21. if(LEN(ALLTRIM(nume)))<=5
  22. x=x+nume+" "+prenume+CHR(13)
  23. endif
  24. ENDFOR
  25. thisform.label1.Caption=x
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement