Normal Topic Looking for way to print a list of all LE's (Read 967 times)
Cliff
Full Member
***
Offline



Posts: 126
Location: New Hampshire
Joined: May 5th, 2006
Looking for way to print a list of all LE's
Feb 13th, 2008 at 8:23pm
Print Post Print Post  
I need to print a list of all the LE's I have in one of our apps and can not find a way to do this.
Any help appreciated...
  
Back to top
 
IP Logged
 
Hammer
YaBB Administrator
Lanticans
*****
Offline


Fire bad. Tree pretty.

Posts: 3436
Location: Ohio
Joined: Nov 22nd, 2002
Re: Looking for way to print a list of all LE's
Reply #1 - Feb 13th, 2008 at 8:25pm
Print Post Print Post  
I can give you a routine that prints all the LE's on any given form. Will that do?
  

- Hammer
The plural of anecdote is not data.
Back to top
IP Logged
 
Cliff
Full Member
***
Offline



Posts: 126
Location: New Hampshire
Joined: May 5th, 2006
Re: Looking for way to print a list of all LE's
Reply #2 - Feb 13th, 2008 at 8:28pm
Print Post Print Post  
Aye...once again...you are the best!
Thanks!!
  
Back to top
 
IP Logged
 
Hammer
YaBB Administrator
Lanticans
*****
Offline


Fire bad. Tree pretty.

Posts: 3436
Location: Ohio
Joined: Nov 22nd, 2002
Re: Looking for way to print a list of all LE's
Reply #3 - Feb 13th, 2008 at 8:34pm
Print Post Print Post  
Edited:
Use Carl's code below. It's better.  Smiley
« Last Edit: Feb 14th, 2008 at 12:22am by Hammer »  

- Hammer
The plural of anecdote is not data.
Back to top
IP Logged
 
Cliff
Full Member
***
Offline



Posts: 126
Location: New Hampshire
Joined: May 5th, 2006
Re: Looking for way to print a list of all LE's
Reply #4 - Feb 13th, 2008 at 8:36pm
Print Post Print Post  
Thank you!
  
Back to top
 
IP Logged
 
Carl Underwood
Senior Member
Members
*****
Offline



Posts: 1350
Location: New Hampshire
Joined: Mar 11th, 2003
Re: Looking for way to print a list of all LE's
Reply #5 - Feb 13th, 2008 at 10:02pm
Print Post Print Post  
Erika,

I'm just curious why you used:
@StringArrayAttributes(vList, ATTR_ID_NAME)

I appear to get the same results with:
Code
Select All
var vList as String
var vNames as String

	vList = @StringArrayElementList()
	vNames = @Replace(vList, ";", @Newline())
	WriteLn(vNames) 



I know you usually have a good reason why you do things the way you do, so am I missing something?

I don't mean to put you on the spot, I really am curious. Smiley
  


Carl Underwood
CDU Computer Consulting LLC
Epsom, New Hampshire
Back to top
IP Logged
 
Hammer
YaBB Administrator
Lanticans
*****
Offline


Fire bad. Tree pretty.

Posts: 3436
Location: Ohio
Joined: Nov 22nd, 2002
Re: Looking for way to print a list of all LE's
Reply #6 - Feb 13th, 2008 at 10:05pm
Print Post Print Post  
You're right. I pulled it out of something more complicated and didn't pull enough. Carl scores again!  Smiley
  

- Hammer
The plural of anecdote is not data.
Back to top
IP Logged
 
Carl Underwood
Senior Member
Members
*****
Offline



Posts: 1350
Location: New Hampshire
Joined: Mar 11th, 2003
Re: Looking for way to print a list of all LE's
Reply #7 - Feb 13th, 2008 at 10:18pm
Print Post Print Post  
Hammer wrote on Feb 13th, 2008 at 10:05pm:
I pulled it out of something more complicated and didn't pull enough.

Thanks. I thought that might be the case, but then wondered if there was some bigger purpose that I was missing.
  


Carl Underwood
CDU Computer Consulting LLC
Epsom, New Hampshire
Back to top
IP Logged