473,806 Members | 2,594 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Form for HTML autorun CD?

Orv
I have a database set up where I want to export the records to a cd. I
want to be able to create an autorun cd and have it based on HTML so
when it opens, the user can click on various links and it will show them
the corresponding record.

Any ideas? A template or merge would be great as not all the records
from the DB would be going on the CD.

TIA,

Orv
Sep 4 '07 #1
5 2757
On Sep 3, 7:22 pm, "Orv" <pcbid...@hotma le.comwrote:
I have a database set up where I want to export the records to a cd. I
want to be able to create an autorun cd and have it based on HTML so
when it opens, the user can click on various links and it will show them
the corresponding record.

Any ideas? A template or merge would be great as not all the records
from the DB would be going on the CD.

TIA,

Orv
I don't believe that HTML will do this. An autorun cd has a special
binary file that is automatically loaded when the CD is first run.
This file is created by a compiler/packager like Visual Basics'
Package and Deployment Wizard. Also, if there are records on the CD,
what format are they in? Are they part of a database, or are they
individual files? What kind of records are they? You will have to
have some compiled software to run/show them.

Sep 4 '07 #2
Several concepts to digest.

1. Autorun.inf off a CD - that's plain text file that specifies what
to run when a CD is inserted into a drive. Some people have disabled
their autorun.

2. You may want to autorun a html file - you gotta check that this
works via autorun.inf and some people may have different browsers as
default.

3. Your HTML file - in my mind, there is a table of contents webpage -
a list of links. you click on a link and it takes you to another page
which has details. So you have one webpage and then many subsequent
webpages, each comprising the additional info for that link.

4. The Single Record webpages:
VBA programming etc...
http://office.microsoft.com/en-au/ac...CH063648341033
or XSLT programming
see http://msdn2.microsoft.com/en-us/lib...ffice.10).aspx
or

5. The Table of Contents webpage:
VBA programming etc...
http://office.microsoft.com/en-au/ac...CH063648341033
or XSLT programming
see http://msdn2.microsoft.com/en-us/lib...ffice.10).aspx
or
or
HTML templating.
http://office.microsoft.com/en-us/ac...692641033.aspx

But the links in that TOC must be relative to the TOC webpage rather
than absolute because you can't expect everyone to have the same CD
drive letter.

Sep 5 '07 #3
Hi Orv,

I am probably going to get all sorts of flaming for even suggesting
this, but I believe that Frontpage has the ability to produce a CD
'from' a website design that you have. All you would then
theoretically have to do is change the MDB file to the new one each
time you want to send out an update...

Just a thought - might be worth checking out.

Cheers

The Frog

Sep 5 '07 #4
On Sep 5, 8:52 pm, The Frog <Mr.Frog.to.... @googlemail.com wrote:
Hi Orv,

I am probably going to get all sorts of flaming for even suggesting
this, but I believe that Frontpage has the ability to produce a CD
'from' a website design that you have. All you would then
theoretically have to do is change the MDB file to the new one each
time you want to send out an update...
Frontpage creates websites that are either static HTML or dynamic HTML
using server side ASP vbscript.
The static HTML well, that's already discussed above, and the server
side dynamic HTML well, you can't run that from a CD - you need:
IIS webserver + ADO and Jet engine installed and running on the target
machine.

If you want to run dynamic serverside HTML, you'll need to put on the
CD, a webserver that supports ASP scripting and has ADO and Jet -
there is one free webserver that does that DWebPro but that's quite a
bit more engine you're shipping than just static HTML.

Ananda

Sep 5 '07 #5
Orv
Thanks for the help.

I think some of your tips will help.

I am aware of how to create webpages, autorun cd's, etc..

I probably needed to be more clear... I have cases that I manage (names,
addresses, dates, file numbers, notes, pictures, etc..). I track all this in
my DB. What I want to do is take one case with all the info from above and
create an autorun cd. I just figured html (maybe using merge) would be the
easiest thing to use. I was thinking of usinghtml frames where the user
would click on a link (on the main page) and it would show the relevant
information. I'm sure there is a way to save/export a report (from a query)
to html. However, if there was a template of sorts it would make it much
easier when making say 10 CD's for 10 different cases (rather than putting
each case/CD together seperately).

