New pages
Jump to navigation
Jump to search
- 14:27, 19 August 2024 Excel (hist | edit) [212 bytes] Jkuehlthau (talk | contribs) (Created page with "=Creating and Editing Connection= As of August 2024, you must put the file path and name into the "Additional Connection String Parameters": excelfile=D:\inetpub\wwwroot\MemberEngine\InstanceName\Files\Book1.xlsx")
- 19:53, 25 July 2024 HCL Domino (hist | edit) [1,415 bytes] Jkuehlthau (talk | contribs) (Created page with "=Overview= The HCL Domino Connector is a custom written connector. =Origin= ==Connection String== This example will let you read from Lee Hogan's database: SOLN01/TAI;Mail\lhogan.nsf ==Table== If you click the dropdown, you will see many "tables" available in the database you have selected. I have never used any of these tables. You can override the Table dropdown and write your own query by starting the table field with an exclamation point, !. For example, if I wa...")
- 20:20, 11 July 2024 Sending an email via SMTP with VBScript (hist | edit) [1,159 bytes] Jkuehlthau (talk | contribs) (Created page with "<syntaxhighlight lang="visualbasic"> Sub VBScriptProcedure Set objMessage = CreateObject("CDO.Message") objMessage.Subject = "TEST SUBJECT!" objMessage.From = "trevor.walker@techadv.com" objMessage.To = "justin.kuehlthau@techadv.com" objMessage.TextBody = "Test Body" Set objConfig = objMessage.Configuration objConfig.Fields("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 objConfig.Fields("http://schemas.microsoft.com/c...")
- 20:25, 24 May 2024 Using C (hist | edit) [26,635 bytes] Jkuehlthau (talk | contribs) (Created page with "You can create Global Functions to use in your mappings by adding the functions to your "C# Global" code. To edit Global code, click the globe in the upper right corner of the mapping screen and select "C# Global". At the top, be sure to include your "using" statements and create any global variables you want to use. After that, create your functions and classes. The following Global Code will help you to parse names and convert state names to state abbreviations. <...")