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 strongm 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
  • Order by date
  1. sabev

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

    Follow up- I get the same error with a newly created simple project that has no scripting in it of any kind. Just a blank html page set as the start up.
  2. 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...
  3. 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
  4. sabev

    Open work doc on client with jscript

    Thanks Greg, that's just what I did and it works great. Now, I need something to open .jpgs.
  5. sabev

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

    Thanks, I fiqured it out. It was a browser security issue when run in debugger.
  6. 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...
  7. sabev

    Open work doc on client with jscript

    Well it is a javascript question. I'm trying this - function openFile(){ var excel = new ActiveXObject("Excel.Application"); } I get this error - Microsoft JScript runtime error: Automation server can't create object.
  8. 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
  9. sabev

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

    .NET 1.1 I do think I somehow have to do a postback. That's what I can't figure out. I'm doing this because I want to dynamically update values on in a client table with data pulled with VB.NET from the server side.
  10. 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...
  11. sabev

    Works in IE not in FireFox.

    Well, I've tried..... parent.parent.parent.document.... parent.parent.document.... parent.document... and document...
  12. sabev

    Works in IE not in FireFox.

    <FRAMESET ROWS="35,*"> <FRAME NAME="ToolFrame" SRC="blank.htm"> <FRAMESET COLS="175,*,110"> <FRAMESET rows="40,*> <FRAME NAME="ModeFrame" SRC="bottom.htm" <FRAME NAME="TOCFrame" SRC="blank.htm"> </FRAMESET>...
  13. sabev

    Works in IE not in FireFox.

    It's only available on our intranet at the moment, but here is the frameset code. Sorry it's hard to read not sure how I should format it for this forum. </HEAD> <FRAMESET ROWS="' + (35+addNS) + ',*" FRAMEBORDER="NO" FRAMESPACING="0" onload="doIt()" BORDER="1"' + moreStuff + '> <FRAME...
  14. sabev

    Works in IE not in FireFox.

    Hi, Thanks for the suggestions. I tried both and they both error out in IE. top.frames['MapSomedataFS'].rows = "*,170,0,0"; Produces the error - top.frames['MapSomedataFS'] is not an object parent.document.getElementById('MapSomedataFS').setAttribute('rows','25%,25%,25%,25%',0); Produces...
  15. 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
  16. 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...
  17. sabev

    Simple VB 6 Question.

    Hey Dr. There is still something I don't understand. I have literally put my sample code in the class files. One works, one doesn't. And intllisence (auto-complete) why would it see/recognize one class file but none of the others. I tried starting a new project and noticed that intellisence...
  18. 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...
  19. sabev

    C# Informix OLE connection

    Never mind, I got it. The connect string should be - OleDbConnection InformixConn = new OleDbConnection(&quot;Provider=Ifxoledbc;Data Source=test@online_live;User ID=me;password=mypassword&quot;);
  20. 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...

Part and Inventory Search

Back
Top