Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

Software Development | Forum profile

Forum profile page for Software Development on http://www.techarena.in. This report page is the aggregated overview from a single forum: Software Development, located on the Message Board at http://www.techarena.in. This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional forum profile information for "Software Development" on the Message Board at http://www.techarena.in is also shown in the following ways:

1) Latest Active Threads
2) Hot Threads for Last Week

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.

Site: TechArena Community - Technology and Computer Hardware Support Forums of India - Software Development (site profile, domain info techarena.in)
Title: Software Development
Url: http://forums.techarena.in/software-development/
Users activity: 35 posts per thread
Forum activity: 134 active threads during last week
 

Posting activity on Software Development:

  Week Month 3 Months
Threads: 134 314 808
Post: 522 1,149 2,835
 

Software Development Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
Zecho
55
user's latest post:
Update a page content without...
Published (2009-11-07 11:31:00)
There is the question of how to get the new data in the current window without reloads the document. The following possibilities exist. Changing the src attribute in an included javascript send the address of a PHP script, which delivers the necessary Javascript code (to my knowledge, this method works only in Internet Explorer). <script> Mount a new node in the document (also with the appropriate PHP script as a target, a...
kelfro
37
user's latest post:
Update a page content without...
Published (2009-11-07 11:31:00)
The biggest contributors to information in Web pages usually swallows the design. Elaborate table constructs for Page, style sheets, graphics, navigation, multimedia objects, and javascripts. All of this is often static content, which never changes. But in order to fetch new data from the server, you must reload the entire rule, this accessory will be. The only way to get around this is to use frames or iframes are loaded into the HTML...
Katty
36
user's latest post:
Manage Fileupload with Javascript
Published (2009-11-07 11:33:00)
LastFile is a callback function when the onchange event has occurred on the current fileupload field, this ensures that the last file that was saved selected is precisely in the variable lastselectedFile. All INPUT HTML tag stores. The referred syntax for the same is - function LastFile (evtObject, curTarget) ( lastselectedFile = curTarget; ). Then uploadFile is the core of the whole. uploadFile is the callback function for the event handler...
MindSpace
31
user's latest post:
Help with nvgts.sys
Published (2009-11-08 23:03:00)
The driver which controls SATA drives is the afore mentioned nvgts.sys and causes the system to BSOD, very often. You might try disable SATA in bios and use IDE instead see if it passes the BSOD? For more information , you can check out the following links. Manual Textmode Integration of Nvrd32.sys/ Nvgts.sys nvgts.sys BSoD Issues Hope so it may resolve your above issue.
Reegan
30
user's latest post:
Update a page content without...
Published (2009-11-07 11:31:00)
In order for the cause, must meet the HTML document 2 Requirements. There must be a (I) frame containing what is loaded into the file, which is to manipulate the document. This loading is written by write () into the document. PHP Code: if ( document . getElementsByTagName          & &  Document . getElementsByTagName ...
Modifier
30
user's latest post:
java.lang.NoClassDefFoundError:...
Published (2009-11-08 22:21:00)
The Java.lang. noclassdeffounder occurred in a code when the programmer write a wrong class name on the command prompt during the execution or running of the program.It has do to with the path between where you are (the current directory) and where the .class file is. If that isn't the same it won't work, unless you've done something with the CLASSPATH environment variable. You need to check out the following link, in order to...
opaper
27
user's latest post:
Javascript Tree Menu
Published (2009-11-07 10:44:00)
The first thing you will need to check whether the browser you use supports the property innerHTML. It must understand it, as this property is to be changed within the script. Furthermore, a basis for the functioning of the menu is the ability to change the display property of elements. To my knowledge, this is also possible only to browsers who know the innerHTML property. Here <li> all elements of the page, and check with the...
Praetor
27
user's latest post:
Impement Anti-Adblock script...
Published (2009-11-07 10:45:00)
The following script allows a user to display information (or an alternative advertising message in the browser) when a popup ad blocker, such as Adblock Plus (Firefox Add-On) or WebWasher is enabled. The features of this script are the original code remains unchanged in Advertising, the advertisement will be replaced only if an ad blocker is enabled and you can define a alternative message using the HTML code. The scrip for the same is :...
Walby
19
user's latest post:
How to get date of yesterday in php
Published (2009-11-07 03:52:00)
To get date of yesterday in php follow the code given below : Code: $yesterday = date('d/m/y', mktime(0, 0, 0, date("m") , date("d") - 1, date("Y"))); OR Code: strtotime("-1 day")
Aberto
18
user's latest post:
How to get date of yesterday in php
Published (2009-11-07 03:52:00)
Code: $yesterday = strtotime("-1 day"), ""; $yesterday = " ".date("m, Y", $yesterday); This will show the correct date of yesterday. mktime is a powerful function that can be used in php or you can also use strtotime.It will calculate by it self the overlapping of the months so this will always show the real yesterday.
 

Latest active threads on Software Development::

TechArena Community - Technology and Computer Hardware Support Forums of India
Started 1 day, 9 hours ago (2009-11-09 05:57:00)  by Praetor
Yes its true, that Global variables are considered Bad in Java . Even I was confused when I came to know about this. There are a number of reasons for which Java does not support Global Variables. To tell you one of the reason is Adding state(Global) variables breaks referential transparency . In simple words, you can no longer can understand a statement or expression on its own.
Thread:  Show this thread (5 posts)   Thread info: Java bans Global Variables Size: 481 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Java bans Global Variables :: Software Development :: TechArena Community - Technology and Computer Hard..."
TechArena Community - Technology and Computer Hardware Support Forums of India
Started 1 day, 8 hours ago (2009-11-09 06:57:00)  by Zecho
The other way instead of using the sizeof() operator which Java doesnot support you can do the following: Code: static Runtime rt = Runtime.getRuntime(); . . . long begin, finish; Object O; rt.gc(); begin = rt.freememory(); O = new Object(); finish = rt.freememory(); System.out.println("This had taken " + (begin-finish) + "bytes."); This method although has a short coming...
Thread:  Show this thread (5 posts)   Thread info: How big is an Object in Java? Why Java neglects sizeof? Size: 916 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: How big is an Object in Java? Why Java neglects sizeof? :: Software Development :: TechArena Community - Technology and Computer Hard..."
TechArena Community - Technology and Computer Hardware Support Forums of India
Started 1 day, 2 hours ago (2009-11-09 12:59:00)  by Modifier
The keyword throw and throws are used for Exception handling in Java. Sun Microsystems developed Java has many feature of which is Exception Handling. Precisely a throw statement initiates an exception to be thrown, where as the throws clause declares that the method is expected to throw one or more checked execptions. Thus both are different and perform two different task.
Thread:  Show this thread (4 posts)   Thread info: Difference between throw and throws in Java Exception Handling Size: 486 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Difference between throw and throws in Java Exception Handling :: Software Development :: TechArena Community - Technology and Computer Hard..."
TechArena Community - Technology and Computer Hardware Support Forums of India
Started 1 day, 2 hours ago (2009-11-09 13:00:00)  by Zecho
Even I am not that good with C++ programming because I am also in the process of learning it. But I can help you with definition of pointer . A pointer in C++ is said to point to the memory location which is stored in it. In other words, a pointer variable contains the memory address where the actual object can be found. In C++ while defining pointers we have also specify the type of ...
Thread:  Show this thread (4 posts)   Thread info: Deleting the same pointer twice in C++ Size: 529 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Deleting the same pointer twice in C++ :: Software Development :: TechArena Community - Technology and Computer Hard..."
TechArena Community - Technology and Computer Hardware Support Forums of India
Started 1 day, 4 hours ago (2009-11-09 11:00:00)  by $tatic
Hello, what you seek is called the "reflection" .NET, but using an "interface" seems more appropriate: Interface: Code: Public Interface ImageControl Property PropertyMagic() As String End Interface The implementation on the UserControls Me: Code: Public Class UserControl1 Implements ImageControl Public Property PropertyMagic() As String Implements ImageControl...
Thread:  Show this thread (5 posts)   Thread info: How to access a property or attribute by its name passed as parameter Size: 1,981 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: How to access a property or attribute by its name passed as parameter :: Software Development :: TechArena Community - Technology and Computer Hard..."
TechArena Community - Technology and Computer Hardware Support Forums of India
Started 1 day, 6 hours ago (2009-11-09 09:01:00)  by KANAN14
I am a new learner of Java . I have just started to learn Java from last month and still not that well versed with it. Yesterday while reading a book on Java I came accross something named JNLP . There was no definition given for this thing. Only its full form was given which is Java Network Launching Protocol . Please give me some simple and understanding definition for it ?
Thread:  Show this thread (4 posts)   Thread info: Explain JNLP-Java Network Launching Protocol Size: 534 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Explain JNLP-Java Network Launching Protocol :: Software Development :: TechArena Community - Technology and Computer Hard..."
TechArena Community - Technology and Computer Hardware Support Forums of India
Started 1 day, 6 hours ago (2009-11-09 09:05:00)  by Harmony60
Thank you, I changed the loop in my code. Thank you for naming conventions if you have a site that would help me then please help me. But the error persists! So I agreed, after checking, my table is not initialized. But I counted the initialized when I put the values inside. How can I do in this method to initialize with the number of files found?
Thread:  Show this thread (5 posts)   Thread info: NullPointerException exception occures in "AWT-EventQueue-0" Size: 414 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: NullPointerException exception occures in "AWT-EventQueue-0" :: Software Development :: TechArena Community - Technology and Computer Hard..."
TechArena Community - Technology and Computer Hardware Support Forums of India
Started 1 day, 6 hours ago (2009-11-09 09:04:00)  by Praetor
Java is interpreted. The source is compiled into pseudo code or byte code and executed by a Java interpreter: the Java Virtual Machine (JVM). This concept is the basis of the slogan of Sun Java WORA (Write Once, Run Anywhere: write once, run anywhere). Indeed, the byte code, it does not contain code specific to a particular platform can run and get almost the same results on any machine with...
Thread:  Show this thread (5 posts)   Thread info: Discussion on JAVA Size: 839 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Discussion on JAVA :: Software Development :: TechArena Community - Technology and Computer Hard..."
TechArena Community - Technology and Computer Hardware Support Forums of India
Started 1 day, 16 hours ago (2009-11-08 23:03:00)  by MindSpace
The driver which controls SATA drives is the afore mentioned nvgts.sys and causes the system to BSOD, very often. You might try disable SATA in bios and use IDE instead see if it passes the BSOD? For more information , you can check out the following links. Manual Textmode Integration of Nvrd32.sys/ Nvgts.sys nvgts.sys BSoD Issues Hope so it may resolve your above issue.
Thread:  Show this thread (4 posts)   Thread info: Help with nvgts.sys Size: 795 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Help with nvgts.sys :: Software Development :: TechArena Community - Technology and Computer Hard..."
 

Hot threads for last week on Software Development::

Software Development
Started 5 days, 4 hours ago (2009-11-05 10:40:33)  by fellah
When you say equity, you mean full equality, the 2 trees and structurally identical data? If so this should be a recursive algorithm in this style: Code: boolean estEgal(Node node1, Node node2) { if(node1 == null) { return (node2 == null); } if(node2 == null) { return false; } return (node1.value == node2.value) && isEqual(node1....
Thread:  Show this thread (13 posts)   Thread info: Test the equivalence of two binary trees Size: 901 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Test the equivalence of two binary trees :: Software Development :: TechArena Community - Technology and Computer Hard..."
Software Development
Started 5 days, 1 hour ago (2009-11-05 13:29:48)  by Reegan
But absolute, since you pass a pointer to an array at large then you must become accustomed to pass the array size in parameter (size_t n). I may be wrong but I think the compiler would give you an error.
Thread:  Show this thread (10 posts)   Thread info: Pointer of file in parameter Size: 269 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Pointer of file in parameter :: Software Development :: TechArena Community - Technology and Computer Hard..."
Software Development
Started 5 days, 3 hours ago (2009-11-05 11:30:44)  by Modifier
The links are displayed on the page have not been determined for calls to databases but, each time a new element of the section is added, it updates itself automatically, using a script, a text file which the new link is included and the oldest is removed. It is, in fact, this text file that is inserted into the page source code. In this way we avoid a half dozen calls to databases each time a...
Thread:  Show this thread (10 posts)   Thread info: What are the ways to manage a database more efficiently Size: 540 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: What are the ways to manage a database more efficiently :: Software Development :: TechArena Community - Technology and Computer Hard..."
Software Development
Started 5 days, 4 hours ago (2009-11-05 10:41:31)  by Praetor
MySQL is the Structured Query Language is not only a standard language for communicating with databases. Each database introduces types of field values that are not necessarily present in others. However, there is a set of types that are represented in all of these bases. The types of different fields in MySQL is Alphanumeric - Contain numbers and letters. They have a limited length (255 ...
Thread:  Show this thread (10 posts)   Thread info: How to edit rows in MySQL Size: 930 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: How to edit rows in MySQL :: Software Development :: TechArena Community - Technology and Computer Hard..."
Software Development
Started 5 days, 3 hours ago (2009-11-05 11:35:51)  by Reegan
The selection of all or part of a table is done through the Select statement. In this selection must be specified - The fields we want to select & The table that we make the selection. Like for example in a table model you have a customers selection consist of names and addresses of customers with a statement like this - Select name, address from customers. If you wanted to select all fields...
Thread:  Show this thread (10 posts)   Thread info: How to select multiple table in MySql Size: 792 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: How to select multiple table in MySql :: Software Development :: TechArena Community - Technology and Computer Hard..."
Software Development
Started 5 days, 3 hours ago (2009-11-05 11:31:26)  by Reegan
The link between tables is one of the most tricky and can lead to the absolute slowdown in database because "small" details that prove fatal. Imagine working with a small Database consisting of two tables of 1000 records each. Now imagine a simultaneous selection in which we impose the condition that the value of the first field is equal to a second, which is done frequently. In such cases, ...
Thread:  Show this thread (10 posts)   Thread info: Optimize performance on a SQL Database Size: 780 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Optimize performance on a SQL Database :: Software Development :: TechArena Community - Technology and Computer Hard..."
Software Development
Started 5 days ago (2009-11-05 14:29:05)  by !const
It is "simple enough" in fact. Clear your Excel Copy after another action. Whether it's in code, or "normal" utilization. Besides, you should have seen that your selection was not as small dots flashing on a copy. You have copied and pasted almost to the following. You created your new file. You can chat live with your first file. You copy your selection. You ...
Thread:  Show this thread (8 posts)   Thread info: Problem in macro for special paste Size: 1,564 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Problem in macro for special paste :: Software Development :: TechArena Community - Technology and Computer Hard..."
Software Development
Started 5 days, 6 hours ago (2009-11-05 08:36:00)  by kelfro
jClientUpload is a client-side JAVA™ component (Applet or WebStart) that allows to upload files and folders to a web or ftp server. This component could be integrated in any application. Server-side technology could be JSP/Servlet, PHP, CGI/PERL, ColdFusion or Microsoft ASP. Front-end provides an upload progress bar, a cancel button and drag&drop support. jClientUpload supports very large ...
Thread:  Show this thread (7 posts)   Thread info: Upload greater than 2 GB Size: 708 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Upload greater than 2 GB :: Software Development :: TechArena Community - Technology and Computer Hard..."
Software Development
Started 3 days, 11 hours ago (2009-11-07 03:53:00)  by AZUL
Sorry for that but I am addicted to copy (CTRL + C) and paste (CTRL + V) Anyways then the code would be like this: Code: SELECT * FROM `comment` INNER JOIN `comment_member` ON comment_member.cm_id_comment = comment.id WHERE cm_id_member =1
Thread:  Show this thread (7 posts)   Thread info: Sql query with join Size: 602 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Sql query with join :: Software Development :: TechArena Community - Technology and Computer Hard..."
Software Development
Started 1 week ago (2009-11-03 08:03:00)  by !const
My friend, simply write the main functions instead of showing the whole code which is useless to us. And by the way what is interret of your functions that wrap your libc?
Thread:  Show this thread (6 posts)   Thread info: Choice of data structure Size: 236 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Re: Choice of data structure :: Software Development :: TechArena Community - Technology and Computer Hard..."