Results 1 to 8 of 8

Thread: Visual Interdev... Bit Of A Problem

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Mar 2000
    Location
    Manchester
    Posts
    446

    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

  2. #2
    Black Cat JoshT's Avatar
    Join Date
    Nov 2000
    Location
    WNY, USA
    Posts
    4,032
    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.

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    Mar 2000
    Location
    Manchester
    Posts
    446
    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

  4. #4
    Lively Member
    Join Date
    Nov 2000
    Location
    Pakistan
    Posts
    80
    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

  5. #5
    Frenzied Member monte96's Avatar
    Join Date
    Sep 2000
    Location
    Somewhere in AZ
    Posts
    1,379
    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..

  6. #6

    Thread Starter
    Hyperactive Member
    Join Date
    Mar 2000
    Location
    Manchester
    Posts
    446
    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&nbsp;</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

  7. #7
    Frenzied Member monte96's Avatar
    Join Date
    Sep 2000
    Location
    Somewhere in AZ
    Posts
    1,379
    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..

  8. #8

    Thread Starter
    Hyperactive Member
    Join Date
    Mar 2000
    Location
    Manchester
    Posts
    446
    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&nbsp;</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
  •  



Click Here to Expand Forum to Full Width