Click here to Skip to main content
Page 1 of 11
Page Size: 10 · 25 · 50


Author filtered by: Prasad Khandekar [x]
Answer 7 May 2013   license: CPOL
Hello Varsha,Please have a look at this documentation http://developer.android.com/reference/android/hardware/Camera.html[^]. Camera.ShutterCallback interface is what I think will interest you.Regards,
My vote of 5 by Prasad Khandekar
Answer 6 May 2013   license: CPOL
Hello,You may want to have a look at this Great Article.Regards,
Answer 6 May 2013   license: CPOL
Hello,There is no direct support for obtaining the ip address of the machine from JavaScript. But little bit server side code and AJAX you should be able to obtain the Ip address. So write a WebMethod which will retrieve the IP Address from the Request object and return it to caller. For...
My vote of 5 by Prasad Khandekar
asp.net java script page blocker by Prasad Khandekar
Answer 6 May 2013   license: CPOL
Hello,Use JQuery BlockerUI plugin[^]. Usage is function buttonClicked() { $.blockUI({ message: ' Just a moment...' }); // Other code }Regards,
Regular Expression Validator by Prasad Khandekar
Answer 5 May 2013   license: CPOL
Hello,Try with this expression ^(2[0-9]{3}[A-H]{0,2})$ // as partly suggested by (André Kraak)It matches all possible cases.For regular expressions there is an excellent tool called Expresso^]. Grab it.Regards,[Edit: Using ^ and $ checks that the whole line contains only...
Fetch data from another website by Prasad Khandekar
Answer 5 May 2013   license: CPOL
Hello,Please have a look at this great article.Regards,
My vote of 5 by Prasad Khandekar
Forum Message 5 May 2013  
Well written article! Great Job.
Answer 5 May 2013   license: CPOL
Hello,Well this is really simple. Please have a look at the LinkButton documentation[^] & this[^]. The Link button supports both the onClick and onClientClick handlers. So when a button is clicked the client side handler will execute first followed by the postback which would run the server...
C#
Re: Calendar Recommendations by Prasad Khandekar
Forum Message 2 May 2013  
Hello, Please have a look at this demo[^] Regards, Prasad P. Khandekar Knowledge exists, man onl
Forum Message 2 May 2013  
Hello, Please have a look at this tutorial[^]. Regards, Prasad P. Khandekar Knowled
Forum Message 2 May 2013  
Hello, try specifying the instance parameter in connection string. Following text is extracted from the JTDS FAQ. SQL Server can run multiple so-called "named instances" (i.e
Re: Read JNDI from c# by Prasad Khandekar
Forum Message 2 May 2013  
Hello, Personally I think you should not do it this way. I will rather suggest that you create a Web service in Java for sending the message and invoke it from the C#. It's very clean. The webservi
Forum Message 2 May 2013  
I don't think you will be able to use MessageBox on Mono Android. MessageBox class is part of System.Windows.Forms package and is not available on Mono for Android. Instead please have a look at
Re: Android Socket Client by Prasad Khandekar
Forum Message 2 May 2013  
Hello Kumar, You can find working examples here. Though not related to binary data transmission, but should get you started.
My vote of 4 by Prasad Khandekar
Remove item from list box by Prasad Khandekar
Answer 2 May 2013   license: CPOL
Hello,Since both the select boxes are bound to the same data source you can write the client side javascript function similar to one shown below to delete the items. function removeItem() { var s1 = document.getElementById('s1'); var idx = s1.selectedIndex; if (s1 && idx > -1)...
Forum Message 30 Apr 2013  
Hello, I am assuming that you have written the OnItemLongClickListener to determine the selected item. To delete the selected item you can call remove method on the ArrayAdaptor if you
Forum Message 30 Apr 2013  
Hello, Please have a look at my answer[^] to similar post. Regards, Prasad P.
Re: Crete a APK file for sencha by Prasad Khandekar
Forum Message 30 Apr 2013  
Hello, Here[^] is nice demo available from the creatror of the sencha touch frameowrk. Unfortunately current build only
Forum Message 30 Apr 2013  
Hello, Here[^] is a good tutorial available on IBM Developerworks. Regards, Prasa
My vote of 5 by Prasad Khandekar
Forum Message 30 Apr 2013  
:thumbsup: Nice Utility!
Answer 29 Apr 2013   license: CPOL
Hello,You can use one of the following.Javascript Image Slider - No jQuery[^]WOW SLider[^]Blueberry - Simple Fluid Responsive JQuery Image Slider[^]The above list is just a tip of an iceberg. Google for it and you will find many more.Regards,
Struts 2 Tag in jsp by Prasad Khandekar
Answer 29 Apr 2013   license: CPOL
Hello,It's not very clear how you are passing this data from controller to the VIEW, and secondly whether you want to display it as a list or a table. If your are passing it in the form of a List of one or more bean instance and you want to display the data in a HTML Select list and that the...
My vote of 5 by Prasad Khandekar
Forum Message 29 Apr 2013  
Great & useful tool. Thank's for sharing the code.
My vote of 5 by Prasad Khandekar
Forum Message 29 Apr 2013  
Certainly a nice complement to your other article. Request you to please link these two articles.
My vote of 5 by Prasad Khandekar
Forum Message 29 Apr 2013  
A very good article. Certainly qualifies itself as a Reference Cheet Sheet.
Make Class and Object in C# by Prasad Khandekar
Answer 29 Apr 2013   license: CPOL
Hello,Change button1_click as shown below. private void button1_Click(object sender, EventArgs e){ Customer c2 = Customer.GetCustomer("18-020-00000005"); textBox1.Text = c2.Name;}Forgot to add followingMake the GetCustomer mthod as static public static Customer...
C#
Answer 28 Apr 2013   license: CPOL
Hello,Download & Install Oracle Data Provider for Net[^]. Use code similar to one shown below to connect to Oracle & Retrieve the data.string strPass;string strCon = "USER_NAME/PASSWORD@//DB_SERVER_HOST_OR_IP:PORT/SERVICE_NAME";using (OracleConnection conn = new...
Answer 28 Apr 2013   license: CPOL
Hello,You can feof function to check the end of file. Please see the modified code below.$file = fopen("m.txt","r+") or exit("couldn't open file");while(!feof($file) { echo fgets($file) . "";}fclose($file);For fgets function if you do not specify the length then it will...
PHP
Answer 28 Apr 2013   license: CPOL
Hello Amit,Try adding dataType:"json" in the ajax call. It should return the JSON object instead of a string. Your modified code will look something like the one shown below. function getEventData() { result = ""; $.ajax({ url:...
Re: JSP StyleID clarification by Prasad Khandekar
Forum Message 28 Apr 2013  
I am thinking that the code posted is for a jsp page using struts library. To answer your question the modified code will render the checkbox with id as duplicatechkbx. The checkbox will be either che
Answer 28 Apr 2013   license: CPOL
Hello,DatabaseClass in WebMatrix has a method named GetLastInsertId which Returns the identity column of the most recently inserted row. Use it to retrieve the AuditNum value and then issue the second insert. For more help see this link[^]Regards,
my browser don't load the picture by Prasad Khandekar
Answer 28 Apr 2013   license: CPOL
Your code will only work when you view page locally using file:/// protocol. To be able to view images the images should be accessible by the web server. You can create a folder named say images under your web application folder and change the HTML to something shown below.Regards,
C#
Answer 28 Apr 2013   license: CPOL
Hello,Try changing the PHP code as shown below.while (($file = readdir($dh)) !== false) { if ($file == ".") { echo '..'; } elseif ($file == "..") { echo '..'; } else { echo ''. $file . ''; echo ''; $i = $i + 1; }}Your...
My vote of 4 by Prasad Khandekar
Forum Message 28 Apr 2013  
Good learning material!
My vote of 5 by Prasad Khandekar
Forum Message 28 Apr 2013  
Nice, liked it.
Answer 28 Apr 2013   license: CPOL
Hello,Try changing your if condition as shown below.if (txtPath.getText() != null && txtPath.getText().trim().length > 0) dir=txtPath.getText();else { fd = new FileDialog(frm, "Load your file", FileDialog.LOAD); fd.setVisible(true); dir=fd.getDirectory() +...
Answer 28 Apr 2013   license: CPOL
Hello,Here on code project you can find many articles about telnet. I am listing few of them.Terminal Control Library (C# VT100/ANSI/XTERM SSH Telnet)[^]Quick tool : A minimalistic Telnet library[^]Regards,
Re: Speaking of getting old by Prasad Khandekar
Forum Message 26 Apr 2013  
:thumbsup: Prasad P. Khandekar Knowledge exists, man only discovers it.
Forum Message 26 Apr 2013  
I think's it all about BUSINESS The Arabians need to learn that they can't keep comin' over here and blowing stuff up. Let's set off a couple of nukes in Islamabad, burn down Pragu
Re: My vote of 5 by Prasad Khandekar
Forum Message 26 Apr 2013  
Wow, it's older than CodeIgnitor? Thank's for sharing this information. Friend of mine is actually starting a PHP project (Portal) & want's to know about which framework he should use. Initially I kin
Forum Message 26 Apr 2013  
Hello, Please have a look at Java Diff Utils project. You can compare two files using it. Here is a sample code which prints the differences
Forum Message 26 Apr 2013  
Hello, To be able to test this way, you will need an In memory JNDI server and load add bean or POJO's to the local JNDI tree. I Suggest to use
Forum Message 26 Apr 2013  
Hello, The correct command is felix:install file:/path/to/bundle/bundle.jar. See this
Forum Message 26 Apr 2013  
It's definitely possible. You can use FTP server on one machine and use a java program to synchronize a local folder with remote folder on FTP server. The FTP Server must be accessible from internet.
My vote of 5 by Prasad Khandekar
Forum Message 26 Apr 2013  
Nice, How does it compares with CodeIgnitor?

Page 1 of 11
1 2 3 4 5 6 7 8 9 10


Advertise | Privacy | Mobile
Web04 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid