woo Posted March 19, 2005 Author Posted March 19, 2005 I have 8 layouts. I want FM to go to each layout, find the record and print. If no record found don't print anything on that lay out and go to next layout. I have scrip that I use, But when FM find 4 record it prints out the found 4 record plus 4 Blank pages. Why? This is the scrip. Set Error Capture (On) If["Status(Currentfound Count)>0] End If
woo Posted March 19, 2005 Posted March 19, 2005 I have 8 layouts. I want FM to go to each layout, find the record and print. If no record found don't print anything on that lay out and go to next layout. I have scrip that I use, But when FM find 4 record it prints out the found 4 record plus 4 Blank pages. Why? This is the scrip. Set Error Capture (On) If["Status(Currentfound Count)>0] End If
woo Posted March 19, 2005 Author Posted March 19, 2005 I have 8 layouts. I want FM to go to each layout, find the record and print. If no record found don't print anything on that lay out and go to next layout. I have scrip that I use, But when FM find 4 record it prints out the found 4 record plus 4 Blank pages. Why? This is the scrip. Set Error Capture (On) If["Status(Currentfound Count)>0] End If
BobWeaver Posted March 19, 2005 Posted March 19, 2005 You don't have anything inside the If-Then construct. It should look something like this: Set Error Capture (On) If["Status(Currentfound Count)>0] Print End If
BobWeaver Posted March 19, 2005 Posted March 19, 2005 You don't have anything inside the If-Then construct. It should look something like this: Set Error Capture (On) If["Status(Currentfound Count)>0] Print End If
BobWeaver Posted March 19, 2005 Posted March 19, 2005 You don't have anything inside the If-Then construct. It should look something like this: Set Error Capture (On) If["Status(Currentfound Count)>0] Print End If
Recommended Posts
This topic is 7179 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now