Hey,
I got Windows 98 Service Pack 1 installed and was wondering
what other service packs are out there and where can I get them? - been to MS site but cant find anything.
Thank you.
Hey,
I don't quite understand what you
require but have this *experimental*
code. Hope it helps.
(For a better layout, copy all and paste to Notepad)
<HTML>
<TITLE>Flying Frame</TITLE>
<SCRIPT LANGUAGE="JavaScript">
<!--
/*
FlyingFrame.html
A flying frame.
JavaScript.
Steve...
I just found the solution somewhere on the Web!
Thought I'd post it here to help others...
<% @ LANGUAGE="VBSCRIPT" %>
<HTML>
<HEAD>
<TITLE>myFile.asp</TITLE>
</HEAD>
<BODY>
<%
Dim dbPATH
dbPATH = Server.MapPath("myDatabase.mdb")
%>
Path of database on server...
Hey,
I've got this VBScript function that
returns the path of a specified file
which I want to use in an ASP page but
get the following error:
Server object error 'ASP 0177 : 800a0035'
Server.CreateObject Failed
/myDir/myFile.asp, line 14
00000000
Here is the code that gives
the above...
I'll give you the "real" problem code.
I am using this query in VBScript as
part of an ASP page:
Dim query
Dim query1
'query variable below
'contains "S" or another character
query = Request.Form("txtQuery")
'query1 below contains "S*"
'or another...
Hey,
I've got this SQL code that works fine for searching a field called "Surname" in a table called "tblCustomer" for
the character "S".
SELECT * FROM tblCustomer
WHERE Surname LIKE 'S'
ORDER BY Surname;
The problem is, that I get all the surnames that contain...
Hey,
Does anyone know how to do
the Java equivalent of the
C++ "cin >>" storing into a
variable operation?
C++
int x = 0;
cout << "Enter a number: ";
cin >> x;
Java
int x = 0;
System.out.println("Enter a number: ");
x = System.in.readLine(); // This don't...
Hey,
Does anyone know how to output
the double-quote " character
in VBScript? (Escape characters)
For example, in JavaScript, the
following would output
(with double-quotes)
the string "Hello, world!"
in a message-box:
alert("\"Hello, world!\"");
The...
Hey,
The following code tries to read a text file "myFile.txt" and store the contents of this file into a String variable called "strFileData" and then output this variable to standard output.
It does'nt work!
Why does this variable contain integers?
Where is the string...
Why does the <STYLE>...</STYLE> tag not work in Netscape? And what is the way around to fix this?
For example, this works in IE:
<STYLE>
<!--
A:HOVER{COLOR: #000000; BACKGROUND-COLOR: #A6CAF0;}
.clsTD
{
FONT-FAMILY: Verdana;
FONT-SIZE: 13;
COLOR: #A6CAF0;
BACKGROUND-COLOR: #E0E0E0...
Hey,
Does anyone know how to read
and write to text files in Java?
In C++, to read a file, you would do:
(stores the contents into array "data")
ifstream f("myFile.txt")
char ch;
char* data = " ";
while (f.get(ch))
{
data << ch;
}
f.close();
In C++, to...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.