5,031 Posted Topics

Member Avatar for freeman266

Take this as unofficial warning. No torrent or wares links here welcomed. [B]READ THE RULES![/B] Either use trial version, or buy full version. If you can not afford it use free tools.

Member Avatar for peter_budo
0
61
Member Avatar for GumTree

Some coding from cascading style sheets and the html document would be helpful. Read magic ball is not my speciality...

Member Avatar for peter_budo
0
25
Member Avatar for mangel.murti

Java Sun JDBC [URL="http://java.sun.com/docs/books/tutorial/jdbc/basics/index.html"]Basics tutorial[/URL], what more you need? Don't forget to get proper drivers for that crappy database of Microsoft ([I]sorry I just do not like Access[/I]). [I]I do not really understand why people do not use free available [URL="http://dev.mysql.com/downloads/"]MySQL[/URL] Community Server[/I]

Member Avatar for stephen84s
0
158
Member Avatar for resnostyle
Member Avatar for justinmyoung

Minor state of panic? Why? You assume that it has something to do with Java, however you did not mention what type of server you running Tomcat or Apache?

Member Avatar for justinmyoung
0
135
Member Avatar for tiger86

Have look into Adobe [URL="http://www.adobe.com/devnet/"]developer[/URL] and [URL="http://www.adobe.com/designcenter/"]designer[/URL] section for Flash, they would already discuss the changes and any possible issues...

Member Avatar for peter_budo
0
58
Member Avatar for rakesh.mk

Is this part of an application or it should be used as part of web service?

Member Avatar for peter_budo
0
157
Member Avatar for samarudge

Testing it with localhost hmm... Make sure that your scripting hasn't got absolute paths to your computer hard disk. If that doesn't solve problem then post your code and surely somebody will assist you.

Member Avatar for peter_budo
0
72
Member Avatar for peter_budo

I'm working on an application that simulated process of writing text message on mobile phone. On the canvas I first draw already typed message. If any and on button pressed I retrieve correct set of characters. Here I'm able to loop through them and highlight currently active/selected character. However I …

Member Avatar for peter_budo
0
227
Member Avatar for shijunair

[QUOTE=shijunair;699345] Please provide a suggestion. [/QUOTE] Use servlets as you should be doing in first place. Secondly we had discussion on this topic previously and very little changed. You just refuse to listen.

Member Avatar for shijunair
0
239
Member Avatar for servantofgod
Member Avatar for Karaten

This is called favicon and it is add through [I]link[/I] declaration of [I]head[/I] section inside html document. To add one just do as follows [code=html] <html> <head> <title>Page Title</title> <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> </head> //Rest of the page code [/code] If you do not have suitable icon you can …

Member Avatar for Shanti C
0
94
Member Avatar for Koldsoul
Member Avatar for donaldunca

[QUOTE=donaldunca;700486]I want to ask are these things possible (I use J2ME) 1) Normally, when you make a call, you input a phone number and that phone number appear from right to left. Can I code that the phone number appear from left to right ? 2) For example, when I …

Member Avatar for peter_budo
0
179
Member Avatar for newbeginning

[QUOTE=thanhsvcs;695644]Hi everyone. I found this site through [url]www.wrox.com[/url] looking for C# enterprise development.[/QUOTE] Many of the IT publishing companies have website with forum these days. Unfortunately they have very small community that get you slow replies, non technical replies and book authors are not available to comment on mistakes made …

Member Avatar for LabASSistant
0
39
Member Avatar for ajay.psd

Pass data from JSP to servlet that will make use of [URL="http://jasperforge.org/plugins/project/project_home.php?group_id=102"]JasperReports[/URL] or[URL="http://www.lowagie.com/iText/"] iText[/URL] which are both easy and straight forward libraries to use. (iText has extensive [URL="http://itextdocs.lowagie.com/tutorial/"]examples[/URL])

Member Avatar for peter_budo
-1
97
Member Avatar for uravikishore

Thee are plenty resources available on internet just google it... ..and you can start with Java SUn tutorial [URL="http://java.sun.com/docs/books/tutorial/networking/index.html"]Custom Networking[/URL]

Member Avatar for peter_budo
0
75
Member Avatar for faranak

Request to move the post submitted... PS: Shame on PHP dude for not knowing difference between Java and JavaScript

