5,346 Posted Topics
Re: aveek, [CODE=Java] .... JTabbedPane tp=new JTabbedPane(); tp.addTab("one",new JPanel()); tp.addTab("two",new JPanel()); tp.setTitleAt(0,"New Title"); // New title for 1st tab [/CODE] | |
Re: Cardboard Box, Use bb code tags to post source code. Source code must be surrounded with code tags. For example, [noparse] [CODE=VB.NET] ... statements.. [/CODE] [/noparse] | |
Re: Welcome anne_1000, Google csv is unicode text file. | |
Re: With download code, you may update increment counter to a database or file. Steps: 1. When user clicks on button to download a file. 2. Read increment counter value from database or from file. 3. Increment by 1. 4. Write to a file or update to a database. | |
Re: applefat, Post complete source code. | |
| |
Re: Welcome surima, You should have to read, 1. [URL="http://www.daniweb.com/forums/announcement118-2.html"]Homework policy[/URL] 2. [URL="http://www.daniweb.com/forums/announcement118-3.html"]How to post source code?[/URL] 3. Title of thread must reflect your question. Show your code. Do not forget to use code tags. Source code must be surrounded with code tags. For example, [noparse] [CODE=Java] ... statements.. [/CODE] [/noparse] | |
Re: naeem1973, Nothing wrong with csurfer's explanation or code. csurfer suggests a best method to you. If you want to char *key[16] - It means 16 pointers of type char and you have to allocates three bytes char array to represent each string. Little modification to csurfer's code but this way … | |
Re: danielagaba, Are you developing a device application? | |
Re: Welcome sanjaypsachdev, Show us your code. | |
Re: yash777, Show us your code where you got a problem. Use classes from System.XML namespace or Use DataSet class. | |
Re: kerek2, Did you create typed or untyped dataset? | |
Re: Create instances of RequiredField control dynamically. | |
Re: Use, [CODE=java] switch(choice.charAt(0)) { .. } [/code] | |
Re: kinger29, Must Read - [URL="http://java.sun.com/javase/technologies/security/"]http://java.sun.com/javase/technologies/security/[/URL] | |
Re: Acidburn, Use if statement instead of while. [CODE=Java] if(en.hasMoreElements()) { splashScreen = new Alert(null,Integer.toString(i++), null,AlertType.INFO); splashScreen.setTimeout(Alert.FOREVER); Display.getDisplay(this).setCurrent(splashScreen); } [/CODE] | |
Re: nice_true, Read this article : [URL="http://www.c-sharpcorner.com/UploadFile/ankithakur/RemoteApplicationDomain01162007060602AM/RemoteApplicationDomain.aspx"]http://www.c-sharpcorner.com/UploadFile/ankithakur/RemoteApplicationDomain01162007060602AM/RemoteApplicationDomain.aspx[/URL] | |
Re: Welcome Ayeman, Purchase some good books and concentrate on basics of java. Don't waste your time. Ready-made cothes are poor fits. | |
Re: Welcome harshit99, What you said in your question is quite easy. I think you have jsp knowhow. Use javamail api and java.sql api. If any problem with your code please post it. Use bb code tags. Here is daniweb rule, so read it. 1.[URL="http://www.daniweb.com/forums/announcement118-2.html"]Homework policy[/URL] 2.[URL="http://www.daniweb.com/forums/announcement118-3.html"]How to post source code?[/URL] | |
Re: loozax, Problems are good for the programming. I read all threads(three) posted by you; all threads are missing suitable thread title and you never follow-up valuable comments posted by venerable members. Please show us your work and read following rule: 1.[URL="http://www.daniweb.com/forums/announcement118-2.html"]Homework policy[/URL] 2.[URL="http://www.daniweb.com/forums/announcement118-3.html"]How to post source code?[/URL] 3.Title of thread … | |
![]() | Re: ragnarok511, >There are number of errors: [CODE=Java] if (Book.title == Book.getTitle()) <== static or instance? [/CODE] >Methods - borrowBook, returnBook are not implemented properly. >Use ArrayList or Vector classes instead of arrays [CODE=Java - Book class] public class Book { private String title; private boolean borrowed=false; public Book() {} public … |
Re: ctyokley, >Format of the initialization string does not conform to specification at Index 33. Where ? | |
Re: GDICommander, Read this [URL="http://mindprod.com/jgloss/remotefileaccess.html"]http://mindprod.com/jgloss/remotefileaccess.html[/URL] | |
Re: akulkarni, Java Jagged array : array of array. [CODE=Java] int a=4; int m[][]=new int[a][]; for(int i=0;i<a;i++) { m[i]=new int[a-i]; for(int j=0;j<a-i;j++) { System.out.print(" " + m[i][j]); } System.out.println(); } [/CODE] | |
Re: SammiSmi, MSDN online pages: [URL="http://msdn.microsoft.com/en-us/vcsharp/aa336809.aspx"]C# Language[/URL] [URL="http://msdn.microsoft.com/en-us/asp.net/default.aspx"]http://msdn.microsoft.com/en-us/asp.net/default.aspx[/URL] | |
Re: Shaitan00, compareID method either static or friend. | |
Re: fghdmhmmd>no anybody help me ? We want to help you but do not use [icode]it's urgent,please help me[/icode]. Post your project code. Create a zip and attach it with your next post. | |
Re: Welcome Nada_ward, You should have to read, 1. [URL="http://www.daniweb.com/forums/announcement118-2.html"]Homework policy[/URL] 2. [URL="http://www.daniweb.com/forums/announcement118-3.html"]How to post source code?[/URL] 3. Title of thread must reflect your question. Show us your work. Do not forget to use code tags. Source code must be surrounded with code tags. For example, [noparse] [CODE=VB.NET] ... statements.. [/CODE] | |
Re: lolwtf, Use BackgroundWorker component - Read more about [URL="http://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker.aspx"]http://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker.aspx[/URL] | |
Re: bornok15, Can I see your code? Post source code with BB code tags. | |
Re: shankbond, I think you are using a web-service which was developed by someone else. Isn't it? | |
Re: smithss, Pointer/array misconception. Declaration, [CODE=C++] int** a; [/CODE] is called pointer to pointers. How many int pointers you want? >3 [CODE=C++] a=new int *[3]; // 3 int pointers [/CODE] Now you want to allocate more memory for elements [CODE=C++] a[0]=new int[4]; // array of 4 int elements a[1]=new int[2]; // … | |
Re: Welcome niraj.thehycker, Absolutely Yes. You have to write a code that update database. If you have a code and got a problem then post that code with code tags. 1. [URL="http://www.daniweb.com/forums/announcement118-2.html"]Homework policy[/URL] 2. [URL="http://www.daniweb.com/forums/announcement118-3.html"]How to post source code?[/URL] Show your code. Do not forget to use code tags. Source code … | |
Re: NaeemAbbas, Use code tags. Source code of your post must be wrapped with code tags. For example, [noparse] [CODE=VB.NET] ...statements.. [/CODE] [/noparse] PS: Check a database file at bin folder. | |
Re: Welcome gaurav_kl, Did you googled? [URL="http://www.cs.gmu.edu/cne/modules/dau/stat/clustgalgs/clust5_bdy.html"]Algorithm[/URL] | |
Re: ishaanarora, Use [B]struct [/B]keyword with function parameter. [CODE=C] void IVR_AL_GET_VM_RETRIEVAL_PROFILE_REQ(struct ds *pline, char xmlToken[][5000]) { .... } [/CODE] | |
Re: Priya, Read this : [URL="http://databases.about.com/cs/specificproducts/g/candidate.htm"]http://databases.about.com/cs/specificproducts/g/candidate.htm[/URL] | |
Re: Divide slider's value with majortick spacing. [CODE=Java] ... int slidervalue=slider.getValue()/100000; ... [/CODE] | |
Re: ricksvoid, Use classes of System.Net.Mail namespace. | |
Re: shizu, Check this msdn link [URL="http://social.msdn.microsoft.com/Search/en-US/?query=CScrollView&ac=8"]http://social.msdn.microsoft.com/Search/en-US/?query=CScrollView&ac=8[/URL] | |
Re: oopg, Did you allocate memory elsewhere in the program? Post complete code if you have. I didn't find any memory allocation statement in your program. | |
Re: nova2177, There is nothing official about set/get/change in c++. Set/Get or Setter/Getter - The basic premise of a getter/setter is to you give access to a private field within your class, thus allowing a user of that class to alter the state of that fields without knowing about or interfering … | |
Re: brainbox, Select group on customer table's primary key field. | |
Re: Welcome waleed_cs2000, GetSchema() Method return a DataTable instance. Use "IndexColumns" argument to list the primary key meta info. [CODE=C#] var lst = dc.Connection.GetSchema("IndexColumns") ; [/CODE] | |
Re: Welcome drake2212, Please post listing.txt file's content. I have a suggestion, modify else block of insertWord. [CODE=C++] wordList *newNode = new wordList; newNode->newWord = word1; newNode->previous = NULL; newNode->next=NULL; theList = wordArray[index]; while(theList->next!=NULL) { theList=theList->next; } theList->next=newNode; theList->next->previous=theList; [/CODE] | |
Re: emint, Fill the dataset. [CODE=VB.NET] ... Dim cb As New OleDb.OleDbCommandBuilder(da) Dim ds As New DataSet ds.Fill(ds,"DBGetLoan2000") ... [/CODE] | |
Re: Welcome SreekanthVenkat, Use Menu Control from Navigation toolbox. Set Orientation property to set it Horizontal or vertical. | |
Re: Welcome ravi_kos, Forum web application requires - XHTML, Javascript, CSS, Database, and Web Technology (JSP,PHP etc). You may get an idea from daniweb also. Check [URL="http://java-source.net/open-source/forum-software"]Open source forum application.[/URL] | |
Re: Welcome to the forum, sana.khatib20, Did your read the rules at daniweb? 1. [URL="http://www.daniweb.com/forums/announcement118-2.html"]Homework policy[/URL] - Show your work please. 2. [URL="http://www.daniweb.com/forums/announcement118-3.html"]How to use code tags?[/URL] - Wrap up your source code with code tags. 3. Use suitable title for the thread. |
The End.