About

Professionally, I am a Software Developer and but currently I am doing MSc.
Current Location: Norway
Country of origin: Nepal
University:
In Norway, NTNU (www.ntnu.no || www.item.ntnu.no)
In Finland, TKK (www.tkk.fi)
Personal Website: http://www.prajwalan.com
Personal Blog: http://prajwalan.wordpress.com
Great!
“Knowledge is for sharing” which I found somewhere at the end of your article; very positive thinking which brings you up never down. When I get some time and it strikes in my mind.. I use to visit your blogs…keep it lively.. Thanks!
-Rajendra
Hi,
I’ve installed Visual Webdeveloper 2008 Express Edition with SP1 in Windows Vista Ultimate.
I cannot create a project, I get Project Creation Failed message.
Can you help me with a solution
Thank you.
Hi Manisha, maybe this post helps.
http://developerspoint.wordpress.com/2008/06/25/how-to-deal-with-project-creation-failed-problem-of-visual-studio-2008/
Hi Prajjwalan, long time to get you in contact…
how u doing ???
well can you tell me some useful URL for downloading java PFD e-files… I have found some of these and if you have any will you share with me???
well good luck to ur career … hope to see you here in USA…
Jeewan Aryal
Fairfax, virginia
USA
Hi prajjwalan
I wanted to run this code :
import javax.sound.midi.*;
public class MusicTest1 {
public void play() {
Sequencer sequencer = MidiSystem.getSequencer();
System.out.println(“We got a sequencer”);
}
public static void main(String [] args) {
MusicTest1 mt = new MusicTest1();
mt.play();
}
}
but getting error saying
E:\java files\javafiles\MusicTest1.java:4: unreported exception javax.sound.midi.MidiUnavailableException; must be caught or declared to be thrown
Sequencer sequencer = MidiSystem.getSequencer();
^
1 error
Tool completed with exit code 1
what should i do to run this ???
Please reply me
Hi Jeewan,
You must catch the exception or declare it with “throws” keyword.
Try this:
public void play()
{
try
{
Sequencer sequencer = MidiSystem.getSequencer();
System.out.println(”We got a sequencer”);
}
catch(MidiUnavailableException muexp)
{
}
}
OR
public void play() throws MidiUnavailableException
{
Sequencer sequencer = MidiSystem.getSequencer();
System.out.println(”We got a sequencer”);
}
thankx prajjwalan ,
ya now i understood…
Hello prajjwalan . Thanks for your greatest work .
If you want you can check my website .. I’ve waited some interesting articles in c++ there .
Best regards
Hi Silviu, thanks and what is the URL of your website ?
The url is htp://www.intelliproject.net .
Please send me a feedback if you can !