User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 332,937 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,915 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our advertiser:
Showing results 1 to 40 of 500
Search took 0.10 seconds.
Posts Made By: ~s.o.s~
Forum: Geeks' Lounge 2 Days Ago
Replies: 1,440
Views: 66,363
Posted By ~s.o.s~
Re: Collins: Why this scientist believes in God

This thread is going off-topic is a big way. Thank you all for participating in this discussion; for more *god* related things, please feel free to start a new thread.
Forum: JavaScript / DHTML / AJAX 4 Days Ago
Replies: 4
Views: 225
Posted By ~s.o.s~
Re: JavaScript posting data

<script type="text/javascript">
document.getElementsByName('rand')[0].value = document.getElementsByName('main')[0].src;
</script>
The function getElementsByName returns a nodelist i.e. an array of...
Forum: JavaScript / DHTML / AJAX 6 Days Ago
Replies: 2
Views: 191
Posted By ~s.o.s~
Re: write xy coords

If you want to share something good with the others out there, we have a code snippets section (http://www.daniweb.com/code/javascript.html). Threads posted in normal forums end up getting lost in...
Forum: JSP 7 Days Ago
Replies: 2
Views: 210
Posted By ~s.o.s~
Re: Remotely Invoked Methods and JSP

The error "MyRemote cannot be resolved to a type." seems to be pretty straightforward; you need to include the 'MyRemote' class in your JSP for it to successfully compile. I know this advice would...
Forum: JavaScript / DHTML / AJAX 7 Days Ago
Replies: 4
Views: 231
Posted By ~s.o.s~
Re: How to stop errors from popping up

> I know this great way of stopping those annoying errors that just keep popping up

Javascript has support for exception handling, using it properly would give rise to a robust design. Also it seems...
Forum: JavaScript / DHTML / AJAX 7 Days Ago
Replies: 6
Views: 588
Posted By ~s.o.s~
Re: Redirect page function problem with Firefox browser

> You could just use a meta command (like this):

The W3C actually recommends against (http://www.w3.org/QA/Tips/reback) the use of such tricks for redirection. If Javascript is not a must, Digital...
Forum: JavaScript / DHTML / AJAX 9 Days Ago
Replies: 5
Views: 431
Posted By ~s.o.s~
Re: Data Type

> If I have a variable named X , and this virable hold some data , how can I know
> the Type for that data

The typeof operator should make things a bit easier for you. Try this:

<script...
Forum: JavaScript / DHTML / AJAX 9 Days Ago
Replies: 2
Views: 375
Posted By ~s.o.s~
Re: Dalying Javascript code execution order

Place the block of Javascript code *after* the DIV tag and things should work out fine. It problems still persist, consider attaching a listener to the onload event handler of the window object which...
Forum: JavaScript / DHTML / AJAX 9 Days Ago
Replies: 6
Views: 323
Posted By ~s.o.s~
Re: HTML title image

Your issue has got nothing to do with Javascript; it is handled when deploying your web application on the web server / container of your choice by means of a configuration file. Consult your web...
Forum: JavaScript / DHTML / AJAX 9 Days Ago
Replies: 6
Views: 588
Posted By ~s.o.s~
Re: Redirect page function problem with Firefox browser

There is no navigate function for the window object. Maybe try something like:

<?php
function reDirect($page)
{
$s = "<script language = 'javascript'>
window.location.href = '$page';
...
Forum: Java 11 Days Ago
Replies: 13
Views: 352
Posted By ~s.o.s~
Re: Problem in creating a jar file

There are at least millions of threads (http://forum.java.sun.com/thread.jspa?threadID=642042&messageID=10137425) out there providing a proper solution to the same problem; maybe doing a bit of...
Forum: JSP 12 Days Ago
Replies: 3
Views: 247
Posted By ~s.o.s~
Re: SQL Query problem

> but I dont know why JSP gives this result :

Maybe because "KodeAlbum" actually contains "000002-0015"? It would be better if you printed out the value of the form field "KodeAlbum" after form...
Forum: JavaScript / DHTML / AJAX 12 Days Ago
Replies: 4
Views: 667
Posted By ~s.o.s~
Re: how to open indesign, pdf, framemaker files using java script

Javascript can't spawn processes and it's a part of the browser security model; you can't do anything about it. Maybe VBScript might have something in store for you, but then again, your application...
Forum: Geeks' Lounge 13 Days Ago
Replies: 54
Views: 1,546
Posted By ~s.o.s~
Re: 1,000 Post

> i should get a prise.

Good idea; we are already in the process of getting hold of a unique spell / grammar checker which would automatically rectify spelling / punctuation mistakes in posts. ;-)
Forum: Assembly 13 Days Ago
Replies: 3
Views: 229
Posted By ~s.o.s~
Re: file problem

Phew! Next time make sure you attach your code instead of dumping the entire 1.6K line thing on the message boards.
Forum: JavaScript / DHTML / AJAX 13 Days Ago
Replies: 4
Views: 512
Posted By ~s.o.s~
Re: image rollover

> but still need to find out how

Find out how to preload images? Google has a lot of helpful links (http://articles.techrepublic.com.com/5100-10878_11-5214317.html)to get you started. If you still...
Forum: JavaScript / DHTML / AJAX 14 Days Ago
Replies: 4
Views: 512
Posted By ~s.o.s~
Re: image rollover

According to the HTML 4.01 specification:


Plus NAME attribute is deprecated for *non-form* elements; use ID instead. And a better way to access images would be document.images["imageId"]. Also, are...
Forum: JavaScript / DHTML / AJAX 14 Days Ago
Replies: 4
Views: 667
Posted By ~s.o.s~
Re: how to open indesign, pdf, framemaker files using java script

What do you mean by 'open PDF' files using Javascript? You need the appropriate softwares for opening the respective files e.g. Acrobat reader for PDF files. The maximum you can do is make the...
Forum: JavaScript / DHTML / AJAX 14 Days Ago
Replies: 1
Views: 245
Posted By ~s.o.s~
Re: sifr and javascript

Your question would be more pertinent in the SIFR forums (http://discuss.joyent.com/viewforum.php?id=20) than here.
Forum: JavaScript / DHTML / AJAX 14 Days Ago
Replies: 9
Views: 368
Posted By ~s.o.s~
Re: onClick question

Just rinse and repeat.

<html>
<body>
<div
style="border-color:#000000; background-color:#000000; height:100px; width:100px; position:absolute; top:0px; left:50px;
z-index:9"...
Forum: JavaScript / DHTML / AJAX 14 Days Ago
Replies: 5
Views: 381
Posted By ~s.o.s~
Re: Problem in my sliding div...plz help....

You need to toggle the rendering and not visibility. Even invisible elements takes up space on the page. Use the "display" property to create invisible elements that do not take up space.
<div...
Forum: JavaScript / DHTML / AJAX 14 Days Ago
Replies: 2
Views: 266
Posted By ~s.o.s~
Re: Suggestion.

Flash all the way.
Forum: JavaScript / DHTML / AJAX 14 Days Ago
Replies: 9
Views: 368
Posted By ~s.o.s~
Re: onClick question

> Ok so here is the code I am using and all I am getting is a blank page.

A few things:

- window.location is a host object (browser object); what you probably need to do here is...
Forum: JSP 14 Days Ago
Replies: 3
Views: 280
Posted By ~s.o.s~
Re: Problem With Hover Button

There can be a host of problems / reasons causing that message to come up. Is the applet working in standalone mode? Which version of Java are you using? What is the directory structure of your...
Forum: JSP 15 Days Ago
Replies: 11
Views: 573
Posted By ~s.o.s~
Re: can i know what software shall i use to connect jsp file to the database?

Use MySQL Connector J (http://www.mysql.com/products/connector/j/), a type 4 / pure JDBC compliant driver. Make sure you add this driver to your runtime dependency and you are good to go.
Forum: JSP 15 Days Ago
Replies: 2
Views: 233
Posted By ~s.o.s~
Re: I want source code of Recruitment website in JSP

> I have tried my level best to complete the project within 2 months but I am not able to do
> that.
Maybe you looked in the wrong places; the internet is choke full of resources which can help you...
Forum: JSP 15 Days Ago
Replies: 3
Views: 280
Posted By ~s.o.s~
Re: Problem With Hover Button

Look closely at the code you have written. The tag <jsp:param> doesn't have a body and hence should be written as one. Leaving them open is what is causing the problems here. It should be: (notice...
Forum: Java 15 Days Ago
Replies: 8
Views: 3,751
Posted By ~s.o.s~
Re: Starting "Java" [Java tutorials / resources / faq]

A document (http://stwww.weizmann.ac.il/g%2Dcs/benari/java/errors.pdf)describing the common compile time / runtime errors and ways to resolve them; beginners might find it to be useful.
Forum: JSP 15 Days Ago
Replies: 8
Views: 361
Posted By ~s.o.s~
Re: Need Urgent HELP-Syntax error, insert "AssignmentOperator Expression" to complete Ass

> If you can't help, why don't you just shut up. you are not any helpful

Insulting forum regulars / contributors is a sure shot way of driving away all help you could have got. Please refrain from...
Forum: DaniWeb Community Feedback 15 Days Ago
Replies: 96
Views: 2,400
Posted By ~s.o.s~
Re: What pisses you off?

> yeah sometimes i do say things like "i agree" but hey, thats how a conversation works

Maybe in the Geek's Lounge, yes, but definitely not for Tech related threads. IMO such monosyllables when used...
Forum: Java 15 Days Ago
Replies: 5
Views: 280
Posted By ~s.o.s~
Re: Jar File

Good question; moved to Java forum.
Forum: JSP 16 Days Ago
Replies: 7
Views: 285
Posted By ~s.o.s~
Re: Connection is recognised in all JSP files/pages

No matter what kind of tutorials you read, learning from a good book is almost always irreplaceable. For JSP/Servlets, Head First Servlets and JSP is a good choice IMO.
Forum: JSP 16 Days Ago
Replies: 8
Views: 361
Posted By ~s.o.s~
Re: Need Urgent HELP-Syntax error, insert "AssignmentOperator Expression" to complete Ass

The proper way to go about the task would have been to use JSTL or JSF instead of scriptlets. The official J2EE tutorial (http://java.sun.com/javaee/reference/) would be a good starting point. Plus...
Forum: JSP 16 Days Ago
Replies: 6
Views: 508
Posted By ~s.o.s~
Re: Same JSP is populated in IE7 but not in Firefox

This happens almost always due to Javascript errors and the Javascript on that page looks all messed up. Remember that IE is more forgiving and will automatically make up for your mistakes; Firefox...
Forum: JavaScript / DHTML / AJAX 16 Days Ago
Replies: 1
Views: 295
Posted By ~s.o.s~
Re: Drop Down box AJAX

Start off with the Sun J2EE tutorials (http://java.sun.com/javaee/reference/) which cover almost everything you need to complete this project along with a lot of sample code.
Forum: Geeks' Lounge 16 Days Ago
Replies: 1,440
Views: 66,363
Posted By ~s.o.s~
Re: Collins: Why this scientist believes in God

WTH has Santa got to do with 'Why this scientist believes in God' topic? Just because this thread has got a 'GOD' in it doesn't mean you go around resurrecting 3 month old threads just for the sake...
Forum: JavaScript / DHTML / AJAX 17 Days Ago
Replies: 6
Views: 953
Posted By ~s.o.s~
Re: Dynamic Div Name getElementById

> You can't use getElementById to access elements added by a script.
Bosh. Please verify the facts before stating something.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
...
Forum: JavaScript / DHTML / AJAX 17 Days Ago
Replies: 5
Views: 586
Posted By ~s.o.s~
Re: Need Javascript calendar??

There are many free / open source Javascript calendars out there. Just key in 'Javascript calendar' in Google and you would be a few steps away from getting one...
Forum: JavaScript / DHTML / AJAX 17 Days Ago
Replies: 7
Views: 614
Posted By ~s.o.s~
Re: HTML

Please explain your problem in a better manner. If there is a server side processing involved when interacting with the HTML control, then yes, you can write whatever data is present in the form...
Forum: JavaScript / DHTML / AJAX 17 Days Ago
Replies: 2
Views: 330
Posted By ~s.o.s~
Re: switch type menu

And replacing the onclick with onmouseover doesn't seem to work?
Showing results 1 to 40 of 500

 
All times are GMT -4. The time now is 3:11 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC