|
-
Dec 3rd, 1999, 06:45 AM
#1
Thread Starter
Member
In code for a label, how do i skip a line through the code. I want "Whatever" & Skip Line & "DASKSDJLA"
-
Dec 3rd, 1999, 06:49 PM
#2
Lively Member
If you're trying to print a label (which I think you are) you can either print the first bit, print a blank line and then print the last bit or have the string as "FIRSTBIT" & chr(13) & chr(13) & "LAST BIT".
Chr(13) is a carridge return and doesn't work on everything
Chris
-
Dec 3rd, 1999, 08:36 PM
#3
try
"Firstbit" & VBCRLF & VBCRLF & "Lastbit"
------------------
Wossname,
Email me: [email protected] 
-
Dec 4th, 1999, 12:24 PM
#4
Hyperactive Member
If You need to skeep some part of the line based on some conditions, then I would use:
str= iif(Condition1,"someting","") & _
iif(condition2,"anyting'"") ... and so on
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|