0
votes
0answers
1 views
Windows 7 folder sharing API
I wonder if it's possible to programmaticaly share folders in Windows 7 while running in restricted logon session:
1) NetShareAdd returns ERROR_ACCESS_DENIED.
2) Command line net share says the same.
…
0
votes
0answers
1 views
cities and distance by latitute-longitude
I have a table with:
city
latitude
longitude
And I need a sql query to know all cities are 100 miles from new york.
Could anyone help me before I go crazy ?
0
votes
0answers
0 views
Silverlight 3 Business application : How to pass query string from Mainpage to About Page?
Main page consists of a listbox, frame and few hyperlinks. On clicking hyperlink, appropriate page is loaded in the frame.
How can I pass the selected item value of the listbox on Main page to page …
0
votes
0answers
2 views
SQL Query to Linq GroupBy and Max
Here is a SQL query that I am trying to convert in to Linq. I am using a generic list of objects and not a DataTable if that is relevant.
Select Max(Date), ID, Property1, Peroperty2 From List Group …
0
votes
0answers
1 views
Starting eclipse in Tomcat - Debug Mode - Timeout Error
I get the following timeout error when trying to start tomcat in eclipse.
Timeout waiting for Tomcat v5.5 Server at localhost to start. Server did not start after 45s.
Does anyone know hot to set …
0
votes
3answers
10 views
Jquery , selecting icefaces elements by ID
With jQuery, we do it like this:
$(document).ready(function() {
$("#orderedlist").append("Please rate: ");
});
and de string appended to component with id orderedlist.
Using icefaces …
0
votes
0answers
2 views
What to cast a Process class (sender) thread to…in event handler…
For instance, a thread that is a BackgroundWorker, can be cast like:
private void worker_DoWork(object sender, DoWorkEventArgs e)
{
System.ComponentModel.BackgroundWorker …
4
votes
3answers
52 views
Most efficient way to find the greatest of three ints
(pseudo code)
function highest(i, j, k)
{
if(i > j && i > k)
{
return i;
}
else if (j > k)
{
return j;
}
else
{
return k;
}
}
I think that works, but …
0
votes
0answers
1 views
Liquid Templates Not Parsing!
Im trying to use Liquid Template Language in my Rails Application, i've watched Ryan Bates' video over at rails cast, i pretty much follow the instructions but it just doesnt seem to work!
When i try …
0
votes
2answers
13 views
record mouse movements, clicks and keyboard input with Java or C++
I want to be able to record mouse movements, clicks and keyboard input from a user. It would be great if it was a cross platform solution.
I'd like to get back something like this (pseudo code):
…
1
vote
1answer
6 views
Targeting multiple WCF endpoints with one DLL
Good afternoon,
I am writing a DLL that that leverages WCF to make a web services call. Normally this is fairly straightforward: I configure the endpoint in the .config file and be done with it. …
2
votes
2answers
14 views
Stop fadeTo() in jquery
I used
$(document).ready(function() {
$("#main ul li").hover(function(){
var fade = $('img.g-img', this);
fade.fadeTo('slow', 0.5);
$("#main ul li").removeClass("active");
…
0
votes
2answers
19 views
Two classes and inline functions
I have two classes and both of them uses some of the other class, on example:
// class1.h
class Class1;
#include "class2.h"
class Class1 {
public:
static Class2 *C2;
...
};
// class2.h
class …
0
votes
0answers
3 views
CodeIgniter Image Manipulation (Resize & Watermark)
I'm hoping someone can help me. I'm trying to upload an image via a form, resize it to 600px, create a 100px thumbnail and then add a watermark image to the 600px version, but the code below is just …
0
votes
1answer
5 views
Iphone — push a view controller onto the navigation stack when a button is clicked in a UITableViewCell
When a button is pushed in one of my app's table view cells, I need to push a certain view controller onto the navigation stack.
This could be done by using an instance of NSNotification to inform …
