1
vote
3answers
110 views
C#: Problem calling method inside a string property setter
I have a string property that defines a filename for an xml file. When the user inputs this filename into the property, I have the setter calling a parseXml() function immediatly …
0
votes
1answer
23 views
how to drag in the animation in iphone application?
Hi,
Iphone application is using the static co-ordinates to reach at some points in the application,which is based on the button event.
But what i want is when i drag the item than …
0
votes
1answer
20 views
Axapta: Edit form field values
Using a 'clicked' override on a button, I'd like to modify values in an Axapta form.
I'm able to get data from the form field using:
str strOld = Form_FieldName.valueStr();
I …
1
vote
6answers
56 views
Accessing Method from other Classes Objective-C
Looked for an answer for this question, but I haven't found a suitable one yet. I'm hoping you guys (and gals) can help me out! (This is for an iPhone app)
Alright, I have a Mut …
0
votes
3answers
87 views
Dynamic method return types in java
The following code does exactly what I want it to, but I am curious if there is a better way of going about it. This would be so much easier if Interfaces allowed static methods, o …
2
votes
6answers
88 views
Function/Method Overloading C++: Data type confusion?
Hi,
I'm having some trouble overloading methods in C++.
As an example of the problem, I have a class with a number of methods being overloaded, and each method having one parameter …
2
votes
9answers
200 views
Intercept method call in Objective-C
Can I intercept a method call in Objective-C? How?
Edit:
Mark Powell's answer gave me a partial solution, the -forwardInvocation method.
But the documentation states that -forward …
0
votes
1answer
82 views
How to invoke a method with a superclass.
I'm trying to invoke a method that takes a super class as a parameter with subclasses in the instance.
public String methodtobeinvoked(Collection<String> collection);
Now …
1
vote
4answers
73 views
How can I pass a method acquired by reflection in C# to a method that accepts the method as a delegate?
Hi,
I realize the title needs to be read more than once for understanding ... :)
I implemented a custom attribute that i apply to methods in my classes.
all methods i apply the at …
1
vote
5answers
46 views
PHP Using a variable when calling a static method
Hi,
I have three classes that all have a static function called 'create'.
I would like to call the appropriate function dynamically based on the output from a form, but am having a …
0
votes
5answers
94 views
C#: where to put “save()” method?
I have a question, here is an example
I have a Model class: Stock
public class Stock{
//some properties, stock name, stock code;
public String StockName{
get, …
1
vote
1answer
61 views
Clojure: extend Wicket panel and call to panel methods
Currently I'm trying to create sample Wicket page with Clojure (in existing wicket project). Code looks like this:
(ns a.set.of.packages.dataview.info.EmptyNodeInfo2Panel
(:impo …
0
votes
2answers
30 views
calling method in helper class exposed by wcf service class
In short: Trying to write a wcf service for a winform-app that invokes a stored procedure on a webserver.
So far no problem - my service exposes the method "execStp(string nameOfS …
4
votes
8answers
260 views
In what situations is static method a good practice?
I have read the following discussions:
http://stackoverflow.com/questions/538870/java-static-methods-best-practices , and
http://stackoverflow.com/questions/658407/static-methods
…
5
votes
24answers
839 views
How many lines should a method typically have? [closed]
Possible Duplicate:
How many lines of code is too many?
I'm not really that new to programming but I am new to standards as a whole.
Any professionals here care to share …
