Hello there,
Could anybody point out a good dependency injection tutorial? I found a ton on Google but none of them that would assume the reader is a just Java beginner.
Thanks!
Hi,
I am a beginner developer want to develop a MP3 to AAC converter for Linux. But I don't know how to start as I havn't done any development in Linux before. I am using Ubuntu 10.04. Can anyone tell me how to start and from where? What libraries do I need?
Thanks
I am considering to start writing apps for android. Could some-one post list with all tools needed to start coding.
My programming skills by language are
C# - excellent
Java - moderate
c/c++ - beginner
I have heard something about Mono for android, whats the status of it? is it any good?
Also it would be helpful to hear how Java performs on android.
Any other points and issues regarding the android platform are also welcomed.
I do a lot of design work with XHTML, CSS, and PHP. A friend mentioned Sass to me and it looks pretty cool. I don't know anything about Ruby or Rails and I am running a windows machine.
Does anyone know a good tutorial for a beginner to dig in to something like this?
Hi,
I am a beginner to asp.net. I want to sort a gridview but the problem i m facing is when sort event handler is called the exception of stack over flow is thrown. Following is my code for sorting function.
protected void sortGridView(string strSortExpression)
{
if (strSortExpression != string.Empty)
{
if (ViewState["sortOrder"] == "desc")
{
dgvBookInfo.Sort(strSortExpression, SortDirection.Ascending); //string.Format("{0}{1}", );
}
else
{
dgvBookInfo.Sort(strSortExpression, SortDirection.Descending);
}
}
}
Thanks
Ruby-help
Hi.
I'm a beginner in ruby and in programming as well and need help with system call for moving a file from source to destination like this:
system(mv "#{@SOURCE_DIR}/#{my_file} #{@DEST_DIR}/#{file}")
Is it possible to do this in ruby and which is the correct syntax?
Thx
Hi, I am beginner and I have this problem. How can I can update dataset with datagridview?
I binding dataset in datagrid.
Edit datagrid.
At finish I want update dataset with datagridview. Thank you form any advice
I keep getting this error on my project and i cant figure it out! please help!
error C2143: syntax error : missing ')' before 'constant'
the line is:
while (selection == ('a','b','c', 'd', 'e', 'f', 'g', 'h', 'i','A','B' 'C', 'D', 'E', 'F', 'G', 'H', 'I');
also i know there is an easier way to write that line out but im not sure how i can do it. im a beginner at this so can any of you pros edit this line for me!
Hi All,
I am a beginner in ada and i had come across a piece of code which is shown below:
procedure Null_Proc is
begin
null;
end;
Now as per my knowledge the procedure in ada doesn't return anything.My doubt is what does this procedure Null_proc do?I mean i am not clear with the definition of the procedure.
Thanks and regards
Maddy
What I want to do with the fs object is to add multiple "items" to the fs.items property.
How can I do this? You can see my attempt below, obviously this does not work.
I am a beginner, go easy on me :)
Thanks...
var fs = {
name:'test',
items:[]
};
fs.items = {
name:'item1',
value:1
};
fs.items = {
name:'item2',
value:2
}
Hello Experts,
I am Beginner. I want to study and create custom controls. I have searched on Google but didn't find any good stuff.
Could anybody provide me some nice link or explain me that how can I start custom controls.
Thanks in advance.
i AM A HIBERNATE BEGINNER ,Since i need to create dynamic tables with dynamic fields in them i chose to use hibernate . As far as my understanding , creating tables requires a class with the fields defined in the class . How do i generate the classes dynamically based on the table with the required fields ?
I am a beginner and for lack of a better way to put this, does MATLAB have a function that will "snap an image" or move an image to some predefined location if within a certain area? I have checked out some forums with no luck so far. Thank you so much for your assistance.
I know basic C++ like about classes and other basic stuff what are the things which i need to know so that i can understand the source code of some advance open source projects and be able to make one too.
Like if i read the code of vlc or some other projects I can't understand many things moreover i am just a beginner have not worked on even multi file programs so please suggest which are the books and what are the basic projects from where i can start.
Hi all
Just a stupid beginner's question, which will be quickly solved, but I am curious.
http://www.irian.at/myfacesexamples/home.jsf says:
"MyFaces - The free JavaServer™ Faces Implementation"
Errr ... is Sun's implementation not free, then?
Thanks & Cheers
Er
I am new beginner, is it possible the covert flex data grid to CSV file format with out use any backend (java,php ..) file ? . Because I tried with out use bankend . is it convert or not ? So any one give suggest me . or which is best method to convert ?
I have to write an iPhone application: to start recording when I have something on the audio channel, then to stop the recording after 1.15 s, to obtain a float array with the audio levels and to compare the value to see if they are 0 or 1. Please give me some ideas...I´m a beginner.
Hi Folks , Here is Jagadeesh, New to the Iphone Development Platform , i need to know the Difference among the Templates for our Applications( like we have Navigation, view, window, Open Gl, Tab Bar, Utility type application)over there and there is a small description at the bottom of the pane , can anyone let me know the Complete description and Templates Screen shot(like View based aPpliction screen shot, Window based Screen Shot Etc..., ) so that as a beginner it is very easy to learn....
Hi guys, I was wondering if is it possible to deploy a jar file in Jetty?
If not, are there applications servers who can do so?
I am beginner. I am asking this question because all the docs that i have found, it seems that we can only deploy war archive in application servers. Is that true?
I want to query from dbpedia using their sparql interface (http://dbpedia.org/sparql)
I want to get the abstract of
http://dbpedia.org/page/Herbie_Mann
I know that I have to call abstract ontology
http://dbpedia.org/ontology/abstract
and my final sparsql query is like following :
SELECT ?abstract
WHERE {
{ <http://dbpedia.org/page/Herbie_Mann> <http://dbpedia.org/ontology/abstract> ?abstract}
}
but yet I'm not able to see anything.
please help me as I am beginner in semantic web!
Hello All,
I am beginner on WPF and need your help.
Problem:
I have 4 buttons on the form and need to apply 2 different style on pair of 2 buttons.
Is there any way we can achive this ?
please provide me sample if possible...
Thanks in advance...
Im a beginner for C# language.So i need a help from who genius from this scheme.i need to add a radio button for menu strip. i already change "clickonclick" property to "true".but i need a option like radio button selection. you can see it from windows calculator menu bar.(click View)
how can i get to it via using menustrip peoperty.
Hi all,
Can anyone please tell me the usage of the following declarations shown below.I am a beginner in ada language.I had tried the internet but that was not clear enough.
type Unsigned_4 is mod 2 ** 4;
for Unsigned_4'Size use 4;