3
votes
1answer
31 views
how come in php superclasses can access protected methods of their subclasses?
I just noticed this behavior today - weird, I'm pretty sure in java a you can only access protected methods upstream on the inheritance chain since going the other way violates enc …
2
votes
3answers
36 views
instance method.. in ruby module?
consider the following code:
module ModName
def aux
puts 'aux'
end
end
if we replace 'module' with 'class', we can do the following:
ModName.new.aux
but since modules …
0
votes
1answer
8 views
ASP.NET AJAX Textbox to DataList/Grid
Hi there!
I'm looking to create a free-type textbox which onkeyout "filters" a datagrid below. The old way to do this was to write a webservice and call it on each press returnin …
1
vote
4answers
108 views
Get the number of elements in a pointer to a char array in C++
I realise this is an incredibly noob question, but I've googled for it and can't seem to find an answer (probably because I've worded the question wrong... feel free to fix if I ha …
0
votes
4answers
52 views
iphone application layout
Hi there,
I'm trying to get started with an iPhone application, I had a look around at other questions but i'm still sorta stuck so hopefully someone can help...
First thing is I …
0
votes
2answers
40 views
CFDIV, and CFFORM not working right inside a CFWINDOW.
Hey guys I am having an issue when I'm trying to display a cfdiv inside a cfwindow. It just doesn't show up. No errors, nothing to tell me I'm doing something wrong. The div works …
1
vote
5answers
71 views
Simple assembly question
MOV [1234H], AX means that the value of AX is copied to 1234 hexadecimal address in memory.
So, please correct me if what I am saying is wrong, the [] operator functions as a point …
2
votes
8answers
160 views
How do I get started with Unit Testing? Total n00b question, thoughts?
So I'm starting to write a class library of useful methods I've written and picked up over the years, I'll start with two examples of code, then ask my specific questions:
I'd als …
1
vote
3answers
161 views
Help un-noobify my C++ homework.
#include <iostream>
#include <stdlib.h>
#include <time.h>
using namespace std;
int twoify(int num, int times)
{
num *= 2;
if (times > 0)
{
t …
1
vote
3answers
42 views
How to layout a Silverlight app?
I am brand new to Silverlight. Just downloaded and installed it (the SDK and the controls toolkit), went through a few tutorial and getting my head around XAML.
I want to build a …
0
votes
2answers
27 views
Silly NSArray question
I can't believe I forgot this, what is in an NSArray if there's no value in the field (this is being determined by loading a .plist file). I know I should know this, but right now …
1
vote
4answers
45 views
Why do you have to cons with a null to get a proper list in scheme?
I realize this is a total n00b question, but I'm curious and I thought I might get a better explanation here than anywhere else. Here's a list (I'm using Dr. Scheme)
> (list 1 …
1
vote
4answers
91 views
C++ positional parameters
Hi.
This is a very basic question, so please bear with me.
Consider the following function in C++:
void foo(int a, int b, int c)
{
//do something
}
can I call this funtion …
1
vote
1answer
52 views
Microsoft.Contracts namespace
For what it is necessary Microsoft.Contracts namespace in asp.net?
I mean, in what cases I could write using Microsoft.Contracts;?
0
votes
1answer
46 views
Simple javascript search-and-replace
I know zero javascript, and have one simple task:
Find all text in the current html of the form [[.+?]]
Extract the content of the brackets
Replace all space characters with unde …
