Hi,
I am implementing a SPA tree algorithm and is looking for a Visual Studio plug-in that let me visualize objects and their relationships in debug/runtime.
Visualization like:
[0]-----[1]
| \ /
[2] \ /
| [4]
[3] | \
\ | [6]
\[5]
Any ideas?
...
I'm looking for an object database for .NET that is open source and free for commercial use. I need something that is available as assemblies and/or source code to embed into a project, i.e. not a stand alone database in its own process.
I am aware of db4o, and it would be perfect except for the commercial license coming at a price.
AC...
Hi,
can any one describe the exact difference between loose coupling and tight coupling in Object oriented paradigm??
I am too much confused on this.
Thanks,
Jim.
...
I've got a new question after answer on this question http://stackoverflow.com/questions/2816294/pass-parameter-from-page-to-activex
How to add property to property map without class explorer ?
Need to add the property for object and class explorer doesn't works because of Nemerle doesn't supports it yet.
code :
<object id="Bacs...
hi
i want to know how to array_intersect for object array.
thanks and advance
...
I have an array like this (output from print_r):
Array
(
[price] => 700.00
[room_prices] => Array
(
[0] =>
[1] =>
[2] =>
[3] =>
[4] =>
)
[bills] => Array
(
[0] => Gas
)
)
I'm running a custom function to convert it...
(im new to java)
from my searches for Serialization in Java most of the examples document writing to a file or reading from one.
my question is lets say i have a serializable class AppMessage.
I would like to transmit it as byte[] over sockets to another machine where it is rebuilt from bytes received.
how could i achieve this please...
I'd like to initialize an object in javascript calling directly a method that belongs to it:
var obj = (function(){
return{
init: function(){
console.log("initialized!");
return this;
},
uninit: function(x){
console.log("uninitialized!");
}
}...
var currentDate=new Date();
currentDate.setFullYear(2011);
alert(currentDate);
This works, it sets the year to 2011 as expected.
alert((new Date()).setFullYear(2011));
This one doesn't work.
Any idea why? Am I misunderstanding the syntax?
...
I have this code to get the Cursor once for this instance, and the Log shows it is called many times although I marked as final. What I am missing?
private Cursor getAllContactsCached() {
final Cursor c=this.getList();
return c;
}
getAllContactsCached method should retrieve list once, and the 2nd time it should re...
Hello,
i have some class which constructs itself from string, like this:
CurrencyVector v = new CurrencyVector("10 WMR / 20 WMZ");
It's actually a class which holds multiple currency values, but it does not matter much.
I need to change type of column in my LINQ table (in vs 2010 designer) from String to that class, CurrencyVector.
...
I am trying to access certain pieces of data from an xml file, here is the problem.
###XML FILE
<products>
<product>
....
....
</product>
<product>
....
....
</product>
etc...
</products>
I know that the piece of data I need is in ($products->product->myProdNode) I have this mapping ...
Is there any way I can get the body of a Response object back before it's sent down to the browser?
I'd like to do something on Page_LoadComplete to get the current response of what's about to be written to the page so I can do something with it.
...
I am entry level .Net developer and using it to develop web sites. I started with classic asp and last year jumped on the ship with a short C# book.
As I developed I learned more and started to see that coming from classic asp I always used C# like scripting language.
For example in my last project I needed to encode video on the webser...
hi.. i am new in C++, i'm using VC++ 2008, i have created a form with pictureBox inside with gui design, located in Form1.h.
for code stability, i'm trying to separate beetween gui and processing classes, so i made a new class in process.h which contain code to change image in the pictureBox, the problem is that i cant access pictureBo...
Hello, I'm writing (well, completing) an "extension" of Java which will help role programming.
I translate my code to Java code with javacc. My compilers add to every declared class some code. Here's an example to be clearer:
MyClass extends String implements ObjectWithRoles { //implements... is added
/*Added by me */
public s...
I am creating a new object in a Powershell script, or actually an object type. I want to create multiple instances of this object. How do I do this?
The code below is what I am working on, it appears that all instances in the array reference the same object, containing the same values.
# Define output object
$projectType = new-object ...
Preface: Yes, I've read:
http://drupal.org/node/547518
I am writing 'foo' module for Drupal6, where I am organizing the code in an OO fashion.
There's a class called Foo that has a bunch of setters and accessors, and it is working quite well at abstracting some pretty nasty code and SQL.
The question is is it common practice to expose...
Would (1) int a; new Object[] {a} be the same as (2) new Object[] {new Integer(a)} ?
If I do the 1st one, will (new Object[]{a})[0] give me an Integer?
thank you
...
when validating a site using w3c validator it tells me the embed tag is not valid markup. So i take it out and it works on safari/chrome but not firefox(3.5.x) but validates fine. Is there something in the object tag i must add in order for firefox to display flash.
...