Archives

Archive for March, 2011

Below is a pretty useful Form Script Function that can be used to send out email.  You can trigger this by any event.  PublicSub SendEmail() Dim EmailBody AsString Dim toAddress AsNew Net.Mail.MailAddress(ThisForm.PrimaryIDOCollection .GetCurrentObjectProperty("your_email_field")) Dim FromAddress AsNew Net.Mail.MailAddress("me@company.com", "Display Name") EmailBody = "Some text:" & ThisForm.PrimaryIDOCollection.GetCurrentObjectProperty("some_property") & vbNewLine _ & "Some more stuff: " & vbNewLine […]

Mar 8th, 2011 | Filed under Development, VB .Net

When a Syteline form open in “filter in place” mode, you may want some of the fields already have frequently use value there.  For example, you may want the warehouse field has default filter value of “Main”. To do that, it is pretty simple.  In the form you want to set this up, add a […]

Mar 1st, 2011 | Filed under Development, VB .Net