-Orv
"AnandaSim" <An*******@gmai l.comwrote in message
news:11******** **************@ 22g2000hsm.goog legroups.com...
On Sep 5, 8:52 pm, The Frog <Mr.Frog.to.... @googlemail.com wrote:
>Hi Orv,

I am probably going to get all sorts of flaming for even suggesting
this, but I believe that Frontpage has the ability to produce a CD
'from' a website design that you have. All you would then
theoreticall y have to do is change the MDB file to the new one each
time you want to send out an update...

Frontpage creates websites that are either static HTML or dynamic HTML
using server side ASP vbscript.
The static HTML well, that's already discussed above, and the server
side dynamic HTML well, you can't run that from a CD - you need:
IIS webserver + ADO and Jet engine installed and running on the target
machine.

If you want to run dynamic serverside HTML, you'll need to put on the
CD, a webserver that supports ASP scripting and has ADO and Jet -
there is one free webserver that does that DWebPro but that's quite a
bit more engine you're shipping than just static HTML.

Ananda

Sep 5 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
2363
by: M.E.Farmer | last post by:
Hello all, I needed this and did a quick search around and didn't see any examples. I knew it had to be easy, and it was. So here it is a CD_Autorun program in python. It is very simple and without comments is only about 30 lines. Also included a setup.py at the end of the script so you can 'compile' it easily. py>#####################################################################
2
1607
by: Liath Macha | last post by:
How can a distribution CD AUTORUN.INF file be made to open an HTML page using the system browser rather than running an exe on the distribution CD? Thanks Liath
11
5064
by: Ray5531 | last post by:
I'm looking for a good Freeware autorun maker for my C# application.Any suggessions? Thanks
2
1515
by: Carl Fenley | last post by:
I am writing a new version of a legacy application. The legacy application comes packaged with end-user data on a CD or DVD. When the end-user inserts the CD, the application is either installed or launches if it is already installed. If the end-user has the application open and inserts a new CD (containing the legacy app), a new instance of the application is launched. That's fine for the legacy application. The new application is a...
1
1814
by: zacks | last post by:
Is there any way in VB code to tell if an application was invoked from an Autorun.INF file on a CD/DVD or if it was invoked from the Start Menu (or a shortcut)?
2
8534
by: Joe Cool | last post by:
I know this is probably not the proper newsgroup to ask this question, but I do not know which one is. And most of you guys here know a lot about windows programming so I am taking a chance some one here may be able to answer this simple question. If I burn a CD/DVD and include a file in the root of the burned disk called Autorun.inf and the contents of it is: open=C:\Program Files\myProgram.EXE
2
3191
by: tmWin | last post by:
Hi all I wanna run my application directly from a Flash Disk. I want it AUTORUN once the device is attached. I have seen some virus script-programs which create their own autoruns on a specific Flash Disk device. It would be very thankful If anyone could tell me about it.
2
6690
AndesHelp
by: AndesHelp | last post by:
I have a very basic CD with a website loaded on it. The autorun.inf file is: ;ShellExecute=home.html icon=logo.ico However, when the CD is inserted it starts up with a Windows Explorer display instead of the HTML page. What am I missing? Thanks
2
1548
MrMancunian
by: MrMancunian | last post by:
Hi Everybody, We've got a virus problem in our department and the thing it does is always the same. It creates an autorun.inf in the root of every partition. When the partition is accessed (or initialised, I'm not sure), the autorun.inf runs an executable. I was thinking I could write a program/script that checks all available disks for an autorun.inf and either replaces or deletes the file. This way, the executable doesn't run. Now, surely...
0
9719
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10369
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10110
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9187
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7650
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6877
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5546
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
3851
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3008
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.