Tagged Questions
The existing tag has no wiki summary.
9
votes
5answers
4k views
NetBeans doesnt open project from existing sources
I've installed NetBeans 6.9.1 and installed few updates for it (Help -> Check for Updates).
Then i've created a new project from existing sources. After few changes i've closed it. And now i am ...
4
votes
3answers
184 views
How can I convert existing users into a OpenID
Would this be a smart thing to do? I don't want to alienate my users, but having multiple ways to sign in to the site kind of defeats the purpose of having an OpenID implementation. This isn't a ...
2
votes
2answers
39 views
SQL UPDATE statement to update a column based on another existing row
Basically I have a table that has similar format to the below table.
What I want to do is update Col4 based on this logic
if Col2 is null then update Col4 with Col3
if Col2 is not null then find ...
2
votes
3answers
113 views
Name of the Control doesn't exist even if it does
I'm getting an error where chkBox1 does not exist in the current context, anyone has a solution to this?
Here is the XAML:
<ListBox ItemsSource="{Binding Files}" Margin="0,42,0,115" ...
2
votes
2answers
313 views
Entity Framework Model first, dont generate db but map to existing tables
We'd like to use model first to generate clean EF models for our application but instead of having the model generate a new db schema we'd like to then manually do a table mapping within the entity to ...
2
votes
2answers
2k views
Adding UINavigationController to existing UIViewController
How do I add an existing UIViewController (which is presented using presentModalViewController) to a UINavigationController?
When user tap on button, a new copy of my detail view need to be pushed. ...
2
votes
1answer
403 views
django adding a ManyToMany field/table to existing schema, related_name error
I have an existing project with models (Users and Books). I would like to add a ManyToMany(M2M) field to the existing model Books, but the syncbb command does not do this.
Details: Books already has ...
2
votes
4answers
962 views
Adding an existing implementation file to an Xcode project won't work
As I write most of my code using MacVIM, I need to add the new files to the Xcode project in order to compile them into the executable. Today however I encoutered an implementation file (.m) wich ...
2
votes
2answers
752 views
CakePHP - how to apply translate behavior to existing database?
I have and existing application in CakePHP with a database.
The task is to apply translate behavior to its models. The problem is that i18n.php script just creates _i18n table but doesn't copy ...
1
vote
1answer
35 views
How to turn an existing, non-empty directory into a git branch of an existing non-empty git repo living in another directory
I have two directories, A & B, which differ very little in their content. A is already init'd into a git repo and has a number of local commits to its master branch. Directory B is not under SCM ...
1
vote
1answer
70 views
Apache mod_rewrite does not honor existing files with -f -and -d
I'd like to redirect URLs for which no files or directories exists, with the aim to implement a cache. The configuration (in httpd.conf, not .htaccess) looks like this:
<Directory ...
1
vote
4answers
70 views
Checking for existing URLs before being added to database
I'm trying to test if for existing URLs in a user form field and need a little guidance. I am a placement student and told the place I'm working for I'm not great with PHP and here I am working with ...
1
vote
2answers
126 views
Using hibernate3 with existing tables
How can I configure Hibernate so it maps beans to some existing tables?
P.S: Each table should correspond with an entity.
Edit: Here is how I used Hibernate with autogenerated tables (taken from a ...
1
vote
2answers
476 views
Exposing existing API as a Web service
I am currently working on a task to expose an API as a Web service. The idea here is to package the existing business logic in JAR files into a WAR file and expose the WAR file as a Web service that ...
1
vote
1answer
206 views
target form to specific browser tab
Is there a cross-browser compatible way to post a form in one tab of the browser to another (which I know is open and is of the same domain)?
I tried window.name='some_name'; and target='some_name' ...
1
vote
2answers
1k views
How to add an existing sub-folder (with/without child files/folders) to the solution?
The folder resides within my solution physical location but I can not find a command to add existing folder to the project from right-clicking. All I can see is "Add existing files". Trying to create ...
1
vote
3answers
83 views
Ideas for Organising very specific Custom Content in wordpress
I am already very confused as I am typing this thread out. Please forgive me if my query is a little too difficult to understand.
I have an existing Real Estate Site that I intend to move 100% into ...
1
vote
1answer
193 views
Python with Netbeans 6.5
Can you give me some links or explain how to configure an existing python project onto Netbeans?
I'm trying it these days and it continues to crash also code navigation doesn't work well and I've ...
0
votes
1answer
10 views
Write log4j output to existing file
Is possible to append log4j output to an existing file? For example, defining a FileAppender log file, can we specify a log file that is already in use by other process for its logging, so the log4j ...
0
votes
0answers
8 views
.NET Entity Framework. How to do One to One relationship with several join tables in between in existing database using Fluent API
With a legacy database (and strict orders not to modify it) and using Entity framework I have the following:
MODELS
public class EntityObjectA
{
public Guid Id { get; set; }
public string ...
0
votes
1answer
30 views
Django create if doesn't exist
I have a Django application that reads data from a web API and puts it in a database.
Is there a way to create a new object from a mode but prevent the duplicate exception if the object already ...
0
votes
1answer
54 views
Adding a new field to existing Crystal report from a new table not already in the report
I have a existing crystal report with a query and a few tables already selected and some fields from those tables on the report.
Now I want to add a new field (p.price) on the same report, from a ...
0
votes
1answer
36 views
oracle sql: insert spatial data from more existing table
I have created a table umriss which I filled with data and I still need to insert the geometry data from existing tables (usrdemo.glets_1850, usrdemo.glets_1973, ...). How does that work?
umriss is a ...
0
votes
0answers
49 views
Calls to window.open with the same window name as an already existing window open multiple tabs in IE9
I have a web application, in each HTML page there is such a piece of code:
window.open("http://mydomain.com/reminder.php","wall_remind");
Intention here is to have 2 browser windows/tabs - one for ...
0
votes
1answer
28 views
Add All Existing Projects Within Directory
I realize that this is not the best practices for working on individual projects. However, I had a rather large code base I am attempting to refactor, and would like to know if a change I make has ...
0
votes
1answer
46 views
How can I access an existing flash shared object?
I am trying to access a flash shared object using sharedObject.getLocal("sharedObjectName");
But, it always creates a new object and doesn't locate the existing object, then I searched the location ...
0
votes
0answers
166 views
Android: Add number to existing contact
I have a question. I was searching weeks for any way to add a number to an existing contact with a custom label. I tried many things but nothing worked, some "solutions" even destroyed my database and ...
0
votes
0answers
71 views
makefile project with existing codes, run succefully via terminal, but error in eclipse Helios
friends, I encounter a problem in eclipse, I can not figure it out. I am using ubuntu 64 and eclipse Helios.
I have some source codes and makefile already, by running the makefile, executable file is ...
0
votes
0answers
33 views
How to check if a process is running, and if so, using the same process to read another file supported by that process
I need to ensure that everytime a particular type of file (ex. .doc file) is launched, the system should check for the relevant process (ex. WINWORD.EXE), if it is already running. And if the system ...
0
votes
3answers
60 views
Which is faster to find repetitions?
I have a table with 1 column and I want to check repetition of a value between 10,000 available rows.
I think I have two choices:
Make a query using SELECT statement, like this :
Var = ...
0
votes
4answers
245 views
Adding row to relational table - linq to sql
I have 3 primary Tables - Picture, Album and Collage. Collage and Album can have 1-many pictures. Pictures do not have to be in Album to be added to the Collage.
To define their relationship, I ...
0
votes
5answers
51 views
Modifying existing Django site
I am completely new to this Django world. I haven't tried it ever before.
Now the problem is as below;
One of my clients was hosting his site somewhere else that I don't know and they built the ...
0
votes
1answer
58 views
create new project from an existing one in Eclipse, yet another question on the subject
First of all I did search on Stackoverflow, Google and everywhere I could think of. Still I have no solution for the problem. So sorry if this is question number 1000 on the same subject, but none of ...
0
votes
0answers
127 views
C# Integrating chat system into existing project
I asked a few weeks ago about chat options, and have since found a good one with the source code available for download. I am still, however, unsure of how to integrate the functionality into the ...
0
votes
1answer
782 views
Create a batch to open new URL in existing Internet Explorer window
How can i Create a batch (.bat,vbs,js) that can be run from command line in windows to open new URL in existing Internet Explorer window
0
votes
1answer
129 views
Existing Database for Nutrition Facts?
I'm developing an ecommerce store using MVC and it will feature various health food products. We would like to display the Nutrition Facts label for each product, and am wondering if there is an ...
0
votes
2answers
154 views
Which web service stack allows binding wsdl first web service to existing classes in Java?
Greetings,
I have a complicated scenario to handle. I have a wsdl file which uses a particular XML schema.
The XML schema is actually a handcrafted implementation of a specification. There is also a ...
0
votes
2answers
5k views
jquery how to find if div with specific id exists
I've got a function that appends a div to an element on click. The function gets the text of the clicked element and assigns it to a variable called 'name'. That variable is then used as the div id ...
0
votes
4answers
87 views
limiting sql server constraint checks to only new data
I need to import a lot of data into a sql server database. Some of this data was imported from long ago and much of it does not maintain referential integrity but I want all new data to. I can turn ...
0
votes
3answers
285 views
Using an existing database of another Rails application in a new Rails application
I'm new to Rails. I had created a Rails application earlier and also collected a few data records in the development database. Suppose, I create a new Rails application and I prefer to use the ...
-1
votes
1answer
56 views
MVVM Silverlight - can not assign existing control to a property of collection of custom elements in XAML
I have a class
public class Item
{
public string A { get; set; }
public Control B { get; set; }
}
I'm using MVVM with Silverlight. I have a custom view that is inherited ...
-2
votes
1answer
115 views
how to do a game that is simulated by a loop [closed]
how to do program a game that is simulated by a loop in which people has to repeat goes for as long as it takes to get out that it reach or pass square 80? I am doing a snake & ladder game and ...