navigation
a webmaster learning community
     Home    Register     Search      Help      Login    
FrontPage Alternative
Sponsors

Shopping Cart Software
Ecommerce software integrated into Frontpage, Dreamweaver and Golive templates. No monthly fees and available in ASP and PHP versions.

Website Templates
We also have a wide selection of Dreamweaver, Expression Web and Frontpage templates as well as webmaster tools and CSS layouts.

Frontpage website templates
Creative Website Templates for FrontPage, Dreamweaver, Flash, SwishMax

Search Forums
 

Advanced search
Recent Posts

 Todays Posts
 Most Active posts
 Posts since last visit
 My Recent Posts
 Mark posts read

 

Runtime Error

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
Users viewing this topic: none
Printable Version 

All Forums >> Web Development >> General Web Development >> Runtime Error
Page: [1]
 
Aubergine

 

Posts: 7
Joined: 10/9/2002
Status: offline

 
Runtime Error - 10/9/2002 10:44:54   
I' ve tried to edit a CSS file and been unable to save changes. I get an error message as follows :

---
Microsoft Visual C++ Runtime Library

Runtime Error!

This application has requested the Runtime to terminate it in an unusual way
---

Anybody know why this happens, and what I can do about it?
Thanks a lot
Justjay

 

Posts: 697
From: Montreal, QC Canada
Status: offline

 
RE: Runtime Error - 10/9/2002 13:30:50   
What are you using (software wise) to edit the CSS??

_____________________________

JustJay
thejehm.net Web Solutions
SAH Link Exchange
Serious About Hosting

(in reply to Aubergine)
Seventh

 

Posts: 1235
Joined: 8/4/2002
From: The Motor City
Status: offline

 
RE: Runtime Error - 10/9/2002 13:54:01   
File > Save As

This should alleviate some, if not all the problems. Has worked for me in the past.

_____________________________

"go forth and create."

(in reply to Aubergine)
Aubergine

 

Posts: 7
Joined: 10/9/2002
Status: offline

 
RE: Runtime Error - 10/10/2002 1:51:43   
I am either editing in FrontPage directly, or using Notepad.

(in reply to Justjay)
Aubergine

 

Posts: 7
Joined: 10/9/2002
Status: offline

 
RE: Runtime Error - 10/10/2002 1:53:41   
File > Save As did not work - same problem ....

(in reply to Seventh)
Seventh

 

Posts: 1235
Joined: 8/4/2002
From: The Motor City
Status: offline

 
RE: Runtime Error - 10/10/2002 20:32:43   
Could you post the .css file information here or provide a url? We can take a look at it.

_____________________________

"go forth and create."

(in reply to Aubergine)
Seventh

 

Posts: 1235
Joined: 8/4/2002
From: The Motor City
Status: offline

 
RE: Runtime Error - 10/10/2002 20:37:56   
That' s okay, I got it. Here' s your problem. You have this:
quote:

<style type=" text/css" >{ }
body { background-color: white }
.TTE10blacktext { color: #000000; font-size: 10px; font-family: Verdana, Arial }
.TTEwhite10text { color: #FFFFFF; font-size: 10px; font-family: Verdana, Arial }
.TTEred10text { color: #000000; font-size: 10px; font-family: Verdana, Arial }
.TTE11blacktext { color: #000000; font-size: 11px; font-family: Verdana, Arial }
.TTE12blacktext { color: #000000; font-size: 12px; font-family: Verdana, Arial }
.TTEred12text { color: #FF0000; font-size: 12px; font-family: Verdana, Arial }
.TTE13blacktext { color: #000000; font-size: 13px; font-family: Verdana, Arial; font-weight: bold }
.TTE13bluetext { color: #000066; font-size: 13px; font-family: Verdana, Arial; font-weight:
bold }
.TTEwhite13text { color: #FFFFFF; font-size: 13px; font-family: Verdana, Arial }
.TTEred13text { color: #FF0000; font-size: 13px; font-family: Verdana, Arial; font-weight: bold }
.TTE18text { color: #000000; font-size: 18px; font-family: Verdana, Arial }
a:link { color: #9999FF; font-size: 10px; font-family: Verdana; font-weight: bold; text-decoration: none }
a:visited { color: #9999FF; font-size: 10px; font-family: Verdana; font-weight: bold; text-decoration: none }
a:hover, a:active { color: #CCCC00; font-size: 10px; font-family: Verdana; font-weight: bold; text-decoration: none }
//-->
</style>

This is what it should be:
quote:

body { background-color: white }
.TTE10blacktext { color: #000000; font-size: 10px; font-family: Verdana, Arial }
.TTEwhite10text { color: #FFFFFF; font-size: 10px; font-family: Verdana, Arial }
.TTEred10text { color: #000000; font-size: 10px; font-family: Verdana, Arial }
.TTE11blacktext { color: #000000; font-size: 11px; font-family: Verdana, Arial }
.TTE12blacktext { color: #000000; font-size: 12px; font-family: Verdana, Arial }
.TTEred12text { color: #FF0000; font-size: 12px; font-family: Verdana, Arial }
.TTE13blacktext { color: #000000; font-size: 13px; font-family: Verdana, Arial; font-weight: bold }
.TTE13bluetext { color: #000066; font-size: 13px; font-family: Verdana, Arial; font-weight:
bold }
.TTEwhite13text { color: #FFFFFF; font-size: 13px; font-family: Verdana, Arial }
.TTEred13text { color: #FF0000; font-size: 13px; font-family: Verdana, Arial; font-weight: bold }
.TTE18text { color: #000000; font-size: 18px; font-family: Verdana, Arial }
a:link { color: #9999FF; font-size: 10px; font-family: Verdana; font-weight: bold; text-decoration: none }
a:visited { color: #9999FF; font-size: 10px; font-family: Verdana; font-weight: bold; text-decoration: none }
a:hover, a:active { color: #CCCC00; font-size: 10px; font-family: Verdana; font-weight: bold; text-decoration: none }


For an external stylesheet you do not need to include the following:
<style type=" text/css" ></style>

This one should take care of your problem.

_____________________________

"go forth and create."

(in reply to Aubergine)
Aubergine

 

Posts: 7
Joined: 10/9/2002
Status: offline

 
RE: Runtime Error - 10/11/2002 2:51:59   
Thanks for looking into it. Actually I was making a new .css file in a new web (I will be replacing the current web). Any time I change the .css file and save changes it gives me the error. I went into the current web and did the changes to the current .css file as you suggested, and still got the same error message.

It appears that with any .css files I have anywhere in FrontPage, I cannot save the changes at all.

Weird?!

Maybe I should reinstall FrontPage? Though I oculd not want to run a risk of losing what I have done already ... hmm ... any ideas?!

(in reply to Seventh)
ssouci

 

Posts: 2
Joined: 4/11/2006
Status: offline

 
RE: Runtime Error - 4/11/2006 19:37:51   
Hi Aubergine:

I have EXACT same problem... did you ever solve it? Anyone?

Thx!

SS

(in reply to Aubergine)
Aubergine

 

Posts: 7
Joined: 10/9/2002
Status: offline

 
RE: Runtime Error - 4/12/2006 2:32:08   
No I never solved it, sorry.

I now use Dreamweaver :) which is, for me, working fine.

(in reply to ssouci)
Page:   [1]

All Forums >> Web Development >> General Web Development >> Runtime Error
Page: [1]
Jump to: 1





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts