Normal Topic viewing proprerties for many elements (Read 1092 times)
Diane Colello
Member
*
Offline


No personal text

Posts: 10
Joined: Oct 16th, 2004
viewing proprerties for many elements
Feb 27th, 2005 at 7:31pm
Print Post Print Post  
I'm trying to understand my partially built application, and would like to have a chart of all the elements on a form and what their "other" properties are: label, name, bound to, etc.
Is there a way to print this out, or even see it all at once?  I started copying the info with pen and paper, but would love a better way.
Diane
  
Back to top
AIM AIM  
IP Logged
 
Bob_Hansen
Senior Member
Members
*****
Offline


WOW, They have the Internet
on computers now!

Posts: 1861
Location: Salem, NH
Joined: Nov 24th, 2002
Re: viewing proprerties for many elements
Reply #1 - Feb 27th, 2005 at 9:05pm
Print Post Print Post  
I will have to go back to my notes, but I think that Mark did that for me in a training session last May.  It is not in the manuals I received, but my notes are currently misplaced.  He can probably reproduce here before I can locate it. 

My recollection was that not all properties could be retrieved, but many were available.  But since then many more functions have been released, so more may be available now.


  



Bob Hansen
Sesame Database Manager Professional
Sensible Solutions Inc.
Salem, NH
603-898-8223
Skype ID = sensiblesolutions
Back to top
IP Logged
 
Bharat_Naik
Senior Member
Members
*****
Offline


Ever ready to learn and
share

Posts: 1202
Location: Chicago,  Illinois
Joined: Dec 16th, 2003
Re: viewing proprerties for many elements
Reply #2 - Feb 27th, 2005 at 9:10pm
Print Post Print Post  
What you are looking for is Data dictionary, the application is available from Insidesesame for sale.

Mark also gave the code as under:

Quote:
If anyone decides they would like to take on a SBasic data dictionary function, here are the basics:

In a mass update:

var str as string
var name as string
var loop as int
var type as int

// Get a list of the elements on the form
str = @StringArrayElementList()

// Loop through them
for loop = 1 to @CountStringArray(str)

   // Get the name of the element
   name = @AccessStringArray(str, loop)

   // Set the "ThisElement" construct
   SetThisElement(name)

   // Use the "ThisElement" to get the element type
   type = @ElementType(ThisElement)

   // Print out the name and the type. This could also be visibility, position, size, color, whatever...
   WriteLn(name + " " + @str(type))
next

// Set "ThisElement" back to the calling element
UnSetThisElement()
     Logged
Mark Lasersohn
Programmer
Lantica Software, LLC

  
Back to top
 
IP Logged
 
Diane Colello
Member
*
Offline


No personal text

Posts: 10
Joined: Oct 16th, 2004
Re: viewing proprerties for many elements
Reply #3 - Mar 1st, 2005 at 1:49am
Print Post Print Post  
Cheesy  Great!  I bought Data Dictionary and it worked, just what I needed.  Thanks
  
Back to top
AIM AIM  
IP Logged
 
Infinity
Senior Member
Members
*****
Offline


Diagonally parked in a
parallel dimension

Posts: 1290
Location: Massachusetts
Joined: May 27th, 2005
Re: viewing proprerties for many elements
Reply #4 - Jan 20th, 2006 at 4:59pm
Print Post Print Post  
Quote:
Great!  I bought Data Dictionary and it worked, just what I needed.  Thanks


Is this still available?
  

**
Captain Infinity
Back to top
IP Logged
 
Hammer
YaBB Administrator
Lanticans
*****
Offline


Fire bad. Tree pretty.

Posts: 3436
Location: Ohio
Joined: Nov 22nd, 2002
Re: viewing proprerties for many elements
Reply #5 - Jan 20th, 2006 at 5:08pm
Print Post Print Post  
Quote:
Is this still available?



Yep.
http://www.insidesesame.com/4sale_dbs.asp
  

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


Diagonally parked in a
parallel dimension

Posts: 1290
Location: Massachusetts
Joined: May 27th, 2005
Re: viewing proprerties for many elements
Reply #6 - Jan 24th, 2006 at 8:28pm
Print Post Print Post  
I tried ordering this the other day but I have not received a notification that the order went through.  Who can I contact to check on it?  Thanks.
  

**
Captain Infinity
Back to top
IP Logged
 
Ray the Reaper
Global Moderator
Members
Lantica Support
*****
Offline


The One & The Only

Posts: 2482
Joined: Aug 20th, 2003
Re: viewing proprerties for many elements
Reply #7 - Jan 24th, 2006 at 8:36pm
Print Post Print Post  
You can contact Tom Marcellus at mailbox@insidesesame.com

-Ray
  

Raymond Yoxall Consulting
ray.yoxall@gmail.com
ryoxall@lantica.com
Sesame Applications, Design and Support
Back to top
IP Logged