The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
16 views

How to set window position in VB when window is not visible?

Usually I write in C#, but today im fighting with VB. I have code like this: FormTest.Left = 1000 If FormTest.Visible Then FormTest.BringToFront() Else FormTest.Show() End If It doesn't ...
1
vote
2answers
55 views

how *return implicitly return a reference

this is a const ptr to the object/instance which a member function receive implicitly, so how does return *this returns a reference ? As of what I know , a pointer dereferencing to a variable means ...
2
votes
1answer
16 views

Subversion Edge SVN two instance on CentOs

I have installed and configured Subversion Edge 3.3.2 (Linux 64-bit) on CentOs ( 64-bit ). And its working good. And I have two doubts Can we create two instances of SVN on same server I did ...
0
votes
3answers
47 views

Using classes and instances in Object oriented programming [closed]

Hi I am searching through the net and got stuck on a big question where I can't find the answer so I'm wondering if someone here can help me. In object-oriented programming concepts class and ...
0
votes
0answers
38 views

Querying performance counters with parentheses

I have some performance counters I would like to query which happen to have parentheses as part of the name of the counter. I have 2 performance counters categories/sets for a given service: global ...
1
vote
2answers
22 views

What determines how fast an instance can be started/stopped on GCE?

What determines how fast an instance goes into the running state from the time the api call is made to start an instance? Are any of the following factors is startup and shutdown times: - instance ...
0
votes
2answers
54 views

Is an “object” a synonym for “an instance of the class” in python?

I started learning Python and got stuck at classes (with no prior programming background or knowledge). Is an "object" a synonym for "an instance of the class"? Thank you.
0
votes
0answers
20 views

Tomcat instances & Share loader

I have (I think correctly) setted up two instance of tomcat on a single server using this documentation : ...
0
votes
1answer
43 views

Instance count violation in an Android Java app

I am working on an Android application. In abstract, this application has an UI in order to interact with user and it also interacts with a remote service. The remote service adds a notification to ...
0
votes
2answers
33 views

Ruby on Rails merge several objects into one

I have following problem: I have a Class named Foo and some instances of this Class like this: @foo1 @foo2 @foo3 Each of these instances has an attribute called :description with a text in it like ...
0
votes
0answers
24 views

Why google shuts down my residents instance even the minimum idling instance set to 1

I've just started playing with GAE. Today I just noticed that GAE shuts down my residents instance even the minimum idling instance set to 1, which causes a cold-start for the next request. So here ...
3
votes
1answer
46 views

Assigning values to a referenced instance

I am an intermediate Java beginner and also completely new to stack overflow. (This is my first post.) I have a question about the following code and the assignment of values to a reference. First, ...
0
votes
1answer
49 views

AS3: Separate instances in an array?

I'm making a side scrolling game in as3, where the player spawns units which automatically walks towards the exit on the other side of the screen, but there are towers stopping them. I would like the ...
0
votes
1answer
110 views

AS3 Flash- Adding multiple different movieclips to stage from one class

I've searched everywhere and can't find an answer to this question and I'll do my best to explain it. I have 2 movieclips in my library, 'Bluknife' and 'cat' (It's an rpg game.). Both those ...
0
votes
6answers
68 views

Java - How Can I Check If A Class Is Inheriting From Some Class Or Interface?

I need to check: public static boolean check(Class<?> c, Class<?> d) { if (/* c inherits from d */) return true; else return false; } How can I do that ? And is ...
0
votes
2answers
133 views

Reflection - How to set values for the POJO Class whose instance is created using reflection

