December 15th, 2012 11:58 PM
Thanks.
Sorry I posted that way because I thought I was logically explaining my issue, but I see your point!
Quit a difference with the array, instead of an out of bounds exception, I got an...
December 15th, 2012 10:17 PM
Hello, I am asp.net C# developer. I decided to tackle C++, so I started today. This is probably something simple I am sure but I cannot figure out what the problem is. I would appreciate if someone...
November 27th, 2012 03:08 PM
Personally, I think you should go for the gusto! The best method is to use the EF(Entity Framework) code first approach.
you create you POCO(Plain O'le CLR Objects) classes. You can use...
October 18th, 2012 06:11 PM
Why would you? One of the tenants of OOP is code re-use. There is no need to re-invent the wheel. Now if you want to make a better wheel.....you can extend the original wheel.
October 1st, 2012 04:29 PM
I'll help point you in the right direction:
1st when you say:
You are not understanding the concept of creating methods that accept parameters and method return types.
public long Add()...
December 13th, 2011 09:27 PM
Set your control to visibility collapsed:
mycontrol.Visibility = Visibility.Collapsed;
then use a story board. after it completes use an event handler and set the visibility to visible:
November 25th, 2011 12:06 AM
two questions:
1.is this within an ASP.NET page?
2.are you looking to do this client or server side?
September 29th, 2011 09:53 PM
your question is a little vague. And the answer would be enormous. What exactly are you trying to accomplish?
September 29th, 2011 09:48 PM
could you supply the code that's giving you trouble and the result.
September 27th, 2011 11:30 PM
You can use the String.format() method to format your output. It will take as many arguments as "objects" you want to print.
Here is an example:
double num = 2.2387654230928;
...
September 18th, 2011 10:12 PM
I am new to java. I am trying to create 3 methods within a class and then call them in that same class. I am not creating or calling correctly. Please help. Here's my code:
import java.util.*;...