Search found 49 matches

by samsungpower
Thu Jun 08, 2017 5:50 am
Forum: Other Issues - Ascendis Caller ID
Topic: Problem with date format.
Replies: 3
Views: 5317

Bill, actually we're going to update to a newer computer so the problem may just disappear. We would like to buy one additional phone license for our ambulance system, do you have all the information you need and do you send a link thru email for payment request or ... ?
by samsungpower
Wed Jun 07, 2017 1:33 pm
Forum: Other Issues - Ascendis Caller ID
Topic: Problem with date format.
Replies: 3
Views: 5317

Problem with date format.

Bill, with our ambulance computer we are seeing this message boxes popup when ascendis starts. (Repeat(s) of previous message suppressed) Could not set "LastGotCID" to "1899-12-30T03.30.00Z": Cannot convert RFC3339 date "1899-12-30T03.30.00Z" near "03.30.00Z" ...
by samsungpower
Tue May 16, 2017 2:49 pm
Forum: Other Issues - Ascendis Caller ID
Topic: Question about the context menu
Replies: 11
Views: 10430

Bill, :D :D :D I want to say THANK YOU again for all your time and patients for helping us out ( firefighters). It took me a little while and some reading and trial and error but got it going. I had to change the format for datetime to match the ###CallBegan### in the sever, the only thing with the ...
by samsungpower
Tue May 16, 2017 6:46 am
Forum: Other Issues - Ascendis Caller ID
Topic: Question about the context menu
Replies: 11
Views: 10430

Bill, actually this may take out some of the guess work, here's the autoit script. Don't laugh too hard and hurt yourself. I did try to clean the code up a little by using Send("{down 10}" and the shift key with delay F10 for keyboard right click but didn't always...
by samsungpower
Mon May 15, 2017 7:45 pm
Forum: Other Issues - Ascendis Caller ID
Topic: Question about the context menu
Replies: 11
Views: 10430

The external program is called free sound recorder from http://www.coolrecordedit.com/freesoundrecorder.php I was using autoit to copy "copy clicked cell" from the context menu that would select callbegan field and then open sound recorder - press F2 - display save file name box area - the...
by samsungpower
Mon May 15, 2017 6:53 pm
Forum: Other Issues - Ascendis Caller ID
Topic: Question about the context menu
Replies: 11
Views: 10430

Bill, The normal way to get caller information out of Ascendis Caller ID is to pass the information to the external program as command line arguments. So if I want to pass name, number, datetime into notepad on a single line text that's the route I will have to take? or is there a another way etc. r...
by samsungpower
Sun May 14, 2017 11:46 am
Forum: Other Issues - Ascendis Caller ID
Topic: Question about the context menu
Replies: 11
Views: 10430

Update : I quess I wasn't fully awake or a brain freeze with the code, should be something like this I think.

Code: Select all

RUN "notepad.exe" "{Name} {Number} {DateTime}";
I will check tomorrow when I'am at the office on the computer.
by samsungpower
Sun May 14, 2017 9:25 am
Forum: Other Issues - Ascendis Caller ID
Topic: Question about the context menu
Replies: 11
Views: 10430

Bill, Thank you for looking into this matter and also suggesting possible solution ideas. If normal way ( best ) is to past command line arguments to a external program then we will try to take that approach. So let me just clarify the layout process that would have to take place. First Ascendis wou...
by samsungpower
Sat May 13, 2017 2:40 pm
Forum: Other Issues - Ascendis Caller ID
Topic: Question about the context menu
Replies: 11
Views: 10430

Question about the context menu

Hi, We have been using autoit to create some little .exe scripts for things we need to be execute when a call comes in and initiated from within your program. Our current little project was to set up a voice recorder that would save the file within the web director and be link to the call history an...
by samsungpower
Wed Nov 30, 2016 12:51 pm
Forum: Other Issues - Ascendis Caller ID
Topic: Time Format
Replies: 2
Views: 5530

Thanks again and also for the link http://www.delphibasics.co.uk/RTL.asp?N ... atdatetime
this expands my options.
by samsungpower
Tue Nov 29, 2016 2:31 pm
Forum: Other Issues - Ascendis Caller ID
Topic: Time Format
Replies: 2
Views: 5530

Time Format

Hello, I been trying to figure out how to change the time output display to show in 24 hour format vs 12 hour and failing terribly and need some help. I see in the display.dwshtml file reference to the time stamp <td> <if> 0&#41; then Send&#40;StringReplace&#40;CallInfo.CallBeganTimeStr,...
by samsungpower
Sat Feb 27, 2016 11:31 am
Forum: Other Issues - Ascendis Caller ID
Topic: Modem Line "Name"
Replies: 7
Views: 11089

Solve, this works

Code: Select all

if &#40;CallInfo.Rings = 3&#41; or &#40;CallInfo.Rings = 4&#41; and &#40;CallInfo.Line = 'Ambulance'&#41;  then 
 begin 
SendMail&#40;'911' xxxxxxxx 
I reverse the order and that matters or I did a typing error.
by samsungpower
Sat Feb 27, 2016 10:29 am
Forum: Other Issues - Ascendis Caller ID
Topic: Modem Line "Name"
Replies: 7
Views: 11089

I need some help from any users on the forum. I am having trouble with the "if' statements. To simplify our system basically we have a two line phone system, one line is call Ambulance and the other is Fire, here's the code I am having trouble with. if &#40;&#40;CallInfo.Line = 'Ambulan...
by samsungpower
Mon Feb 22, 2016 11:49 am
Forum: Other Issues - Ascendis Caller ID
Topic: pushover app
Replies: 7
Views: 10545

Maybe I was close but Bill you were exact. If you add other parameters as shown at https://pushover.net/api you should only have to add another line before the "json" line: Code: ' --form-string "[parameter name]=[parameter value]"' + An add other parameters are also very useful ...
by samsungpower
Sun Feb 21, 2016 9:21 am
Forum: Other Issues - Ascendis Caller ID
Topic: pushover app
Replies: 7
Views: 10545

Bill, I been trying to figure out cURL and its language to add the ability of having custom sounds sent thru the pushover app. As far as using Pushover, I looked at their API and successfully made an action send to it by using cURL to talk to their server. ("curl is a command line tool and libr...