Page Index Toggle Pages: 1 ... 3 4 [5] 6 7 ... 9 Send Topic Send Topic Print Print
Very Hot Topic (More than 25 Replies) Sesame 3 (Read 59369 times)
Hammer
YaBB Administrator
Lanticans
*****
Offline


Fire bad. Tree pretty.

Posts: 3436
Location: Ohio
Joined: Nov 22nd, 2002
Re: Sesame 3
Reply #60 - Oct 20th, 2011 at 4:07pm
Print Post Print Post  
Sam wrote on Oct 20th, 2011 at 12:59am:
Just wondering if there will a way to do exports or reports that are xml.  We currently use csv but have been asked by our clients to supply data in xml format.

You can already do this in Sesame 2. XML is just ASCII formatted a particular way. You can use the File I/O commands to write out whatever XML you need.
  

- Hammer
The plural of anecdote is not data.
Back to top
IP Logged
 
Hammer
YaBB Administrator
Lanticans
*****
Offline


Fire bad. Tree pretty.

Posts: 3436
Location: Ohio
Joined: Nov 22nd, 2002
Re: Sesame 3
Reply #61 - Oct 21st, 2011 at 5:11pm
Print Post Print Post  
Sesame 3 - Breaking News
In Sesame 3, you can now increment/decrement number, money, date and time values using < and >.
  

- Hammer
The plural of anecdote is not data.
Back to top
IP Logged
 
Hammer
YaBB Administrator
Lanticans
*****
Offline


Fire bad. Tree pretty.

Posts: 3436
Location: Ohio
Joined: Nov 22nd, 2002
Re: Sesame 3
Reply #62 - Oct 21st, 2011 at 5:18pm
Print Post Print Post  
Sesame 3 - Breaking News
Sesame 3 now has Replacement Macros. This lets you define blocks of text for yourself that you can insert into fields at will without requiring any programming. This includes commonly used notes, standard blocks of text for documents, etc. If I save "The quick brown fox jumps over the lazy dog." as replacement macro "QBF," all I have to do is type "QBF%" into a field to insert that chunk of text. Now, since some of you folks are advanced users, I'll also point out that you can include @Eval macros (another cool new feature) in the replacement text that lets you include calculated values, run SBasic, etc. For example, if I add this line to my sesame_replacement_macros.txt file:
#define EVL=The full name is @eval{=(First + " " + Last)} ... then I can type EVL% in a field in a Customers record to calculate the full name.
  

- Hammer
The plural of anecdote is not data.
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: Sesame 3
Reply #63 - Oct 21st, 2011 at 5:55pm
Print Post Print Post  
Quote:
In Sesame 3, you can now increment/decrement number, money, date and time values using < and >.


How do we use that? In Sdesigner as property of Element? Increment in time in minutes or seconds?
  
Back to top
 
IP Logged
 
Hammer
YaBB Administrator
Lanticans
*****
Offline


Fire bad. Tree pretty.

Posts: 3436
Location: Ohio
Joined: Nov 22nd, 2002
Re: Sesame 3
Reply #64 - Oct 21st, 2011 at 6:07pm
Print Post Print Post  
Bharat_Naik wrote on Oct 21st, 2011 at 5:55pm:
Quote:
In Sesame 3, you can now increment/decrement number, money, date and time values using < and >.


How do we use that? In Sdesigner as property of Element? Increment in time in minutes or seconds?


It is used in Runtime, not SDesigner. You highlight the value and type < or > to change the value. You can change the increment for time values between minutes or hours based on whether you type < or Alt+<. Same with > and Alt+>.
  

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



Posts: 123
Location: New York City
Joined: Jan 23rd, 2008
Re: Sesame 3
Reply #65 - Oct 27th, 2011 at 12:18pm
Print Post Print Post  
Hammer wrote on Oct 13th, 2011 at 7:04pm:
Sesame 3 - Breaking News
In Sesame 3, SBasic now lets you group a list of elements and refer to that list by the group name. Anything you do to the group will be done to each element in the group. For example:
Code
Select All
// Group the Company, Add1, and First elements
GroupElements("Test", Company, Add1, First)
Color(@("Test"), 2, 1) // Color each of the elements in the group 



You can also map a list of values to the elements in the group with one line of code.
Code
Select All
//Places "one" in Company, "two" in Add1, and "three" in First
MapValues(@("Test"), "one;two;three") 



That's a great feature... will really make it much easier to great dynamic forms. Can't wait to get Sesame3.
  