Member Avatar for peter_budo
0
77
Member Avatar for dspnhn

Whole time we have problems with new members that can not post in correct forum section or better they flood forum with same question in various places. What it would be like if we introduce this extended sub-grouping? It would be mad-house. Personally I do not feel like spending hours …

Member Avatar for Dani
0
127
Member Avatar for ravikiran032

Not to much you can work from this. Main point is that the provided IP address is class C, to be more precise it is private IP address class C (the range of private C class is 192.168.0.0 - 192.168.255.255) and that you pc can be find on this address …

Member Avatar for peter_budo
0
91
Member Avatar for peter_budo

I'm trying to get character "2936" printed out ( it is the arrow on your big Enter of the keyboard) as seen in Unicode charts [URL="http://unicode.org/charts/PDF/U2900.pdf"]Supplemental Arrows B[/URL]. However it does show as question mark. Suggestions? [code=Java] public class PrintCharacters { public static void main(String[] args) { String[] one = …

Member Avatar for di2daer
0
115
Member Avatar for sri28

5 out of 8 replies (not including my) mentioned same link, w3schools. I know repetition is good for memory but you just over done on this ...

Member Avatar for peter_budo
0
482
Member Avatar for suyogv

Exactly, therefore use something that somebody already made like [URL="http://itextsharp.sourceforge.net/"]iTextSharp[/URL] that is port of original iText for Java. I can recommend it, very useful and free library with many examples and easy to use

Member Avatar for peter_budo
0
90
Member Avatar for chenmanalo

Why do you pick up class or module of study if you not even trying to participate? As I'm sure you didn't read the announcement on the top of Java section I will recommend to visit the link "[URL="http://www.daniweb.com/forums/announcement9-2.html"]We only give homework help to those who show effort[/URL]" As for …

Member Avatar for stultuske
0
79
Member Avatar for JPMountford
Member Avatar for peter_budo
0
62
Member Avatar for samurai83

This is simple HTML example. What it has to do with JSP? Please provide full explanation

Member Avatar for peter_budo
0
28
Member Avatar for rockbd
Member Avatar for HI2Japan
0
155
Member Avatar for apppu
Member Avatar for cybernaut09

You can have multiple beans as you already showed in other post and in same way in the session you can manipulate number of them. Nothing is stopping you from creating new instance of same bean class used for different purpose

Member Avatar for peter_budo
0
94
Member Avatar for cybernaut09

