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


Author filtered by: Hariharan Arunachalam [x]
Answer 2 Apr 2013   license: CPOL
I have to agree with Sergey Alexandrovich Kryukov. It depends completely on what you are intending to do, i.e the requirements of your project & task. However, just to help you get the picture, here's my point of view:1. Javascript is mostly used as an excellent eye candy enhancer. You have...
Google Map, JavaScript by Hariharan Arunachalam
Answer 2 Apr 2013   license: CPOL
The reason only the last value is being displayed is simply because that IS the current value of l1 and l2 when it is rendered. Like thisIterations1. l1=41.037930622465289 l2=29.4282531738281252. l1=40.896905775860006 l2=30.4774475097656253. l1=18.896905775860006...
Indiscriminate down-voting? by Hariharan Arunachalam
Forum Message 28 Mar 2013  
Could someone please explain why 3 of my answers get down-voted in a span of 10 mins, one of which is an accepted answer and the other two were directed towards a possible solution without giving the
inline edit HTML Table using Javascript by Hariharan Arunachalam
Answer 28 Mar 2013   license: CPOL
You should peruse this - JEditable[^]. This fits your requirement in my opinion.
GetTempFolder with special type by Hariharan Arunachalam
Answer 28 Mar 2013   license: CPOL
Yes, return Path.ChangeExtension( folder, "txt")This can be your modified code to do the file checking properly too-Private Function GetTempFolder() As String Dim folder As String = Path.ChangeExtension(Path.Combine(Path.GetTempPath, Path.GetRandomFileName)) Do...
Answer 28 Mar 2013   license: CPOL
What you are asking for is close to impossible without sincere effort. Remember that since your program will have absolutely no connection with the target application which has rendered the word in the first place (your browser, notepad etc), you have to resort to different tactics than just a...
reading text lines from a txt file by Hariharan Arunachalam
Answer 28 Mar 2013   license: CPOL
Your code should benamespace test1{ class Program { static void Main(string[] args) { StreamReader A; A = new StreamReader("A.txt"); while (!A.EndOfStream) { ...
C#
Answer 28 Mar 2013   license: CPOL
Yes, its possible.Add this lineobjCompilerParameters.CompilerOptions = "/reference:MyCurrentAssemblyWithTheFruitClass.exe";MyCurrentAssemblyWithTheFruitClass.exe (or .dll) which is the file containing the assembly with the fruit class. My test project was a console application, so I...
C#
MP3 Player in asp.net by Hariharan Arunachalam
Answer 27 Mar 2013   license: CPOL
Try working using this - Google MP3 Player[^]Implement the playlist feature and use javascript to work the player on the client side.
Answer 27 Mar 2013   license: CPOL
I'd say a better option is to use the inbuilt jquery datatable feature to apply a style class to that column and then simply use css to set the background color for that class.$(document).ready( function() { $('#example').dataTable( { "aoColumnDefs": [ { "sClass": "my_class",...
Answer 13 Mar 2013   license: CPOL
A simple google search reveals a lot of 'converters'. As an example you can use - http://mdbtools.sourceforge.net/[^]
Answer 13 Mar 2013   license: CPOL
You could use the inbuilt validation feature on the datepicker$(function() { $( "#datepicker" ).datepicker({ minDate: -1D, maxDate: "+1D" }); });or if you need to validate after the selection, simply use basic javascript functions to check the date manually after hooking to the...
Answer 28 Jan 2013   license: CPOL
Use an upload form control after you've authorized, don't require authorization on download links. That's the best answer I can give based on your question.A simple form like this can do the work on the client side. Upload
DateTime field type by Hariharan Arunachalam
Forum Message 21 Feb 2012  
Fantastic article. Wonderful plugin and they work absolutely well together :) Now I need to ask a question on behalf of our website development team who are using jTable at the moment. Most databa
Re: Wondergul OOTB solution....Also... by Hariharan Arunachalam
Forum Message 1 Nov 2011  
Thanks Gil, Both the recommendations you gave are already set. I do have a static ip, the router is set to forward the range of ports i am using. What I meant was, could be give me an exam
Wondergul OOTB solution....Also... by Hariharan Arunachalam
Forum Message 1 Nov 2011  
Thanks and kudos on this wonderful out of the box solution.. . However, I do have a minor inquiry. How would I go about creating a TCP server that accepts connections fr
Storing an enum value in an MVC model by Hariharan Arunachalam
Question 24 Jun 2011   license: CPOL
I have an MVC model,Imports System.ComponentModel.DataAnnotationsPublic Class Person Public Property Id as integer Public Property Sex as GenderEnd ClassUnfortunately this does not store the Sex property into the db when the framework creates it. It contains only...
JQuery by Hariharan Arunachalam
Forum Message 25 May 2011  
This qualifies as a piece of jQuery code snippet. Doesn't actually qualify for anything.
Inadequate material by Hariharan Arunachalam
Forum Message 25 May 2011  
Though the content might be of help to beginners, this material is hardly enough to qualify as a valid tip. Maybe a little more content should be added?
Agree: Not an article by Hariharan Arunachalam
Forum Message 22 May 2011  
I agree with dave on this one. This is not an article. Its a set of example codes and it works off a commercial product. Saed, I'd suggest moving this to the product's development forums.
Excellent Article by Hariharan Arunachalam
Forum Message 22 May 2011  
I had recently been reading up on anti-patterns since lets face it, good things just started to fall out of place. Yours is an excellent article describing pretty clearly and boldly the things that yo
Re: Nice Into by Hariharan Arunachalam
Forum Message 11 May 2011  
Hmm... Thats an interesting direction. I don't think currently redis can be adopted to write directly into the disk. And, somehow that idea does not seem too appealing to me.
Re: Nice Into by Hariharan Arunachalam
Forum Message 10 May 2011  
Thank you. I had had this thought when I started on redis. But I think that its quite an unreasonable demand for now; not to have a server running. That would be equivalent to using MySQL without the
Re: Cool by Hariharan Arunachalam
Forum Message 3 May 2011  
Thnx matt! I've been through hell trying to use other databases for quick & fast storage. Its a cliche statement but still - Redis saved the day!
Article 2 May 2011   license: CPOL
Create a simple redis pub/sub client pair in VB.NET
Hyper active assimilation by Hariharan Arunachalam
Forum Message 29 Apr 2011  
Working from 7AM to 5AM will make things seem so much more vivid :D Single handedly designing and programming an enterprise suite of applications isn't actually taxing; Its almost like working for no
Article 29 Apr 2011   license: CPOL
Create a usable redis component to enable usage of the redis storage system
Forum Message 29 Apr 2011  
Small note: Pasting javascript into the address bar is NOT possible in IE9. Don't know about IE8 and company. It just goes into the search engine.
Problem in socket programming by Hariharan Arunachalam
Answer 29 Apr 2011   license: CPOL
One problem might be in case you the passive port set 1400 - 1410. Try opening it up in the router.
Answer 28 Apr 2011   license: CPOL
I am going to assume you need to store an IEnumerable(Of String) into a file separated by comma. This can be done fairly directly using the Aggregate extension.' We need to write the IEnumerable(Of String) SourceCollection into the text file "Numbers.txt" ...
Watching a MySQL table in VB.net by Hariharan Arunachalam
Question 21 Mar 2011   license: CPOL
I am developing a whole bunch of applications (that run on a network) and connect to common MySQL DB.Of these applications, most of them involve waiting for a table to 1. Have a new row 2. Change a field 3. Retrieve rows by a field conditionMy first instinct was to...
Forum Message 8 Mar 2011  
Reason for my vote of 5 A nice and simple way of putting things on the right track
Tip/Trick 8 Mar 2011   license: CPOL
These are the same classes in VB.NET in case needed.I've also made the mail server address a parameter to allow the code to be runnable on copy paste.The problem while sending the bigger files was the smtp client's timeout(default 100s). I've made this dependent on the attachments' size...
C#
Forum Message 8 Mar 2011  
Yes that will do it. I also want to add a correction at this point, as if the filesize is too small we might override the default timeout. So I've changed Smtp.Timeout = attachments.Sum(Functio
Forum Message 7 Mar 2011  
Thank you! I've got the complete implementation of a mailer client that I will be uploading soon. Running tests and functional analysis on it now.
Answer 7 Mar 2011   license: CPOL
Could you post your adapter fill query for the expense table?In all probability you have gotten the query mistaken
sms send in vb6 created application by Hariharan Arunachalam
Answer 7 Mar 2011   license: CPOL
In order for any of us to help, you need to provide us with your current progress, any things you need to specifically address, your current code, you problems areas etc. Based on your question, the maximum I can provide you is this linkVB6 SMS Tutorial[^]
VB
Forum Message 6 Mar 2011  
Anyways fixed the issue with bigger files. Add a SMTPClient timeout. The default of 100s is not enough for 500kb files on a non-broadband connection apparently. :(
Forum Message 6 Mar 2011  
The reason is because I have to deal with huge chunks of reporting data. CSV files around 100Mb :)
Forum Message 6 Mar 2011  
I seem to be getting a Operation Timed Out Exception when trying to send a 530kb image file as attachment. I think a complete implementation of these classes in VB.net will make sure that the incess

Page 1 of 1


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