Back to top
IP Logged
 
Hammer
YaBB Administrator
Lanticans
*****
Offline


Fire bad. Tree pretty.

Posts: 3436
Location: Ohio
Joined: Nov 22nd, 2002
Re: Sesame 3 - HTML Viewer
Reply #66 - Nov 4th, 2011 at 7:13pm
Print Post Print Post  
Sesame 3 now has an HTML View Window. This is like the WriteLn window, but it can render simple HTML, including images and tables. If you need to display formatted output, this new feature is a great way to do it.
  

htmlview.png ( 126 KB | 78 Downloads )
htmlview.png

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


No personal text

Posts: 893
Location: San Antonio
Joined: Feb 21st, 2004
Re: Sesame 3
Reply #67 - Nov 4th, 2011 at 7:17pm
Print Post Print Post  
Smiley That is great! Thank you.
  
Back to top
IP Logged
 
Hammer
YaBB Administrator
Lanticans
*****
Offline


Fire bad. Tree pretty.

Posts: 3436
Location: Ohio
Joined: Nov 22nd, 2002
Re: Sesame 3
Reply #68 - Nov 7th, 2011 at 2:36pm
Print Post Print Post  
Another note about the HTML View window: You can have clickable links in it that run SBasic. So, you can include links in the HTML that post values, add records, run reports, send emails, or do anything else you can do in SBasic.
  

- Hammer
The plural of anecdote is not data.
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: Sesame 3
Reply #69 - Nov 7th, 2011 at 3:40pm
Print Post Print Post  
This Sesame HTML viewer is very cool. I was just thinking about this while parsing HL7 (format used to exchange data, more like CSV), how to present data to user and giving them option to do in the form of clickable link. Looking forward to working with this.
  
Back to top
 
IP Logged
 
Steve_in_Texas
Senior Member
*****
Offline


No personal text

Posts: 893
Location: San Antonio
Joined: Feb 21st, 2004
Re: Sesame 3
Reply #70 - Nov 7th, 2011 at 3:56pm
Print Post Print Post  
Erika,

The HTML window really made my weekend. Can't thank you enough! And now, it sounds like it's even BETTER than I thought?

Are you saying that we can have a link that, when clicked, can 'jump' the user to a selected record (or set of records)?
  
Back to top
IP Logged
 
Hammer
YaBB Administrator
Lanticans
*****
Offline


Fire bad. Tree pretty.

Posts: 3436
Location: Ohio
Joined: Nov 22nd, 2002
Re: Sesame 3
Reply #71 - Nov 7th, 2011 at 5:04pm
Print Post Print Post  
Steve_in_Texas wrote on Nov 7th, 2011 at 3:56pm:
Are you saying that we can have a link that, when clicked, can 'jump' the user to a selected record (or set of records)?

Yep. The example I was working with allowed the user to click on the origin of one of the Gem Types, like Brazil, and open the Gems subform standalone with all the Gems from Brazil retrieved. Plus, it's non-modal, so it can stay up until you're done with it like the WriteLn window does.
  

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


No personal text

Posts: 893
Location: San Antonio
Joined: Feb 21st, 2004
Re: Sesame 3
Reply #72 - Nov 7th, 2011 at 5:07pm
Print Post Print Post  
ABSOLUTELY PHENOMENAL! Sounds like it will enable all kinds of possibilities.
  
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: Sesame 3
Reply #73 - Nov 7th, 2011 at 5:18pm
Print Post Print Post  
I cannot help asking when is Sesame 3 expected to be released?
  
Back to top
 
IP Logged
 
Acebanner
Full Member
***
Offline



Posts: 123
Location: New York City
Joined: Jan 23rd, 2008
Re: Sesame 3
Reply #74 - Nov 10th, 2011 at 1:09pm
Print Post Print Post  
Bharat_Naik wrote on Nov 7th, 2011 at 3:40pm:
This Sesame HTML viewer is very cool. I was just thinking about this while parsing HL7 (format used to exchange data, more like CSV), how to present data to user and giving them option to do in the form of clickable link. Looking forward to working with this.


I use the WriteLn window to display a lot of information, so this will be very useful. I have to ask, when is Sesame v3.0 due to be released? No more toying with our emotions! Is there a beta program?
  
Back to top
IP Logged
 
Page Index Toggle Pages: 1 ... 3 4 [5] 6 7 ... 9
Send Topic Send Topic Print Print