Are you sure it is whole error list? Looking at your code [code]if(registerBean.userExist(userBean.getUserName(),userBean.getPassword()))[/code] the RegisterBean userExist(String, String) method throws SQLException, however line bellow [code]registerBean.saveData(userBean);[/code] is another RegisterBean method saveData(UserBean) that does not throw or catch SQLException. ([I]The catch statement inside finally doesn't count as it is related to PreparedStatement[/I]) In …

Member Avatar for peter_budo
0
2K
Member Avatar for cproud21

Announcement on top of the Java forum section "[URL="http://www.daniweb.com/forums/announcement9-2.html"]We only give homework help to those who show effort[/URL]". Read it please.

Member Avatar for stephen84s
0
216
Member Avatar for subhra_mca

Installation of Apache Tomcat contain such simple example id you actually check what you installed.

Member Avatar for peter_budo
0
24
Member Avatar for heshan

[QUOTE=vegaseat;694357]Thank you for making all of the DaniWeb Python users aware of this great article at: [url]http://wso2.org/library/articles/deploying-python-service-axis2[/url][/QUOTE] To be fair he is spamming that site all over our forum...

Member Avatar for peter_budo
0
107
Member Avatar for comsec

<html:option> is used with Apache Struts something like [URL="http://www.java2s.com/Code/Java/J2EE/StrutsCreatingtheModel.htm"]this example[/URL] (There is no explanation to code, just reference from which book the code come ) For stuts tutorial on form you may consider look at this [URL="http://j2ee.masslight.com/Chapter4.html"]tutorial[/URL], maybe this from from [URL="http://www.ibm.com/developerworks/websphere/techjournal/0302_fung/fung.html"]IBM[/URL] (based on Websphere, but general logic can be …

Member Avatar for peter_budo
0
627
Member Avatar for bimaljr

[QUOTE=bimaljr;695911]Hi, I need a PHP Shoutbox with Login feature so there will be no spamming.[/quote] If you have user profile on your site you just need to enable/disable ShoutBox for certain group there, therefore use of it will be guarded by pre-required login. [QUOTE=bimaljr;695911]I just need a good ShoutBox.[/QUOTE] As …

Member Avatar for bimaljr
0
240
Member Avatar for Shirley1874

Here is tutorial on [URL="http://w3schools.com/flash/flash_inhtml.asp"]Flash in HTML[/URL]. I do not think special effects will influence the video quality, but more likely the size of the final video - it will be bigger.

Member Avatar for Shirley1874
0
70
Member Avatar for anuj_sharma

This is done through URL as intruder firstly examine URL string that is send to server and if he sees any possibility of vulnerability he will try to modify this string and submit

Member Avatar for Shanti C
0
90
Member Avatar for BlackPearl

Not enough that you opened thread that is 4 years old, you did not bother to read [URL="http://www.daniweb.com/forums/faq.php?faq=daniweb_policies"]forum rules[/URL] (hijacking thread, no emails in the post) you also did not even consider to read sticky thread "[URL="http://www.daniweb.com/forums/announcement9-2.html"]We only give homework help to those who show effort[/URL]". On top of all …

Member Avatar for akhilagarwal87
0
212
Member Avatar for Tony0930

Sure not Flash as it is difficult to integrate with other technologies beside web. You may try to provide interface in Flex as it let you do background coding in variety of programming languages and with help of ActionScript pass the values/events to Flex. C++, Python should be your prime …

Member Avatar for Phaelax
0
100
Member Avatar for avsparmar

Simple GUI application that runs secure connection with servlet is the better solution to what you proposing to do.

Member Avatar for peter_budo
0
90
Member Avatar for suganth

The above site is worst possible place to learn from. Recommending use of old fashion methods and approaches, collecting out of date tutorials with code examples and lastly badly organized.

Member Avatar for peter_budo
0
156
Member Avatar for BHUSHAN009

Exact error would be more welcomed then code dump upon us to go and see what it may be wrong with it

Member Avatar for peter_budo
0
55
Member Avatar for tanha

[QUOTE=tanha;693665] [CODE] String connectionURL = "jdbc:mysql://localhost:3306/[COLOR="Red"]danijsptutorial[/COLOR]"; String sql = "[COLOR="Red"]select uid,password from User[/COLOR]"; [/CODE][/QUOTE] Was there any specific reason why you made all these changes to my original tutorial?

Member Avatar for Ravindra_Nikam
0
121
Member Avatar for Rach68

I would go with PHP as it is community driven development and as it goes most of things will be free and coming numerous varieties where in ASP you more likely to end up paying for this or that. Secondly I find ASP slower in comparison to PHP or JSP.

Member Avatar for Fungus1487
0
202
Member Avatar for l00pylou

Looks like you put too much compression. Am I right to say you created the bottom part first and then tried to add the top section?

Member Avatar for l00pylou
0
59
Member Avatar for blackberry

Topic closed as over period of time it just grow into link advertising and no solution confirmed.

Member Avatar for peter_budo
0
926
Member Avatar for dinaelansary

[QUOTE=innovativeatul;692266][url]http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash[/url] Use this with a button so that user can click on it and able to download the flash player[/QUOTE] Absolutely unnecessary! Correctly formatted object of flash file in html will have link to necessary download if Flash player not detected on the browser [code]<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="[COLOR="Red"]http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0[/COLOR]" width="240" height="320" id="Clock" …

Member Avatar for peter_budo
0
129
Member Avatar for daniel50096230

[URL="http://java.sun.com/docs/books/tutorial/i18n/format/decimalFormat.html"]This[/URL] spell it out all nicely

Member Avatar for javaAddict
0
156
Member Avatar for aarya

I don't think so, usualy you can get a site for £4 a month. Best thing is to instal Tomcat on your pc together with database(MySQL) and practice there

Member Avatar for stephen84s
0
1K
Member Avatar for janustt

You need to take user provided input, check it if it is really a number (give warning if not and return back to step of number insert), after each roll you should compare user value with dices roll and see if they equal. In case they do not equal make …

Member Avatar for janustt
0
161

The End.