Re: Help!
-----Original Message-----
From: Albert Brauneis <Dajawu36 at AOL.COM>
Subject: Help!
>Ok I think this time I can describe the problem I am having and you will
>understand what I am talking about.
>
>say I have a sequence that is {'t','e','s','t'} and I want to add .bmp to
the
>end I keep ending up with this: {'t','e','s','t'}, {'.','b','m','p'} when I
>want this: {'t','e','s','t','.','b','m','p'}
Usually I just do this Albert,
sequence name
sequence filename
name = "test"
filename = name & ".bmp"
?filename
puts(1,filename)
puts(1,"\n") --a new line
puts(1,name & ".bmp")
These examples were just tested by yours truly.
Another way is to even call the extension a sequence...
ie.
sequence extension
extension = ".bmp"
filename = name & extension
puts(1,filename)
should put out...
test.bmp
Monty in Oregon
(hoping I haven't skipped right over your question by not fully reading it.)
|
Not Categorized, Please Help
|
|