6/17/2025 11:29:31 PM
|
|
slxdeveloper.com Community Forums |
|
|
|
The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
Forum to discuss writing script in Architect plugins for SalesLogix & general SalesLogix customization topics (for Windows client only). View the code of conduct for posting guidelines.
|
|
|
|
Time Management
Posted: 09 Apr 07 11:20 AM
|
I got tired of not being able to advance time simply like 2h for 2 hours, reminiscent of the old TeleMagic days!
Here's a little fix that I'm going to forward to SLX:
Add to OnAlarmTimeChange(Sender) routine...
dim strInterval dim intAdder Select Case LEN(dteStartTime.Text) Case 2 strInterval =mid(Sender.Text,2,1) if strInterval="y" then strInterval = "yyyy" end if if strInterval = "w" then strInterval = "ww" end if if instr(1,"dmyh",strInterval) then
intAdder=int(left(sender.text,1)) dteStartTime.DateTime = dateadd(strInterval,intAdder,now()) end if End Select |
|
|
|
You can
subscribe to receive a daily forum digest in your
user profile. View the site code
of conduct for posting guidelines.
Forum RSS Feed - Subscribe to the forum RSS feed to keep on top of the latest forum activity!
|
|
|
|
|
|
|
|