|
This question has been sitting unanswered on superuser.com for a while now without answer. Thinking about it, I'm wondering if it might be better asked here. What I'm looking for is how to diagnose this problem - not alternatives like VNC etc...
Original...
Started by cantabilesoftware on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Enable Remote Assistance? Probably a stupid question..
|
|
I need to provide remote assistance to the users of my app, through the Internet. I need a reference for doing this, and I need to make the whole connecting to remote desktop process as easy as clicking a menu of my app for my users.
I don't want them...
Started by TheAgent on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
A quick search should turn up a handful of possibilities; I've used many of the more popular ones and found them... .
I won't mention any names because this isn't an advertising forum .
There are many commercial tools that do make this operation effortless .
|
|
I have a long standing issue with remote assistance between a home and work PC. My wife and I both use MSN messenger and I used to be able to control her PC at home via MSN Remote Assistance. Some time ago however this stopped working and I don't know...
Started by cantabilesoftware on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at superuser):
In that case the firewall exception for Remote Assistance is turned.
As "Public" for some reason.
|
Ask your Facebook Friends
|
Hello,
I wonder how eclipse editor works to enable code assistance?
For example: XML editor for hibernate property file.
Within the editor, if I ctrl - space within a tag, a list of possible value relevant to hibernate will show up.
I understand that ...
Started by dar jeng on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I believe that the eclipse XML editor gets the content assist information from any: Remove the DOCTYPE entry at the beginning of the file and see if content assist still works..
And code templates.
|
|
I'm trying to do a sub-select and Inner Join in the same query, with little success.
The query, as it stands is below, and returning the error
The multi-part identifier "Company.LocalityId" could not be bound.
UPDATE Company SET Company.BusinessRegionId...
Started by johnc on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Your BusinessRegion and Locality tables aren't really joined at all in that query, right? Can you do something like this instead?
UPDATE Company SET BusinessRegionId = ( SELECT TOP 1 Id FROM BusinessRegion WHERE Tag = 'Australia/New South Wales') FROM... .
|
|
Any recommendations for Remote Assistance software that does not require firewall modification for clients?
To assist client with software problems and perform training, we currently use a tool called Remote Helpdesk to connect to their computers and ...
Started by LuckyLindy on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at serverfault):
(that could be used easily also for one-time-assistance).
I have tried..
Check out the form and search for remote assitance.
To be used as a remote assistance tool.
|
|
There is a feature within Windows Live Messenger v9 that allows a person to ask for remote assistance. BBut as I understand it, this works only if the router is UPnP enabled on both ends.
Today I tried this with a friend during an active chat session,...
Started by Cheeso on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at superuser):
Much to my surprise.
And Remote Assistance a few weeks ago and also ran into the same router issues.
|
|
Hi
I want to make a simple application on Windows XP with a single button which says "Help" - that will launch Windows Messenger's Remote Assistance and connect to my MSN Messenger ID - this is detailed here: ( http://www.microsoft.com/windowsxp/using...
Started by sami on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at stackoverflow):
Have a look at this article in the MSDN library:
http://msdn.microsoft.com/en-us/library/ms811079.aspx
and this article:
http://msdn.microsoft.com/en-us/library/aa359213(VS.85).aspx
Sending Keystrokes to another Application in C#
http://www.codeproject... .
|
|
I am a student in college and have an assignment which requires finding large prime numbers. I was given the following "simple" algorithm by the professor to find 2 likely prime numbers.
generate random a and p where 1 < a < p confirm that gcd(a...
Started by Alex on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I hope that it's good for you
public long tmp; public long[] tabnum = new long[1];
public void priminum(long NUM) { long Resto; long riso;
// 2 is only number pair prime tabnum[0] = 2; for (... .
Some time ago I wrote some functions in C# for personal use .
|
|
I have a jQuery based accordion style navigation that I am trying to modify.
It uses this code:
$('.interior #subContent > ul > li > a.drop').click(function(){ $(this).parent().children('ul').toggle("slow"); return false; });
I need to be able...
Started by fmz on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
$('....
Edit: I think this will give you close to what you're wanting, it is a little dry-coded so I'm not 100%, testing is advised .
If you can select an active li under the given ul, then don't shrink it .
Loop over the uls instead of mass acting on them .
|