How do I change who is logged in (allow for another user to login) to an application that is using Windows Authentication without having the PC user log off?
I have just created my first website and am having a problem since adding an iframe to the front page. My home page used to be centered but now it aligns on the left in IE.
It displays fine in Firefox, Safari, Opera etc
http://www.bignoisechorus.co.uk/home
Any ideas?
I have a mysql table of 3 integer fields. None of the fields have a unique value - but the three of them combined are unique.
When I query this table, I only search by the first field.
Which approach is recommended for indexing such table?
Having a multiple-field primary key on the 3 fields, or setting an index on the first field, which is not unique?
Thanks,
Doori Bar
I'm having trouble trying to find a way to guide a user from one point on a map to another. I can add the locations I want to the overlay.
I want the user to be able to pick a location and be guided through the streets to that location.
Does anyone know how to do this, or is it even available in the api?
Hello,
I am having a webView loaded with HTML string. I am typing a word in textfield and Pressing SEARCH button. My requirement is that the typed word should be highlited where it occours similar to FIND functionality in MSOffice. How to implement this ?? Pl. help me to solve.
Using HttpClient 4.0, Im having an issue where the response I get from the ResponseHandler is only about half of what the actual page content should be (~61k bytes in the string vs ~125k in the page returned to a browser). I cant seem to find any place where there might be some sort of limit that would limit this. Any ideas?
Hi everyone,
I am having little bit problem in importing classes in python. My work flow goes like this
-index.py
---class template:
------def header():
------def body():
------def footer():
-display.py
I want to call function header(), body() and footer () in my display.py page. Will anyone make me clear about this issue in python. Thanks for your concern.
i have a table like this:
1 x y
2 a
3 b
4 c d e
i want to use a sql statement to turn it into this:
1 x
1 y
2 a
3 b
4 c
4 d
4 e
i am having trouble building the sql statement. please help!
I'm loading data from my database and I'm doing a sum calculation with a group by.
ElectricityReading.sum(:electricity_value, :group => "electricity_timestamp", :having => ["electricity_timestamp = '2010-02-14 23:30:00'"])
My data sets are extremely large, 100k upwards so I was wondering if its possible to use the find_each to batch this to help with memory overhead.
I can write the batching manually use limit and offset I guess but I'd like to avoid that if the code already exists.
OK so here's my code: http://www.so.pastebin.com/Qca4ERmy
I am trying to use buffers so the applet won't flicker upon redraw() but it seems I am having trouble. The applet still flickers....
Help?
Thank you.
I have a json response coming and i need to get all the values whose keys are a particular string... for e.g : www_name, www_age etc are coming in the nsmutabledictionary as keys now i want to search all those values having "www_" as their part of the string.
I'm in search for a library that will let me work with web pages using C# without having to display anything graphically. The library should handle web sites that use JavaScript / AJAX and it should return the correct HTML as if I were viewing the source from within Firefox/Chrome.
If there is any information I left out, let me know.
I'm witting an application based on a server and various client but I'm having a problem with the send command.
Whenever I do ctrl+c on the client side the send operation kills the thread which is in and the process running (in order to have multiple clients I set a thread to which one).
If the client ends (doing the close socket) properly the server doesn't die, but when I use the ctrl+c combination on the client both exit.
What can I do to prevent send commando to have this behavior?
Thx in advance
I have an input field whose name is an MD5 string e.g.:
<input type="hidden" name="7815696ecbf1c96e6894b779456d330e" value="1">
Now I understand that having a number as the first letter in an input field name is generally bad practice, but are there any side-effects to this such as a certain browser won't send it in the POST request?
Hi,
I want to convert some of our internal API into a spring bean that we can use in other projects. This API needs some instantiation and other logic which I want to encapsulate in this bean so that we can just put the bean into our app context with necessary propoerties alone.
I remember having read an article on this somewhere in the past - but cant find it now.
Any pointers to something similar will be helpful
I'm struggling to find a tag selection UI for a rails app. Ideally it would be something like the selection here on Stackoverflow, or on Delicious or Digg.
I want users to be able to select multiple tags with a single click. We're already using jQuery, so it makes sense to use something that takes advantage of that. I've used the selection ui in jQuery and I'm not thrilled about having users need to hold down ctrl to select multiple tags.
I am having string called '200_CFL_2010'. I wish to get the characters between _'s. I want the output as 'CFL'. I have to achieve it through SQL. Any idea please?
I want to fade in a background of an entry within a div - this is to show the user what the most recent entry is on page load.
I want it to do it on page load, without having to click or hover or anything, just when the page loads.
I have this:
$(document).ready(function() {
$('#box').fadeIn(5000, function() {
// Animation complete
});
});
Is it something like pageLoad?
Any help is appreciated.
I having a website developed in .net and need to get a HTML to PDF converter.
Are there any open source or alternatives to http://www.html-to-pdf.net as it is quiet expensive.
In many prototype scripting cases, it's easier to just stick every form item (such as an input or textarea) in its own form tag. Is there anything wrong that could happen from having lots (like 1000) form tags in a page?
I'm trying to do something quite simple, but I'm having a hard time finding good examples on the net to what I want specifically.
I'd like to somehing very similer to what it's here:
Dao
It's a simple game called DAO and I just need to have a background image with 16 squares (4x4) and drag and drop the images (pieces) on each square to the others. I'm developing the interface using swing and I simply want to know a good place to find tutorials for such implementations or a simple suggestion on how to do it.
Thanks in advance
I'm having a problem with IE7 when clicking on images that open up using the Lightbox 2 javascript image viewer. Instead of overlaying the image on the current page it opens the image into a separate page.
Not sure if this is an AJAX problem possibly ?
Works fine in Firefox.
Anybody else come across this before ?
I'm having some difficulties with this problem.
The main idea is, I initialized a variable of class type B in class A, class A.h has the variable Z declared as public, like B *Z;
In class A.cpp, I initialized it as Z = new B();
Now, I want to access that variable from class C and I'm unable to do so. C.h includes A.h and B.h
it seems like i have begin rescue end statements everywhere in my code. this doesn't seem like the correct thing to do. i am learning process, can anyone suggest how can i catch any exceptions without having to place everything inside begin,rescue, end.
anyway to just tell ruby to shut up and just keep going even if exception is raised ?