Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: sabev
  • Content: Threads
  • Order by date
  1. sabev

    error - An exception of type ‘Microsoft JScipt runtime error: Object e

    Not sure if this is the right forum…. This pertains to an ASP project developed in Visual InterDev 6.0. I’m trying to do a bit of debugging. Out of the Blue, .asp pages would not load. I can no longer reproduce the error. In looking for a solution, I ran synciwam.vbs. That produced this...
  2. sabev

    'WScript' is undefined

    This code - var host = WScript.Application; Produces this error - 'WScript' is undefined How do I set up My IE browser to recognize WScript? Thanks
  3. sabev

    Can't open object using .aspx file. Can open with .htm file

    I’m trying to use vbScript to open an excel application (I’m also going to do word). Sub Btn1_onclick() call OpenWorkbook("c:\temp\test.xls") End Sub Sub OpenWorkbook(strLocation) Set objExcel = CreateObject("Excel.Application") objExcel.Visible = true objExcel.Workbooks.Open strLocation...
  4. sabev

    Open work doc on client with jscript

    I need to open word, excel and .jpgs on the client with some jscript (or anything that would work). This is VB ASP.NET. The files I want to open are not on the client or server, but I can UNC to them or map the server. Thanks
  5. sabev

    Changing the value of a Table Cell with an aspx.vb Sub procedure call

    ASP.NET question. This should be simple. Default.aspx has a number of Web Forms in it. It calls some javascript. From the javascript, I want to call Page_Load event in Identify.aspx. I want Identify.aspx to change the text value of some Web forms that exist in default.aspx This is what...
  6. sabev

    Works in IE not in FireFox.

    parent.MapSomedataFS.rows = “*,170,0,0”; Works in IE, but won’t work in FireFox. MapSomedataFS is a name of a FRAMESET and I need to be able to dynamically resize it. I get the error – parent.MapSomedataFS has no properties. On the javascript console in FireFox. Thanks
  7. sabev

    Visual InterDev and Debugging

    I’m still quite new to Visual InterDev (VID), in fact this is my second web app and the first one developed with VID. I’m having debugging problems, I think. VID is on a client (my development machine). IIS and the service that processes the XML is on a server. The application that processes...
  8. sabev

    Simple VB 6 Question.

    This is my first shot at creating .dlls and .cls files. I have done a number of .exe so I’m not a total newbie. How to explain….. My project (Call it CustomTool.vbp) has a form and a number of classes in it. The class files all have the same properties. There are private and PUBLIC...
  9. sabev

    C# Informix OLE connection

    Hi All, I'm am trying to set up a connection to an informix database using C# in Visual Interdev. It works with VB, so I know my drivers are ok. I just can't seem to come up with the syntax anywhere. This is what I have - OleDbConnection InformixConn = new...
  10. sabev

    <DIV> Tag Question

    I’m having a heck of a time getting the properties of a div tag. In this code, the mouseover event in the <IMG> tag calls a function. It should pass the <DIV> object to that function but the alert returns ‘src has no properties’. Does anyone see what the problem is? Thanks. <script...
  11. sabev

    Requests for global.asa not allowed

    HTTP Error 500-15 - Requests for global.asa not allowed Internet Information Services Any one know what causes this error. I'm doing some simple testing with IIS. It was working fine, then it quit. Thanks Doug
  12. sabev

    Simple JScript/Frames ?

    I have a simple frames page in which a frame called 'topframe' creates a new window. I would like the new window to be able to access functions from the calling frames. In this case, frame name 'topframe' creates a new window and inserts new.htm in it. I would like new.htm to change the color...
  13. sabev

    Remove files based on time stamp

    How might I remove files based on how old they are? Say delete files older than a day? I am guessing I can use the find command and pass the file to a rm command - find -name &quot;filename&quot; -time??? | xargs rm Thanks
  14. sabev

    msgbox question

    Hi All, I have a number of .asp pages containing VBscript. Is there a way to insert a msgbox in these to display some quick info for debugging purposes? I have tried a message box and nothing happens likewise with a jscript alert function thus – %> <html> <script...
  15. sabev

    stuck status bar

    I am using the following code to update a frame. Works fine except the status bar will creep up to about 50% and then is stuck. The frame gets updated fine, and is fully functional but to the user, it looks like things are still working. <FORM name=&quot;frmSearch&quot...
  16. sabev

    global.asa

    I am having problems with a global.asa. It does not appear to be setting any application variables. In another thread, I saw a reference to an IIS setting. It said that the folder with the global.asa must be an ISS application. I can't find any reference in ISS properties to an ISS...
  17. sabev

    IIS Application Setting

    I am having problems with a global.asa. It does not appear to be setting any application variables. In the ASP forum, I saw a reference to an IIS setting. It said that the folder with the global.asa must be an ISS application. I can't find any reference in ISS properties to an ISS...
  18. sabev

    ODBC error when using ADODB.connection

    I am getting the errors 0 [Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed IM006 Microsoft OLE DB Provider for ODBC Drivers -11048 [Informix][Informix ODBC Driver]Unable to load translation DLL. IM009 Microsoft OLE DB Provider for ODBC Drivers I think the first one is...
  19. sabev

    Options other than ADODB.Connect

    Help again. I'm am using ADODB.connect to try to connect to an informix database. I have tried to connect with both a DSN and a connect string. I built the connect string with a .udl file and the test connect with that file works fine. The DSN works fine with other VB code CODE - set...
  20. sabev

    ADODB.connection fails

    This is my first shot at ASP but I do have a fair amout of VBA experiance. Anyway, My ADODB.Connection fails in the ASP page CODE - set conShark = Server.CreateObject(&quot;adoDB.CONNECTION&quot;) conShark.Open &quot;DSN=SYSinformix33;UID=test;PWD=test&quot; ERROR in IE 5.5 - Microsoft...

Part and Inventory Search

Back
Top