Tagged Questions
The same tag has no wiki summary.
6
votes
1answer
341 views
How to support Amazon and Android Market links in same APK [closed]
Possible Duplicate:
Supporting Amazon and Android market links inside application
I was wondering if and how you could differentiate between an Amazon App Store installed app and one ...
5
votes
2answers
400 views
Why do some cross-domain JSON-requests fail but others don't?
I have a little trouble understanding the security bit around JSON, because often things that in theory should not work, seemingly do. AFAIK, calls from a script on a page that resides on domain A, ...
4
votes
2answers
1k views
Using different versions of DLL in one application
I have a Silverlight Class Library that is being used by both Silverlight application and a regular C# WCF Service.
The Silverlight application calls the WCF service to read/write some data. They ...
3
votes
2answers
153 views
Make encrypted string same length as input string?
I have a 15 digit string to encrypt.
I have tried using .NET's various encryption functions but all my encrypted strings are at least 24, 28 or 32 in length.
I have heard of CipherMode.CTS with ...
2
votes
1answer
73 views
VBA and collection - need set a instance to nothing before add to collection?
I'm trying to add an object twice with modified values for a collection but at the end of the collection contains the same values for the two items. Where am I wrong?
Private Sub MySub()
Dim ...
2
votes
1answer
86 views
Join two rows from the same table
I currently have this query set-up:
SELECT
topic.content_id,
topic.title,
image.location
FROM
mps_contents AS topic
INNER JOIN mps_contents as image
ON topic.content_id = ...
2
votes
1answer
132 views
2 UIViewController 1 View
This is a question regarding iPhone objective C design. How can I have 2 UIViewControllers manage the same view? Each UIViewController will be created at different times, but their views are ...
2
votes
0answers
785 views
Action Parameter POST .. An item with the same key has already been added
I have a little problem in ASP.NET MVC 2 FrameWork 4... Let me explain :
I have one class that contains other classes like ...
IndexViewData -> MemberViewData -> UserViewData
public class ...
2
votes
1answer
257 views
two jquery plugins use the same function name, can somehow i use them both?
I have two jQuery plugins that use the same function name (bind), can i somehow use those two plugins together?
2
votes
3answers
464 views
PHP - extract() type
PHP's extract() function can take on one of several extract_types. But what's the difference between extr_prefix_same and extr_prefix_if_exists? The manual makes it sound like, in either case, new ...
1
vote
4answers
46 views
SQL - Finding different names with the same values
For example,
In a 'Car' table you have 'Ferrari' appearing 4 times. And 'Lamborghini' and 'Ford' appearing 4 times to.
How do you make, via SQL, a command that shows all the cars in 'Car' that have ...
1
vote
0answers
50 views
Nexus One and Droid Razr have Same Qualifiers
I'm developing an app right now and I'm having trouble with two formats for my main menu. I'm trying to make my app work with as many phones as possible, yet the Nexus One and Droid Razr, as far as I ...
1
vote
2answers
82 views
jQuery calling same function multiple times with different input to the same div name
OK, so I am using a jQuery plugin called CountUp: http://blog.ogulcanorhan.com/weekend-project-jquery-countup-plugin/
The script is fairly simple:
<script type="text/javascript">
...
1
vote
0answers
50 views
Python and SWIG - Multiple modules in a single .pyd (.so)
I am writing a C++ extension for Python using SWIG. From what I understand of Python and SWIG, each module must have its own .pyd file. For example, if I have a module named 'mymodule', there should ...
1
vote
2answers
41 views
same random sorting in javascript
I have got "slides" div and "slidecontrols" div. slidecontrols div contains thumbnail and title of slides and it's displaying title and raising opacity when activate one slide.
slides and ...
1
vote
1answer
89 views
Rails ORM, can it cope with a compound Primary key of two foreign keys referencing the same table?
Edited 30th, 03:16, to show improved migration and model
I have a table of elements that can each be connected to many other elements. Is it possible to do this in Rails' migrations and models? ...
1
vote
1answer
158 views
mod_wsgi: import python modules with the same name
This is a follow-up question to import python modules with the same name, but as the two are somewhat unrelated, it's probably better to ask a new question:
I have several python projects and they ...
1
vote
2answers
150 views
How to execute more than one query at the same time in mssql
I know ; lets more than one query exicute in studio management but does anyone know how to join these queries together so they run as one. below is a basic query but I would like to run about 5 of ...
1
vote
3answers
182 views
R: remove rows with same in all columns
Input file:
y <- read.table(textConnection('
c1 c2 c3
1 a b -1
2 a b -1
3 a c 1
4 a b 1
5 a b -1
'), header=TRUE)
thus, y is
c1 c2 c3
1 a b -1
2 ...
1
vote
2answers
475 views
custom android dialog with buttons the same size
I've written my own timer picker, displayed in a custom dialog. I used TableLayout and layout_weight="1" to achieve a grid pattern containing 9 equal sized Button and EditText widgets (this part works ...
1
vote
1answer
188 views
Find Out If Two HANDLEs are Hardlinks to the Same File
(This question is a toughie... it might require knowledge of NTFS and/or the use of NT Native APIs; be warned.) :)
If I'm given two HANDLEs to two files, how can I definitively (not just with high ...
1
vote
1answer
286 views
(iphone) imageNamed when there are multiple files with same name?
as question says, How does imageNamed work when there are multiple files with the given name under the resource directory?
Is there a way to differentiate two different files with same name (but ...
1
vote
1answer
219 views
Android Threads and Audio Play on the same time
How can I play two or more audio file in android? I had created a Class which extending Thread and have a MediaPlayer. I can hear only one audio channel, but all of the threads are running and I ...
1
vote
1answer
154 views
Android : how to browse page in the same activity à la iPhone
Basically, in Android an Activity represents a screen lifecycle.
With startActivity(intent) , the app goes on a new Activity.
How to achieve "change page" in the same activity à la iPhone like ? with ...
1
vote
3answers
142 views
Using sql tables with the same name on different schemas
Does anyone know of any white papers available that discuss the use of tables with the same name existing on different schemas?
I'm implementing on SQL Server but I imagine the theory can be applied ...
1
vote
4answers
144 views
Set Multiple Variables to Same Value
I have dozens of NSStrimgs that when the app loads I want to all be set to the same set. All of them. How can I do this without typing out every single one? Is there a shortcut method?
Thanks.
1
vote
2answers
80 views
php - Can I integrate functions with same content, different names?
I have a couple of functions inside a class that essentially do the same thing:
public function fn_a(){
return __FUNCTION__;
}
public function fn_b(){
return __FUNCTION__;
}
public ...
1
vote
3answers
76 views
two controllers with same params
i have 2 actions
public ActionResult FilesAdd(int id)
{
FillParentMenuDDL(id);
return View();
}
[HttpPost]
public ActionResult FilesAdd(int id)
{
//some ...
1
vote
3answers
217 views
Django - two projects using same database?
I'm working on my honor society's website, and I'm wondering if (1.) can two websites (Django projects) point to the same database, and (2.) if that's good practice.
Background info: Currently ...
1
vote
3answers
187 views
Identical Class Member Names and Function Argument Names in C++
I have a simple object that holds some [public] data.
I want to keep my interface clean, so I don't want to pre-/post- fix anything to the names of the publically accessible variables nor to the ...
1
vote
3answers
482 views
Find values from Xml who have same Element Name
I have following xml which same child element (Filed) and I want to get value from each Child element.
Sameple XML
<root xmlns="">
<books cat="F1" ISBN="01F187597" ...
1
vote
0answers
102 views
HttpHandler accessing same session
I'm using a HttpHandler to upload an image asynchronously and need access to the SAME session as the rest of the application.
I'm using IRequiresSessionState and can read and write to the session ...
1
vote
3answers
170 views
Can i use just the mono's system data on windows?
I have a Windows WinForms app that communicates with linux's mono remoting. Is it possible that i get the mono's system.data.dll and use it on windows instead of .net's built-in.
I wanted to use ...
0
votes
3answers
20 views
MySQL Joining to Same Table with Multiple ON Conditions?
Still a mysql newb and I looked extensively through previous questions trying to find an appropriate solution.
I have two tables CaseReportsTempImport2011Q3 and FDADrugsDB, I want to do a left join ...
0
votes
0answers
8 views
Iframe content is cached
I created a webpage with two views (iFrame): Master and Detail.
When I select a row on the first view the detail should be shown in the second view (iFrame).
Iframes were created statically through ...
0
votes
1answer
20 views
Mootools: same function generates error when used on individual elements?
this is the error i get:
Uncaught TypeError: Object #<HTMLDivElement> has no method
this is the code in the domready function:
$$('.accordion_content').slide('hide');
...
0
votes
0answers
46 views
Identical Alt-key shortcuts in WPF/XAML Labels
My wpf application requires the user to fill in a form that has many text fields. Each text field has a label in front of it that provides a name for the field and a shortcut key that sets the ...
0
votes
2answers
62 views
Python: How to import, from two modules, Classes that have same names?
I'm writing a python programm to do granular syncs between different DB.
I'm using SQLAlchemy and a module named sqlautocode for DB inspecting and Schema Classes production.
Having two DB to sync, ...
0
votes
2answers
46 views
Rails 2.3.2 app and rails 3 app on the same machine
I upgraded to the latest Rails v3.1.3. And everything is fine, I'm able to run the 2.3 version of one website and the app for v3.1.3.
However I couldn't move it to a new machine, I installed all the ...
0
votes
0answers
53 views
gnuplot histograms: plot several histograms on the same plot
I currently have 4 plots on the same graph, all histograms, with histeps. (They are not clustered, ie look like normal functions plotted with histeps). I want to be able to differentiate between them ...
0
votes
4answers
53 views
Input from the execution line in the terminal in c
The problem that i have is that i have to write a hanois tower game in c and the input for the number of the rings must not be in the programm but the code must read the number of rings in the ...
0
votes
1answer
26 views
Is Three20Network thread safe?
Is Three20Network thread safe. i.e can I send multiple requests to the Three20Network framework simultaneously from different threads?
When I send the request for SAME URL from different threads ...
0
votes
3answers
49 views
sql select column when theres more than one of the same name
i have this query
select *
from alldistros t1
LEFT join origin t2 on t1.name=t2.name
LEFT join desktop t3 on t2.name=t3.name
LEFT join beginnerdistributions t4 on t3.name=t4.name
it add on all my ...
0
votes
1answer
36 views
How to make Border controls to have the same width inside a single Grid control?
I have something like this:
<MyView>
<Style TargetType="Border" x:Key="Module">
<Setter Property="BorderThickness" Value="1" />
<Setter Property="BorderBrush" ...
0
votes
2answers
52 views
JQuery animate same item twice
I'm animating an image a certain amount from one menu button. It slides out per menu button. Then there's another link that when clicked the image needs to slide out more. This isn't happening.
...
0
votes
2answers
36 views
Database synchronisation on the same sever for mysql
I need to have two databases placed on the same mysql server synchronised.
This synchronisation is not used for replication, but for statistics, and the information on the second base do not have to ...
0
votes
0answers
20 views
How to open new webpage and call a cgi at the same time on button click
we have a connect.html page in which we will get the port number and ip address of another computer. using the input data, we need to connect to the another computer and then display a tic-tac-toe ...
0
votes
1answer
28 views
Adding the same items to many-to-many relation in EF 4.0
I have two entities in my domain model:
public class Configuration : DomainEntity
{
public virtual ICollection<Hardware> Hardwares { get; set; }
public ...
0
votes
0answers
45 views
Transaction Management
If two transactions say T1 and T2, Access same record for update in DB, Exactly at the Same time.I know only one transaction succeeds and the other throw a concurrent exception in java. Could any one ...
0
votes
2answers
32 views
SQL Server 2005 statements returning the same results
Why are these two statements returning the same results? I'm looking at the total number of orders and the sum of the prices for some publications. The first statement gets records from the past 24 ...