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
Page 1 of 2
1
2
>
Showing results 1 to 25 of 28
Search took
0.11
seconds.
Search:
Posts Made By:
dhtroy
Forum:
XML
12-04-2002, 02:52 PM
Replies:
3
About Script inside XSL
Views:
2,789
Posted By
dhtroy
Sorry, I've been out of town and had a lot going...
Sorry, I've been out of town and had a lot going on ... I'll sit down later at home and see what I can come up with (if you've not already moved past this).
:thumbsup:
Forum:
XML
12-03-2002, 05:46 PM
Replies:
7
position() = 1
Views:
1,925
Posted By
dhtroy
haven't tried this - just a "might wanna try...
haven't tried this - just a "might wanna try this"
Try
1 = position()
position() == 1
1 == position()
Forum:
Computer Programming
11-27-2002, 02:49 PM
Replies:
3
register dlls ocx's installing Wscript.exe
Views:
7,815
Posted By
dhtroy
First off, if you need Windows Script, you can...
First off, if you need Windows Script, you can get the latest version from here:
...
Forum:
HTML & CSS
11-26-2002, 05:55 PM
Replies:
4
relevance of i frames..
Views:
1,111
Posted By
dhtroy
The IFRAME element functions as a document within...
The IFRAME element functions as a document within a document, or like a floating FRAME. You can specify a SRC attribute that loads an external HTML document into the frame. You can, of course,...
Forum:
XML
11-26-2002, 05:46 PM
Replies:
3
About Script inside XSL
Views:
2,789
Posted By
dhtroy
Well, I don't know the answer directly, because I...
Well, I don't know the answer directly, because I tried doing something similar to this a while back ... first we need to know WHEN you want the script to fire off.
During the Transformation or...
Forum:
XML
11-25-2002, 04:30 PM
Replies:
2
for each take only the first one
Views:
2,477
Posted By
dhtroy
It's because the parser finds a matching item for...
It's because the parser finds a matching item for your value-of clause, right when it hits that first <answer> tag. The simple solution is to wrap your <answer> tags within a "parent-level" tag such...
Forum:
Computer/PC discussions
11-22-2002, 02:38 PM
Replies:
2
Redhat root password
Views:
4,101
Posted By
dhtroy
I believe it's typically 'root' check out...
I believe it's typically 'root'
check out www.redhat.com
they do have on-line help.
Forum:
Computer/PC discussions
11-21-2002, 06:46 PM
Replies:
3
outlook .dbx on network
Views:
1,675
Posted By
dhtroy
I have attempted this "idea" before, and as...
I have attempted this "idea" before, and as you've already learned, you cannot access the same MS Outlook database from two PC's at the same time. Whichever one hits the file first, wins, and until...
Forum:
Computer/PC discussions
11-19-2002, 06:29 PM
Replies:
1
Network News broadcast
Views:
1,241
Posted By
dhtroy
I know this is possible through Outlook and...
I know this is possible through Outlook and Exchange Server. Go to Microsoft's site and review information pertaining to Digital Dashboard technologies; you might find some information there.
Forum:
Computer/PC discussions
11-18-2002, 06:31 PM
Replies:
2
setting up my own news server and subscribing to posts...
Views:
2,155
Posted By
dhtroy
Try looking on www.usenet.org you may find your...
Try looking on www.usenet.org you may find your answer there; additionally, since Google hosts Usenet messages through Google Groups, you may also consider asking them "how to".
Good-luck!
Forum:
XML
11-18-2002, 06:14 PM
Replies:
5
Using DOM to grab images & flash from xml file?
Views:
2,988
Posted By
dhtroy
Dan, I'm not certain what the real problem...
Dan,
I'm not certain what the real problem is that you're having, perhaps I'm not understanding the information provided, but regardless ... I replaced the function called insertImage() in the...
Forum:
XML
11-15-2002, 06:02 PM
Replies:
5
Using DOM to grab images & flash from xml file?
Views:
2,988
Posted By
dhtroy
Ok, Short of trying to explain all that, I...
Ok,
Short of trying to explain all that, I am attaching a full blown example that you can see, use, mess with, modify, delete ... whatever.
Contains:
1 - XHTML Document
1 - Very basic XML...
Forum:
XML
11-13-2002, 08:46 PM
Replies:
5
xml data feed to html??
Views:
1,724
Posted By
dhtroy
Here's a script that will load an XML file for...
Here's a script that will load an XML file for either IE or NS
<script>
var xmlDoc;
function init () {
if (document.all && document.getElementById) {
xmlDoc = new...
Forum:
XML
11-13-2002, 06:16 PM
Replies:
5
xml data feed to html??
Views:
1,724
Posted By
dhtroy
Not sure where this will get you, but you can...
Not sure where this will get you, but you can have an <XML> tag in your HTML that references the server page directly
Example
<XML id="myXMLdata"...
Forum:
XML
11-13-2002, 06:11 PM
Replies:
5
Using DOM to grab images & flash from xml file?
Views:
2,988
Posted By
dhtroy
Well, you can set it up to pull a filename from...
Well, you can set it up to pull a filename from the XML data source and then create a <IMG> tag and insert that tag back into your document; I did something similar, but using straight XSLT....
Forum:
HTML & CSS
11-08-2002, 03:12 PM
Replies:
4
css borders on <tr> tags
Views:
2,775
Posted By
dhtroy
Just thought I'd mention this: For giggles,...
Just thought I'd mention this:
For giggles, I checked out the Platform SDK on the TR tag, to find that IE does not support a Style or Attribute of type Border for that object.
That would...
Forum:
Computer Programming
11-08-2002, 03:07 PM
Replies:
6
An Idea For A Simple Game
Views:
1,941
Posted By
dhtroy
My first game was a small "Tank-like" game;...
My first game was a small "Tank-like" game; developed in C back in the MS-DOS days ... good ol' DOS *sigh*
anyway ... it was only like 1000 lines of code, and the graphics were simple.
Plus -...
Forum:
Computer Programming
11-08-2002, 02:58 PM
Replies:
6
Recursion -- Real World Applications?
Views:
2,536
Posted By
dhtroy
I have used Recursive functions/methods, in...
I have used Recursive functions/methods, in several applications across various languages for various reasons. My reasons for doing so were simple, it just made sense. Totaling amounts, quickly...
Forum:
HTML & CSS
11-07-2002, 05:43 PM
Replies:
4
css borders on <tr> tags
Views:
2,775
Posted By
dhtroy
I copied this code example into a HTML document...
I copied this code example into a HTML document and ran it under both IE 6.0 and Mozilla; neither displays a border on that row ...
Not sure what browser you're using that it works with ... but I...
Forum:
Computer Programming
11-07-2002, 05:39 PM
Replies:
6
Displaying dates using TLabel in C+Builder.
Views:
2,490
Posted By
dhtroy
Since I do not have access to the Delphi help...
Since I do not have access to the Delphi help files at the moment, I can only suggest the following ...
In the C++ Builder help file system, look up Date Formats pertaining to Long/Short date...
Forum:
XML
11-07-2002, 05:33 PM
Replies:
3
XLink Support
Views:
2,681
Posted By
dhtroy
Check out the W3 website for information on XLink...
Check out the W3 website for information on XLink technology. They often state who's doing what or have information regarding the "state" of browsers.
Here's a direct link...
Forum:
Computer Programming
11-04-2002, 03:59 AM
Replies:
6
Displaying dates using TLabel in C+Builder.
Views:
2,490
Posted By
dhtroy
Syntax should be similar to Delphi, since they...
Syntax should be similar to Delphi, since they both share the VCL, so I'm guessing it's something along the lines of
TLabel lblDate;
lblDate.caption = DateTimeToStr( Now() );
I realize that...
Forum:
ASP
10-12-2002, 08:25 PM
Replies:
7
quering xml files
Views:
1,603
Posted By
dhtroy
Are you trying to query the file through an...
Are you trying to query the file through an Application or through a client-side HTML document ( or the like )?
Forum:
XML
10-12-2002, 08:13 PM
Replies:
4
saving changes to XML file using XMLDOM
Views:
3,166
Posted By
dhtroy
Oddly enough, according to the XML SDK from MS,...
Oddly enough, according to the XML SDK from MS, the Save() method passing a string argument is "not intended for use from a secure client, such as Microsoft® Internet Explorer."
Perhaps this is...
Forum:
XML
10-12-2002, 07:50 PM
Replies:
1
how do create both image/text link in xsl..??
Views:
1,715
Posted By
dhtroy
Since I am not familar with how your images are...
Since I am not familar with how your images are being stored, or how you plan on determining what's an image, verse just plain text - I'm flying kinda blind, but this is what I can offer up:
Might...
Showing results 1 to 25 of 28
Page 1 of 2
1
2
>
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
07:08 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.