Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Showing results 1 to 19 of 19
Search took
0.05
seconds.
Search:
Posts Made By:
ranbo
Forum:
JavaScript programming
06-09-2005, 09:29 PM
Replies:
1
Opening Excel using Javascript
Views:
3,292
Posted By
ranbo
Opening Excel using Javascript
I'm able to open my excel file correctly, but to do so I need to put the entire path into the open function...even though the excel file and web page are housed in the same directory. I'd like to be...
Forum:
JavaScript programming
06-07-2005, 09:56 PM
Replies:
2
javascript variable as ALT value
Views:
1,791
Posted By
ranbo
javascript variable as ALT value
How can I set the value of ALT to a javascript variable? My code currently looks like the following:
<script>
//here I'm opening an excel sheet to read in data
var excel = new...
Forum:
Flash & ActionScript
05-18-2005, 11:05 PM
Replies:
0
Can I insert flash text link in HTML code?
Views:
7,282
Posted By
ranbo
Can I insert flash text link in HTML code?
I'd like to insert the URL link to my flash text in the HTML. Does anyone know of a way I can do this? Below is the info put into HTML when I insert the flash text. I'm assuming there's a way to...
Forum:
JavaScript programming
05-18-2005, 09:11 PM
Replies:
11
Using Javascript var as HTML HREF string value
Views:
1,664
Posted By
ranbo
yep .. that did the trick. thanks!!!
yep .. that did the trick. thanks!!!
Forum:
JavaScript programming
05-18-2005, 08:36 PM
Replies:
11
Using Javascript var as HTML HREF string value
Views:
1,664
Posted By
ranbo
This doesn't work. When clicked it simply...
This doesn't work. When clicked it simply reloads the page
Forum:
JavaScript programming
05-18-2005, 08:14 PM
Replies:
11
Using Javascript var as HTML HREF string value
Views:
1,664
Posted By
ranbo
The inside of my script tag looks like the...
The inside of my script tag looks like the following:
-------------------------------------------------------------------------
<SCRIPT LANGUAGE="JavaScript1.2">
function mmLoadMenus() {...
Forum:
JavaScript programming
05-18-2005, 07:45 PM
Replies:
11
Using Javascript var as HTML HREF string value
Views:
1,664
Posted By
ranbo
This didn't work: <area shape="rect"...
This didn't work:
<area shape="rect" coords="26,119,116,132" onclick="window.location.href=assoc;">
It gave me an "error on page"
Forum:
JavaScript programming
05-18-2005, 05:52 PM
Replies:
11
Using Javascript var as HTML HREF string value
Views:
1,664
Posted By
ranbo
Using Javascript var as HTML HREF string value
-- within my javascript tag I obtain the URL from an excel sheet
var assoc = excel_sheet.Cells(22,3).Value;
Now... I'm not sure how I'd use this variable in my HTML. Below is the way I have...
Forum:
JavaScript programming
05-04-2005, 09:54 PM
Replies:
6
Mixing javascript and html
Views:
1,029
Posted By
ranbo
scratch what i said before.. it doesn't work. ...
scratch what i said before.. it doesn't work. You can use javascript to print the whole statement:
<script language="Javascript">
var a = document.dataform.cname.value;
if...
Forum:
JavaScript programming
05-04-2005, 09:54 PM
Replies:
6
Mixing javascript and html
Views:
1,029
Posted By
ranbo
scratch what i said before.. it doesn't work. ...
scratch what i said before.. it doesn't work. You can use javascript to print the whole statement:
<script language="Javascript">
var a = document.dataform.cname.value;
if...
Forum:
JavaScript programming
05-04-2005, 09:19 PM
Replies:
6
Mixing javascript and html
Views:
1,029
Posted By
ranbo
Try this: <INPUT TYPE=text NAME=autocoo...
Try this:
<INPUT TYPE=text NAME=autocoo SIZE=12><script>a</script> currency/mile driven
Forum:
JavaScript programming
05-04-2005, 08:05 PM
Replies:
1
How to put a variable in window.open(...)
Views:
813
Posted By
ranbo
Looks like I'm answering my own questions today. ...
Looks like I'm answering my own questions today. I figured this one out. For anyone else with a similar issue, here's what I had to do:
<script>
//here i've read values from excel into these...
Forum:
JavaScript programming
05-04-2005, 05:16 PM
Replies:
1
How to put a variable in window.open(...)
Views:
813
Posted By
ranbo
How to put a variable in window.open(...)
In my code I've read in a link and the associated text from an outside file. I'm able to get the text to show but I can't get the link to work. Heres a snippit of my code:
<script>
//here...
Forum:
JavaScript programming
05-04-2005, 05:03 PM
Replies:
15
Won't print!!
Views:
1,556
Posted By
ranbo
As others have posted previously... looks like...
As others have posted previously...
looks like your missing a parameter in the show function
--your code says-------------
window.onload=show
function show(id) { ... }
...
Forum:
JavaScript programming
05-03-2005, 08:10 PM
Replies:
9
Getting data from Excel using Javascript
Views:
2,820
Posted By
ranbo
never-mind. I got it working. Apparently the...
never-mind. I got it working. Apparently the "Open(..)" function associated with a file is used to set a variable to control the file...not to open the file. Heres the bit of code that takes an...
Forum:
JavaScript programming
05-03-2005, 07:18 PM
Replies:
9
Getting data from Excel using Javascript
Views:
2,820
Posted By
ranbo
right now my hard-drive is acting as the server. ...
right now my hard-drive is acting as the server. I'm developing the web-page on my hard-drive. My assumption is that as long as my web page and the excel file are in the same directory that the...
Forum:
JavaScript programming
05-03-2005, 05:55 PM
Replies:
9
Getting data from Excel using Javascript
Views:
2,820
Posted By
ranbo
Here's some code of what I'm trying to do. I've...
Here's some code of what I'm trying to do. I've interchanged GetObject(..) with ActiveXObject(..) while trying to get it to work. According to what I've read about the two..I think GetObject is...
Forum:
JavaScript programming
05-03-2005, 04:50 PM
Replies:
9
Getting data from Excel using Javascript
Views:
2,820
Posted By
ranbo
The speadsheet is located on the server...in the...
The speadsheet is located on the server...in the same directory location as the web page.
Forum:
JavaScript programming
05-02-2005, 04:56 PM
Replies:
9
Getting data from Excel using Javascript
Views:
2,820
Posted By
ranbo
Getting data from Excel using Javascript
How can I use javascript to read in data from an Excel worksheet? I'm working on an easily-updateable web page in which link data is to be read in upon page load from an excel worksheet. I've...
Showing results 1 to 19 of 19
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
01:13 PM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.