Click here to Skip to main content
15,896,557 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Gimme a break...This worked on Friday... Pin
glennPattonWork328-May-18 22:44
professionalglennPattonWork328-May-18 22:44 
GeneralRe: Gimme a break...This worked on Friday... Pin
dan!sh 28-May-18 22:46
professional dan!sh 28-May-18 22:46 
GeneralRe: Gimme a break...This worked on Friday... Pin
Eddy Vluggen28-May-18 23:35
professionalEddy Vluggen28-May-18 23:35 
GeneralWeird behavior with copied directory tree Pin
swampwiz28-May-18 16:32
swampwiz28-May-18 16:32 
AnswerRe: Weird behavior with copied directory tree Pin
User 742933828-May-18 18:05
professionalUser 742933828-May-18 18:05 
GeneralRe: Weird behavior with copied directory tree Pin
lopatir28-May-18 18:11
lopatir28-May-18 18:11 
Questioncall from the PC using my cell phone? Pin
Joan M28-May-18 8:01
professionalJoan M28-May-18 8:01 
AnswerRe: call from the PC using my cell phone? Pin
Ravi Bhavnani28-May-18 9:48
professionalRavi Bhavnani28-May-18 9:48 
Here's what I would do:
  1. Ensure your PC and Samsung phone are on the same corporate network.
  2. Identify a shared folder (e.g. \\joanPC\numbersToCall\) drive to which your PC has write access and your phone has read access.
  3. Write a hook in your CRM so that clicking a phone number link creates a text file with the phone number in this folder.
  4. Write an Android app that runs on your phone that periodically polls this folder for phone number files.  If it finds any (and the phone is not currently in use), it reads the phone number from the file and dials the number, e.g:
    Uri number = Uri.parse("tel:123456789");
    Intent callIntent = new Intent(Intent.ACTION_DIAL, number);
    startActivity(callIntent);
  5. Post an article on CodeProject explaining how you did this. Smile | :)
/ravi
My new year resolution: 2048 x 1536
Home | Articles | My .NET bits | Freeware
ravib(at)ravib(dot)com

GeneralRe: call from the PC using my cell phone? Pin
Joan M28-May-18 10:07
professionalJoan M28-May-18 10:07 
GeneralRe: call from the PC using my cell phone? Pin
Ravi Bhavnani28-May-18 19:00
professionalRavi Bhavnani28-May-18 19:00 
GeneralRe: call from the PC using my cell phone? Pin
Jörgen Andersson28-May-18 10:55
professionalJörgen Andersson28-May-18 10:55 
GeneralRe: call from the PC using my cell phone? Pin
W Balboos, GHB29-May-18 6:20
W Balboos, GHB29-May-18 6:20 
AnswerRe: call from the PC using my cell phone? Pin
abmv28-May-18 18:13
professionalabmv28-May-18 18:13 
AnswerRe: call from the PC using my cell phone? Pin
dan!sh 28-May-18 19:05
professional dan!sh 28-May-18 19:05 
AnswerRe: call from the PC using my cell phone? Pin
Chris Maunder29-May-18 4:29
cofounderChris Maunder29-May-18 4:29 
AnswerRe: call from the PC using my cell phone? Pin
David O'Neil29-May-18 8:14
professionalDavid O'Neil29-May-18 8:14 
GeneralWhat is the best FREE set of anti-virus apps for the latest update of Windows 10? Pin
swampwiz28-May-18 5:57
swampwiz28-May-18 5:57 
GeneralRe: What is the best FREE set of anti-virus apps for the latest update of Windows 10? Pin
lopatir28-May-18 6:21
lopatir28-May-18 6:21 
GeneralRe: What is the best FREE set of anti-virus apps for the latest update of Windows 10? Pin
Rage28-May-18 6:21
professionalRage28-May-18 6:21 
GeneralRe: What is the best FREE set of anti-virus apps for the latest update of Windows 10? Pin
kalberts29-May-18 15:02
kalberts29-May-18 15:02 
GeneralRe: What is the best FREE set of anti-virus apps for the latest update of Windows 10? Pin
GuyThiebaut28-May-18 6:40
professionalGuyThiebaut28-May-18 6:40 
GeneralRe: What is the best FREE set of anti-virus apps for the latest update of Windows 10? Pin
dandy7228-May-18 8:44
dandy7228-May-18 8:44 
GeneralRe: What is the best FREE set of anti-virus apps for the latest update of Windows 10? Pin
Eddy Vluggen28-May-18 23:43
professionalEddy Vluggen28-May-18 23:43 
GeneralThought of the Day Pin
OriginalGriff28-May-18 4:59
mveOriginalGriff28-May-18 4:59 
GeneralRe: Thought of the Day Pin
R. Giskard Reventlov28-May-18 5:39
R. Giskard Reventlov28-May-18 5:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.