|
-
Jul 18th, 2001, 06:59 AM
#1
Thread Starter
Hyperactive Member
Visual Interdev... Bit Of A Problem
I have reinstalled INTERDEV 3 times and still stuck....
The keywords are not highlighted in the view text editor window, autocomplete does not work... it may as well be a notepad because projects wont load either.
I have reinstalled, i have looked in options, i cant solve this one.. can you??
Regards GARY
"Life isn't about finding yourself. Life is about creating yourself."
--George Bernard Shaw
-
Jul 18th, 2001, 07:08 AM
#2
Black Cat
I had that problem once. I uninstalled all of Visual Studio, re-applied the latest Windows NT service pack, reinstalled Visual Studio, then installed the latest VS service pack, and then it worked fine.
Josh
Get these: Mozilla Opera OpenBSD
I have books for sale: "MCSD in a Nutshell" and "VB Distributed Exam Cram" - PM me for details. Will also trade for a decent ATX Pentium 2 MB/CPU/RAM combo.
-
Jul 18th, 2001, 07:34 AM
#3
Thread Starter
Hyperactive Member
Ureka ka ka ka.... for you information i only install SERVICE PACK 5 didn't need to reinstall everything.
Cheers
"Life isn't about finding yourself. Life is about creating yourself."
--George Bernard Shaw
-
Jul 18th, 2001, 07:51 AM
#4
Lively Member
Install V INTERDEV 6.0
you could be having this problem cuz of some missing files or some uncompatibilities.
any ways try V INTERDEV 6.0
Adeel Ahmed
-
Jul 18th, 2001, 03:07 PM
#5
Frenzied Member
The problems you described were fixed in SP3 so SP5 would include the fix as well..
oOOo--oOOo
__ /\/\onte96
oOOo--oOOo
Senior Programmer/Analyst
MCP
[email protected]
[email protected]
Your results may vary.. some restrictions may apply.. pricing and participation may vary.. not available in all states.. professional driver closed course..quantities limited..
-
Jul 19th, 2001, 04:13 AM
#6
Thread Starter
Hyperactive Member
Thanks for that, i know. No need to uninstall either.
While your there monty, can you tell me why i'm getting no value for request.form("query") in this code
<!-- #include file="connect.inc" -->
<!-- this file enables to RecordCount to correctly function -- >
<!--#include file="adovbs.inc"-->
<%
Session("Query") = Request.QueryString("query")
Call Header
Dim objConn
Dim objRec
Set objConn = Server.CreateObject ("ADODB.Connection")
Set objRec = Server.CreateObject ("ADODB.Recordset")
objConn.Open gsConnect
objRec.Open "webdata", objConn, adOpenStatic
objRec.MoveFirst
While Not objRec.EOF
'Response.Write objRec("id") & "<BR>"
objRec.MoveNext
Wend
'Response.Write "<b>Number = " & (objRec.RecordCount)
objRec.Close
objConn.Close
Set objRec = Nothing
Set objConn = Nothing
Sub Header
%>
<HTML>
<HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta http-equiv="Content-Language" content="en-us">
<TITLE>Search</TITLE>
</HEAD>
<body bgcolor="#FFFFFF" >
<Font Face="Arial" Size="2">
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="100%" colspan="2"></td>
</tr>
<tr>
<td width="50%" bgcolor="#000000">
<Form method="Get" id=form1 name=form1>
<table border="0" width="100%">
<tr>
<td width="33%" align="right"><font color="#FFFFFF" size="2" face="Tahoma,Arial"><b>Search for </b></font></td>
<td width="33%"><input type="text" size="20" value="<%=Request.QueryString("query")%>" name="query"></td>
<td width="34%"><input type="submit" name="Search" Value="Search"></td>
</tr>
</table>
</Form>
</td>
<td width="50%" bgcolor="#000000"></td>
</tr>
<tr>
<td width="100%" colspan="2" bgcolor="#000000"></td>
</tr>
</table>
<%
End Sub
Search Request.Form("query")
Response.Write "<b>" & Request.Form("query") & "</b>"
Sub Search (searchstring)
if Request.Form("query") = "Gary" then
Response.Write "<b>whoopee</b>"
end if
End Sub
%>
</BODY>
</HTML>
"Life isn't about finding yourself. Life is about creating yourself."
--George Bernard Shaw
-
Jul 19th, 2001, 02:38 PM
#7
Frenzied Member
Sure, Gare:
Your method on your form is "Get". That means that the form is submitted using querystrings. Change it from Request.Form to Request.Querystring. You can't get it from both (which it looks like your doing here). Probably just an oversight..
oOOo--oOOo
__ /\/\onte96
oOOo--oOOo
Senior Programmer/Analyst
MCP
[email protected]
[email protected]
Your results may vary.. some restrictions may apply.. pricing and participation may vary.. not available in all states.. professional driver closed course..quantities limited..
-
Jul 20th, 2001, 04:28 AM
#8
Thread Starter
Hyperactive Member
Absolutely nothing....
<!-- #include file="connect.inc" -->
<!-- this file enables to RecordCount to correctly function -- >
<!--#include file="adovbs.inc"-->
<%
Session("Query") = Request.QueryString("query")
Response.Write "<b>" & Session("Query") & "</b>"
Call Header
Dim objConn
Dim objRec
Set objConn = Server.CreateObject ("ADODB.Connection")
Set objRec = Server.CreateObject ("ADODB.Recordset")
objConn.Open gsConnect
objRec.Open "webdata", objConn, adOpenStatic
objRec.MoveFirst
While Not objRec.EOF
'Response.Write objRec("id") & "<BR>"
objRec.MoveNext
Wend
'Response.Write "<b>Number = " & (objRec.RecordCount)
objRec.Close
objConn.Close
Set objRec = Nothing
Set objConn = Nothing
Sub Header
%>
<HTML>
<HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta http-equiv="Content-Language" content="en-us">
<TITLE>Search</TITLE>
</HEAD>
<body bgcolor="#FFFFFF" >
<Font Face="Arial" Size="2">
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="100%" colspan="2"></td>
</tr>
<tr>
<td width="50%" bgcolor="#000000">
<Form method="Get" id=form1 name=form1>
<table border="0" width="100%">
<tr>
<td width="33%" align="right"><font color="#FFFFFF" size="2" face="Tahoma,Arial"><b>Search for </b></font></td>
<td width="33%"><input type="text" size="20" value="<%=Request.QueryString("query")%>" name="query"></td>
<td width="34%"><input type="submit" name="Search" Value="Search"></td>
</tr>
</table>
</Form>
</td>
<td width="50%" bgcolor="#000000"></td>
</tr>
<tr>
<td width="100%" colspan="2" bgcolor="#000000"></td>
</tr>
</table>
<%
End Sub
Search Request.QueryString("query")
Response.Write "<b>" & Request.QueryString("query") & "</b>"
Sub Search (searchstring)
if Request.QueryString("query") = "Gary" then
Response.Write "<b>whoopee</b>"
end if
End Sub
%>
</BODY>
</HTML>
"Life isn't about finding yourself. Life is about creating yourself."
--George Bernard Shaw
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|