A keyword used in instance methods to refer to the object on which they are working.

learn more… | top users | synonyms

3
votes
3answers
946 views

about_classes.rb inspect and self in ruby

I'm currently working on about_classes.rb. I'm confused on the concept of inspect and how it relates to self. Does calling an object automatically return the inspect method for that object? class ...
0
votes
3answers
156 views

Replace “self” under ARC

Usually my code with loading custom view from xib looks like: @implemenation MyCustomView - (id)init { [self release]; if ((self = [[NSBundle loadViewFromXibName:@"MyCustomView" ...
2
votes
2answers
185 views

Python substitutes one of the parameters into self

I have encountered a funny situation in Python that I cannot resolve. I have a function definition inside one class like def a(self, x, y): and it's been called from other place like a(par1, par2). ...
1
vote
2answers
79 views

How is self passed to methods (or how to prevent strong reference cycles)

I'm currently thinking about how to prevent strong reference cycles when using blocks that retain self. The usual way seems to be to just use a weak reference to self: @property (strong, nonatomic) ...
1
vote
2answers
30 views

self __init__ overwrite

I'm having trouble with with an initialization of an object, and methods overwriting data that I don't want overwritten. I apologize if my terminology is incorrect, as I use multiple coding languages ...
0
votes
2answers
52 views

Doctrine 2 - not able to save one to many self-reference relationship

I have a problem saving a one to many self-reference relationship, both parent and children are saved properly on the database, but Im getting parent_id null for the children. I folloed the doctrine ...
0
votes
2answers
548 views

invalid signature, self-signed certificate?

update : solved thx fluchtpunkt sorry for noob question.. just same as other question, I can't upload app to the appstore, because invalid signature.. in my case, before registered as ios ...
2
votes
1answer
363 views

javascript child window redirecting main window

main.php has <a href="redirect.php" target="_blank">open new window</a> then redirect.php has top.top.location.href='http://xx.com/index.html'; When I click the link open new window, ...
2
votes
1answer
125 views

Server rejects request on self hosted service

I have created a self hosted service with a proxy Service and Contracts Namespace ECDBDatabase.Service Public Class DatabaseService <ServiceContract(Name:="DatabaseService", ...
1
vote
1answer
1k views

Unable to download from modal dialog, window.showModalDialog

I am not able to download a file from a aspx page if aspx page is opened in a modal popup using window.showModalDialog(). I have an image button on aspx page, on click of it a Excel file has been ...
1
vote
1answer
272 views

How to get MYSQL to show Zero results when left joining to self? (eg: Monthly Stats)

I have a table with typical statistics on page view and emails. An email creates a row and page view creates a row... I want to chart the page views and emails on a daily basis for the past 30 days ...
0
votes
1answer
88 views

Why does Python interpret this variable as a int if I initialize it as a string?

While working on a school project. I ran into this error >>> y = tokens.numberToken('1.23') Traceback (most recent call last): File "<stdin>", line 1, in <module> File ...
0
votes
1answer
87 views

Self Installing Zip Archives ( run app after extracting )

I'm creating an self extracting archive using unzipsfx.exe and with command: cat unzipsfx.exe archive.zip > Installer.exe I need to execute an exe from archive.zip after Installer.exe extracts ...
0
votes
1answer
52 views

Hibernate joining 2 rows

In order to make my java code easier, I would like to join two rows into one since I really need those two to be present in order to use the data. Let's say those are the fields of my table : ID, ...
0
votes
1answer
246 views

JavaScript window.open _self issues

I have some old code that I want to open into the same window if(sgame=='BIN') { ...
0
votes
1answer
72 views

Can't return self Objective-c Cocos2d

I just want to warn you that I'm french so sorry for my future mistakes. I'm programming a snake game (you know, eat an apple and the snake gets longer) and I'm really stuck. I'm working with cocos2d ...
0
votes
1answer
46 views

Upgrading code to IOS5 Storyboard… self.view assignments not working

I'm new to this and couldn't find an answer. On my old 4.x app, I added files in which I implemented my own UIView, where I ran some "drawRect:(CGRect)rect" to paint some lines. For example... /// ...
0
votes
1answer
94 views

multiple self join replacement

Want some replacement for multiple self join on a table. what is the maximum limit of self join on a table in SQL I have a table table_1 with columns as: uid number(10), a_name nvarchar(20), aaId ...
0
votes
1answer
121 views

wordpress self hosted plugin

I am in the process of creating a self hosted plugin for my work. It can not be released into repository as it is specific to what we do. We would like to however be able to do updates from our own ...
0
votes
1answer
77 views

jquery plugin - calling methods

so I am building my first plugin for jquery I have an init method init: function(options, elem) { var self = this; This calls a couple of methods this.slide(elem); this.lightbox(elem); ...
0
votes
1answer
36 views

What is the easiest way to make a self extracting PE?

One way is to concatenate the PEs as mentioned in this article: http://www.strchr.com/creating_self-extracting_executables Is there a more convenient way to do it? I don't want to iterate through ...
0
votes
1answer
665 views

How to do self join on min/max

I am new to sql queries. Table is defined as ( symbol varchar, high int, low int, today date, Primary key (symbol, today) ) I need to find for each symbol in a given date range, ...
0
votes
1answer
566 views

ios5 Xcode 4.2 scrollview self return error

I made ​​a cartoon applications. In ios4.3 perfectly well, but should not run ios5. The error message "Terminating app due to uncaught exception 'NSGenericException', reason: 'The view returned from ...
0
votes
1answer
169 views

Value of self changes after pushViewController

I'm using a UINavigationController and I want to reuse a UITableView. To that end, I've made the data sources for the table properties. Here are the files for the view. WordList.h: @interface ...
0
votes
1answer
35 views

Using self to get variables within a class?

This is probably a silly question, but if i have a variable called, say nstate, defined with appropriate getters and setters within a class, and I would like to get its value from within the class, is ...
0
votes
1answer
597 views

Silverlight WCF Self Hosting seemed not to locate ClientAccessPolicy.xml

I've created WCF self hosting service in local machine and silverlight App gets data from this service and send it to remote server. It worked well for more than a month but suddenly stopped ...
0
votes
1answer
418 views

MYSQL - SELECT ALL FROM TABLE if

I have a (nice) mysql table built like this : Fields Datas id (pk) 1 2 3 4 5 6 master_id 1000 1000 1000 2000 2000 ...
0
votes
1answer
674 views

JoinTable (Parent/Child) to self always joins to join table when loading

I have an entity that can have 0 or many children of the same entity. Also, an entity can have 0 or one parent of the same entity. Tables structure Account ( AccountId PK, Name char etc... ) ...
0
votes
1answer
723 views

How do I release self (UIImageView) in touchesEnded?

I have an object that is a child of UIImageView. Before all these touches methods, I add this object to the superview and then user moves it. In touchesEnded, sometimes I want to release self. I've ...
0
votes
1answer
893 views

Self redirect an .Asp page and keep the same Request variables

Am trying to convert the content of a page to an Excel format, the problem is when I redirect the page I don't get my request variables so I found a solution that we should define a hiden variable for ...
-2
votes
1answer
35 views

Can't reference current div

I am having a little problem with "this"...I wanna make the start() works for every div. But like that is returning HTML div obj, you know... function init(){ box = []; box = ...
1
vote
0answers
55 views

Using class methods … fails with the old “__init__() takes exactly x arguments (x+1 given)”

Here's some code I wrote with the purpose in mind of having more than one way to initialize my GameObject class: class GameObject(object): def __init__(self, name, location, description, ...
1
vote
0answers
157 views

$_SERVER['PHP_SELF'] wrong link, double link

$_SERVER['PHP_SELF'] gives the wrong link and because of that some scripts don't work correctly For example, I put the following code in the file test.php: <? echo $_SERVER[PHP_SELF]; echo ...
1
vote
0answers
102 views

Using Pex To Test Self Hosted WCF Service

I have a scenario where I am using Self hosted WCF Services and all the methods that I wan't to Test are in that service. Now I can't find a way to test that service with PEX as it is self hosted and ...
0
votes
0answers
61 views

Calling a windowsservice ExecuteCommand to excute a OnCustomCommand on itself?

ServiceController.ExecuteCommand in C# can be used to send custom command to a windows service. Like here - How to send a custom command to a .Net windows Service from.Net code? ServiceController ...
0
votes
0answers
13 views

Joining with an incomplete dataset

I have a table that looks like this after sorting: col1 col2 2 3 1 3 1 4 2 6 3 5 And I want to filter each observation as follows: within the observations outputted so far, if the ...
0
votes
0answers
74 views

Accessing NSMutableDictionary in objective c

Hi I am currently working on some xml parsing in objective c. The app stores the value that is extracted from the xml into a NSMutableDictionary called attributes In my ValueParser.m, the following ...
0
votes
0answers
57 views

How to refactoring a 'self' declaration depending on the current context?

I am using jQuery v1.8.3 and jQuery UI v1.9.2. After my previous question, I ended up with the following working code: $('#input_id').autocomplete({ create: function (event, ui) { // Initialize ...
0
votes
0answers
29 views

Self Tracking Entities - Relationships not generated

I have added a Self-Tracking Entity Generator to my existing Entity Framework setup. Now when I retrieve a World record from the database, for example public class World { public Guid Id { get; ...
0
votes
0answers
75 views

“ConfigFileMissing” error when silverlight client register for duplex channel on self hosted WCF service

I am getting CofigFileMissing error when my silverlight client requests a duplex channel on a self hosted WCF service. Silverlight client has clientaccesspolicy.xml at its root, and client endpoint is ...
0
votes
0answers
34 views

How to jump to self page based on confirmation box answer

I want to execute an SQL on my php server based on a user confirmation prompted not by a button but by another sql result. So I tried to do something like this: if ($result == 1) { ?> ...
0
votes
0answers
221 views

WCF service in self hosting on window application running on remote machine not respond when no one is logged in

Hi I have developed one WCF service which is hosted on the window application. This application is running on the virtual machine.If none is logged in on machine for long time that service stop ...
0
votes
0answers
428 views

Self host WCF (Windows Communication Foundation) Ajax services

I am having trouble to understand how to expose the WCF services through Javascript. Here are what I found after days of research: Exposing WCF services through Javascript but not self host: ...
-1
votes
0answers
22 views

Ruby change self parameters for 2D array

I have a class that enables to do that : $my_array_class[0] = 3 Codes : def [](id) @data[id] end def []=(id, value) @data[id] = value end So how can I do that for 2D arrays like: ...