0
votes
1answer
6 views
Is a bad practice to use in method signature DbCommand ?
Hello,
I'm using EnterpriseLibrary and DbCommand from it. I have two methods which from database gets same formated select. So the DataReader looks same but I'm executing other procedures.
Question …
0
votes
1answer
40 views
jQuery each method does not return value
$(document).ready(function() {
$('#commentForm').submit(function(){
return $('input[type=text], textarea').each(function(index){
if($(this).attr('value') == ""){
…
3
votes
3answers
33 views
Pass method, created with reflection, as Func parameter
Hello,
I've got a method (fyi, I'm using c#), accepting a parameter of type "Func", let's say it's defined as such:
MethodAcceptingFuncParam(Func<bool> thefunction);
I've defined the …
1
vote
5answers
95 views
C# sample syntax question
Please, help me with to understand this piece of code:
protected Customer()
{
}
in the following class (Model class from sample WPF MVVM app):
public class Customer : …
1
vote
2answers
36 views
Answering “Which method called me?” at the run-time in .NET? Or is CallStack data readable by the code?
Presume that there are methodA() , methodB() and methodC().
And methodC() is called at the run-time.
Is is possible to know methodC() is called from what method?
I was thinking if CallStack can be …
0
votes
1answer
30 views
Using Generic Methods with a WebService like WCF or ADO.NET Data Services
Is it possible to use generic methods with WCF or ADO.NET DS?
Or is it possible to create a generic WebService Repository with WCF or ADO.NET DS?
1
vote
4answers
94 views
running a method within another method. python
I am calling a method within another. and the error for this script i am getting is
NameError: name 'mnDialog' is not defined
Is there a reason for it? I think it has something to do with …
0
votes
1answer
17 views
Need plan of action to upgrade graphics toolkit in company’s applications
My job is to upgrade all of our applications that use OpenSceneGraph (an openGl toolkit) version 0.9.9 to the latest and greatest 2.8. Well quite a few caveats come with this task:
1.) After version …
0
votes
4answers
165 views
How in C# to pass a name of the object as a parameter to function?
I have the code that change the state of boolean property on mouseclick, depending on name of the clicked object:
private void Grid_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
…
0
votes
1answer
20 views
Scope of class help
Hi I'm trying to reuse some code i was pointed to earlier to run a 3rd party .exe inside of a my winform
the code i was given was
via Mr. Greg Young
public class Native {
…
1
vote
1answer
19 views
Axapta: Validate Access to return value from display method
The Dynamics AX 2009 Best Practice add-in is throwing the following error on a display method override.
"TwC: Validate access to return value from the display/edit method."
Here is my display …
1
vote
2answers
48 views
Dynamic method dispatch based on value of variable
Hi there,
Long switch statments are often frowned upon. The solution is to use polymorphism. However what if the thing I'm switching on is not a type code? What I would like to do is replace the …
0
votes
1answer
27 views
How to access the value of an object from inside a method of the same object in Javascript?
Hi, I'm trying to add a toBool() "method" inside the Object object using prototype... something like this:
Object.prototype.toBool = function ()
{
switch(this.toLowerCase())
{
case "true": case …
5
votes
5answers
144 views
Faking method attributes in PHP?
Is it possible to use the equivalent for .NET method attributes in PHP, or in some way simulate these?
Context
We have an in-house URL routing class that we like a lot. The way it works today is …
2
votes
4answers
95 views
private methods using .net reflection. why??
Hi
I used reflection many times before on public methods but never realized that private methods can be invoked too. See the link
I am still thinking why is that allowed in the first place?
Isn't …