i have created a instance for my pojo class like the following using reflection : package com.hexgen.tools; public class Foo { public static void main(String[] args) { Class c = null; ...
0
votes
1answer
49 views

How to programatically list the relationship between two instances in an ontology?

I have an ontology which i made up of relationship as follows Company1 :hasSubsidary sub1 :hasDepartment Cars1 :hasSubdepartment Manufacturing :isinBuilding area1 :hasUnit ...
0
votes
0answers
3 views

Sitewide external hyperlink search?

I've inherited an ugly static website and am looking for a tool that will search for a specific unbroken outbound link appearing throughout the entire site. I've tried the Google site: link: search, ...
2
votes
1answer
83 views

How to find out the number of instances of a shared Excel file using VBScript [duplicate]

I am trying to find out, using VBScript, the number of instances of a shared Excel file running on different systems. Let's say the file is 'test.xls', and it is placed on a shared drive and ...
0
votes
0answers
67 views

A conflict exists with definition leftIdle1 in namespace internal

I'm scripting a game with Actionscript 3.0 in Flash Professional CS5.5, but I get an error. Scene 1, Layer 'as2', Frame 153, Line 4 1151: A conflict exists with definition leftIdle1 in namespace ...
2
votes
1answer
163 views

Appfog instances vs memory

I'm developing an API on Appfog and want to know what to focus on (more memory with one instances or more instances with lower memory). Appfog gives you free 2GB of RAM and up to 16 instances if each ...
-1
votes
1answer
63 views

New object instance not being recognized- Java

I am having trouble getting a random generator instance from being recognized as an object and it won't allow for use within another .class file. The base code for the random integer generator is ...
0
votes
2answers
76 views

Derived class from class instance?

how do I make a derived class which can change all the variables from an instance of its base class? I understand I could declare the base class variables static, but when I do that I cannot ...
1
vote
1answer
44 views

storing instances in variables in python

In my Pyqt4 program I want to change the shortcut for some buttons. As I have quite a lot I thought of accessing a button through user input. I copied the relevant code snippets. self.btn3 = ...
0
votes
0answers
56 views

Multiple Context path for single war deployment

Can anyone help me on this. We have existing wep application (WAR) in production. Now we are doing some enhancements or new feature adding. Currently it called by localhost:8080/MyApp . Server : ...
-1
votes
1answer
50 views

AWS instances not able to talk to eachother [closed]

I'm new to AWS and i'm having a few issues. I have created 2x 2008r2 servers. One is a domain controller and the other is a terminal server. They are both in the same security group, i have created ...
0
votes
2answers
75 views

Why does delete only work in main and not in a function that gets as an input the object or objects to be deleted?

I am trying to create two classes whose instances get created and deleted together. One class is a base for the other: class Interface; class MyClass { friend class Interface; private: MyClass() ...
0
votes
0answers
65 views

Second instance not starting / not working

I have a cloud service and if I define my web role to have 2 intances in ServiceConfiguration file, when I deploy it the first instance start fine and runs but the second stays frozen starting. ...
-2
votes
1answer
161 views

JavaScript creating new instance of objects

So I am designing a grade book interface and I have a course defined as: <script> course = new Object(); var name; var gradingareas; var finalgrade; </script> then later I want to ...
1
vote
0answers
53 views

Cannot login to several TeamCity instances on the same host at the same time

I am new to TeamCity and need to complete the following task: Install and run two TeamCity instances on single Windows machine. Build agents are installed on other machine. I got both instances ...
0
votes
1answer
32 views

closing specific instance in Windows Azure

I want to scale down the deployment. Typically Fabric closes the instance with higher instance ID, but I would like to control which one it closes. So when changing instance count if I trap ...
0
votes
0answers
24 views

dolfin get_eigenpair() results in segmentation violation in a class implementation

I want to solve a generalized eigenvalue problem with Dolfin. The solver is implemented as a class where the solve step and the evaluation step should be coded in different methods. And the ...
1
vote
0answers
12 views

Difficulty to evaluate a method with the evaluation dataset

I read about compatibility issues that weka shows when the set of training data and evaluation are different (ie, do not contain the same number of attributes or are in disorderly), I also had these ...
4
votes
1answer
60 views

Will adding an instance of a class to a list copy the instance or just 'reference' it?

allInstancesOfFoo = [] class foo(object): def __init__(self) allInstancesOfFoo.append(self) bar1=foo() bar2=foo() bar3=foo() Will doing this create copies of bars 1-3 and place them in ...
1
vote
2answers
77 views

Unique object instances in an array (Ruby)

I have a custom defined class Instruction. Instances are initialized and collected in an array. There are some duplicate (all instance variables identical) instances and I want to filter them out. ...
1
vote
1answer
52 views

Multple instances of jQuery on same page

I have a list of items on a page dynamically generated - I can get the $itemid of each one easily enough. I am trying to setup a vote for each one but I can't make the instances different enough for ...
0
votes
3answers
172 views

C# Putting a class in a dictionary and creating a new instance on call

This really seems confusing but I want to create a Dictionary filled with different classes as the Values, then using letters as the keys. When I call a key in that dictionary, I need it to act as ...
0
votes
1answer
26 views

Generated Flash instance not including all MovieClips

I have a flash based video player that playlists and some other features. The thing is that when I compile the player, the instances to the updated features dose not get all the latest updates. it ...
0
votes
3answers
72 views

how to reach to the instance name of a class?

I am a quit new python programer and just for curiosity I want to know how I can reach to the name of instance which is made in the body of main,in the methods of my class . I want to know whether ...
1
vote
3answers
199 views

Creating and serving temporary HTML files in Azure

We have an application that we would like to migrate to Azure for scale. There is one place that concerns me before starting however: We have a web page that the user is directed to. The code ...
0
votes
1answer
74 views

How to add an object from a class to an instantiated window?

I've got a fairly simple C# / WPF question. My skills in C# / WPF are not that good so I do apologize if the answer is already out there but I wasn't smart enough to see it. I've got a main window ...
1
vote
4answers
181 views

Values aren't being saved in savedInstanceState

For some reason, the values from the gridView aren't being saved from the Bundle. Nothing is being outputted to the logcat either. Am I getting the values from the gridview properly? It is full of ...
0
votes
1answer
13 views

How can I avoid decreases in framerate in a game with a lot of instances of an object class?

I'm writing a game that requires a large amount of instances of a "Monster" class that contains very basic data - namely: -Angle of rotation -Damage potential -Max health -Current Health And that's ...
1
vote
0answers
150 views

Role instances are taking longer than expected to start - Can't find solution is it a bug?

I've been through this post: Role instances are taking longer than expected to start - Is there a new solution to this problem? But I can't find the answer why I am getting this error, the emulator ...
2
votes
1answer
211 views

Object-oriented languages without class concept [closed]

I am reading introduction to Scala paper and found following statement: It should be noted that some object-oriented languages do not have the concept of class. Question: Which object-oriented ...
0
votes
2answers
208 views

Passing an instance of a class into another java file

Sorry if this is a stupid question but I'm a little stuck on an issue! Basically: if i have 3 ".java" files i.e "main.java" , "implement.java" and "class.java" in class.java I have created a public ...
0
votes
1answer
62 views

Kill html5 video instance in Firefox

I have a page where multiple number of html5 videos embedded on in different tabs structure. FF plays ogg format and it seems to have different way of loading these videos. Each videos have autoplay ...
4
votes
1answer
151 views

Update calendar instances.end via events.dtend

When I update the CalendarContract.Events DTEND column, why doesn't the change show up in the CalendarContract.Instances END column? My app allows the user to view and change calendar events using ...
2
votes
0answers
192 views

jQuery MP3 Player : how to stop all running instances when playing another

I made a jQuery script that plays MP3, but when I play the first MP3 and than I play an another one, the two MP3 sounds play together. How to stop all instances of MP3 and then, play the selected ...
0
votes
2answers
133 views

in CalendarContracts.Instances, determine if original event is recurring

A query of CalendarContracts.Instances comes back with all recurring events expanded to individual instance "placeholders". How can I tell which rows represent placeholders and which ones are unique, ...

1 2 3 4