Forum: Java 7 Days Ago |
| Replies: 1 Views: 203 > am not famelier with this site and i dont know how to ask for help.
Please read member rules (http://www.daniweb.com/forums/faq.php?faq=daniweb_policies) and homework... |
Forum: C# 14 Days Ago |
| Replies: 11 Views: 351 You might want to read the homework (http://www.daniweb.com/forums/faq.php?faq=daniweb_policies) policy if you run into problems and want to ask for help here.
Please show us your code. We're not... |
Forum: Java Nov 5th, 2009 |
| Replies: 7 Views: 245 whiteyoh,
In addition to the post #6 posted by BestJewSinceJC, read this article - http://java.sun.com/developer/technicalArticles/RMI/ObjectPersist/index.html |
Forum: Geeks' Lounge Jul 10th, 2009 |
| Replies: 43 Views: 2,787 Congratulations essential.
Dear members,
We have the power to act only. We do not have the power to influence the result therefore we must act without the anticipation of the result without... |
Forum: C# Jun 22nd, 2009 |
| Replies: 5 Views: 1,261 |
Forum: C++ Jun 17th, 2009 |
| Replies: 3 Views: 331 You have to mention the name of function and address of handler with pthread_create arguments.
pthread_create( &handler, NULL, o.myfun, NULL); |
Forum: Java Jun 15th, 2009 |
| Replies: 15 Views: 1,278 Your have to set environment variable PATH with "C:\j2sdk1.4.1\bin>".
However you may run this program.
C:\j2sdk1.4.1\bin>java -classpath d:\oracle\product\10.2.0\db1\jdbc\lib;c:\; OraThin |
Forum: C++ Jun 10th, 2009 |
| Replies: 23 Views: 1,234 A graphics.h header file and set of .chr and .bgi files are needed to give GUI look.
#include <graphics.h>
...
..
int main()
{
int gd=DETECT; // Graphics Driver |
Forum: C# Jun 10th, 2009 |
| Replies: 5 Views: 1,179 You need a Web Service (develop or buy) and JavaScript code to invoke Web service method. |
Forum: C++ Jun 6th, 2009 |
| Replies: 11 Views: 3,084 chubbs1900>I am trying to self teach C++ and I am to the point of loops. ...
adatapost>Tryout.
1.
1 1 1 1 1
1 0 0 0 1
1 0 0 0 1
1 0 0 0 1 |
Forum: JSP Jun 4th, 2009 |
| Replies: 8 Views: 560 I appreciate your comments. I post my suggestion according to the question.
My answer was "Update database".
And now, where is your answer? |
Forum: JSP Jun 4th, 2009 |
| Replies: 2 Views: 492 Yes, you are on right way. |
Forum: JSP Jun 4th, 2009 |
| Replies: 8 Views: 560 You have to write code to update database. Please follows post #2 and #3. |
Forum: C# Jun 2nd, 2009 |
| Replies: 11 Views: 595 Undoubtedly, frmFDDsearch is a sub-class of Form class.
You can't access those methods which are defined in frmFDDsearch class. |
Forum: C Jun 1st, 2009 |
| Replies: 8 Views: 404 Cut those brances of a tree on which you are hanging. |
Forum: C# May 27th, 2009 |
| Replies: 7 Views: 1,245 Use System.Data.DataSet class or System.Xml.XmlDocument class to load xml document and navigate its element. |
Forum: JSP May 25th, 2009 |
| Replies: 2 Views: 824 The Excel file must be in your application folder. |
Forum: C# May 22nd, 2009 |
| Replies: 2 Views: 599 Dear,
I have to links for you,
http://www.codeproject.com/KB/install/command_lines_setups.aspx
http://www.msifaq.com/ |
Forum: C May 22nd, 2009 |
| Replies: 15 Views: 1,281 Yes, you can copy content of part1 string to length string variable. Your code is correct. |
Forum: Java May 22nd, 2009 |
| Replies: 3 Views: 348 Dear PhoenixInsilico,
They are variables but used in different context. |
Forum: Java May 22nd, 2009 |
| Replies: 23 Views: 1,374 Dear FussyRose,
Your program is written for any hardware (because you choose java platform). After all, Java source code needs compilation if you want to change the os.
so, compile your java... |
Forum: C++ May 20th, 2009 |
| Replies: 14 Views: 587 tux4life >Unportable rubbish which doesn't work.
adatapost>Oh!!! Buddy you should have to test this code before judge. |
Forum: C++ May 20th, 2009 |
| Replies: 14 Views: 587 Yes, it is.
Here is a code.
char *p;
long a[4]={1,1,1,1};
int i=0;
p=(char *)a;
while(i<16) |
Forum: C May 18th, 2009 |
| Replies: 18 Views: 844 I think the following code help you to solve your problem.
char s1[100]="1123#!3344#!948#!20";
char *p;
int i=0;
do
{
p=strtok(s1+i,"#!"); |
Forum: C# May 5th, 2009 |
| Replies: 5 Views: 648 Application deployment is not an issue with .NET. Windows Xp, Vista Operating systems already have .NET Framework. If installed version of .NET framework are not suitable then you have to install a... |
Forum: C# May 2nd, 2009 |
| Replies: 4 Views: 631 All three activities requires different actions but they uses common name (print).
In context of OOP, the term Overload is also know as polymorphism. Meaning of polymorphism is that an entity has... |
Forum: C++ Apr 25th, 2009 |
| Replies: 8 Views: 432 Dear Ancient Dragon,
Thanks for you valuable comments. I found that a far pointer provides more addressing capability and I have used same code as it was published in my post with little... |