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 Mike Lewis 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: *

  1. rpathy1974

    Goto a location on the WebPage without scrolling

    Thanks! to everyone for responding I finally got it working, I tried this... I called the below JScript OnLoad of my web page by passing the required HyperLink Name (stored in a Hidden Field). function OnLoadGotoSubSec() { window.location.hash=document.cpf.hGotoSubSecNo.value; }
  2. rpathy1974

    Goto a location on the WebPage without scrolling

    I have a link to UPDATE the contents of my Web page. Upon click of the UPDATE link, i'm submitting the page to do the db update at the server end. Everytime i click Update the webpage gets scrolled to the top. I need to hold the page exactly at the same point after the Update process. I...
  3. rpathy1974

    Object reference not set to an instance of an object

    I'm getting the error "Object reference not set to an instance of an object" at the execution of the "gDtlConOleDbObj.Open()" in the folowing code of my webpage.aspx.vb Public gDtlConOleDbObj As New OleDbConnection Public gDtlTransOleDbObj As OleDbTransaction Private Sub...
  4. rpathy1974

    Compiled VB Forms

    I'm creating a VB appln, where i have FORMS with (*.wmf) pictures loaded onto it. I have around 20 Forms like this now and this is expected to become even more. So when i compile my appln, the size of the EXE file is already 2mb. I know that i can have the picture files stored separately and...
  5. rpathy1974

    Using Menu in ActiveX User Document

    I'm working on a ActiveX Document Exe Project and I'm trying to have a Menu in a User Document. I'm able to configure the Menu using the Menu Editor, but when I view the User Document either at the design time or in a IE browser, I'm not able to see the Menu. Can somebody let me know whether...
  6. rpathy1974

    OCX control calling a Form

    I have a OCX control, which calls a Form on a button click. Now on the click of a button in the Form, I need to close the Form and simultaneously makes changes to a text box in my OCX control. I believe this can be accomplished by the RaiseEvent Statement. I tried it but still... Can somebody...
  7. rpathy1974

    Loading FORM dynamically

    THANKS a ton, It really worked.
  8. rpathy1974

    Loading FORM dynamically

    I have a string variable which contains a FORM Name. Now I wanted to load the FORM from the value in the string variable. My code is something like this... **************************************************** Dim gForm as Form Dim mFormName as String mFormName = "MyForm" Set gForm =...
  9. rpathy1974

    Passing Array using Session Variables

    I got it working. In my ASP Page-2 i made a change. I removed the dimensions while declaring the array and it worked fine for me. ASP Page-2 ********** Dim MyArray MyArray = Session("MySesArr")
  10. rpathy1974

    Passing value from JavaScript to VBscript

    I wanted to pass a the value from a JavaScript variable to an VBscript variable. I don't want to use Hidden Fields for this purpose because i'm trying to pass an entire two dimension ARRAY. Please help me.
  11. rpathy1974

    Passing Array using Session Variables

    I need to pass an array from one ASP page to another ASP page. For this, I tried using the Session Variable, but it is not working and I'm getting "Internal server error ", can anyone please help me on this. My code is ... ASP Page-1 ********** Dim MyArray(x,y)...
  12. rpathy1974

    "type mismatch" error while passing an array as an paramter to a Func

    Thanks ! It finally worked. I coded as below... My VB Component ***************** Public Function F_Fetch_TblNCol_Dtls(ByRef pTblDtlsStrArr As Variant, ByRef pColDtlsStrArr As Variant) As String ... ... ... End Function
  13. rpathy1974

    "type mismatch" error while passing an array as an paramter to a Func

    I'm calling a VB (DLL) component from a ASP page. I need to pass an array as input parameter to my Function in the VB component. But when I do this, I'm getting a "type mismatch" error. Can somebody tell me where i have gone wrong. I have also included my code below. My ASP page...
  14. rpathy1974

    ASP 0240 - A Script Engine threw exception ...

    Somebody please help me. I'm getting this error and I everytime have to restart my IIS Server. ErrorCode: -2147467259(0x80004005) ErrorDesc: Script Engine Exception. ASP Code: ASP0240 ASP Description: A Script Engine threw exception in 'C0000005' in...
  15. rpathy1974

    Using PDF from VB

    Thanks for the reply. I tried something like this Dim myObj as New PDF myObj.LoadFile ("D:\XXX\ZZZ.pdf") But nothing happened (the PDF file didn't get loaded). I would be thankful if you can tell me how this really works out. All I needed is to create a instance of the Acrobat...
  16. rpathy1974

    Using PDF from VB

    How to open a instance of PDF file from VB and how to read and write values to the Fields of that PDF file.
  17. rpathy1974

    How to trap the Browser Window Close Event

    Hi ! I want to trap the event, when my browser window is getting closed (via the top right X). Based on this I'm doing a certain tasks. regards, rpathy.
  18. rpathy1974

    How to trap the Browser Window Close

    Hi ! I want to trap the event, when my browser window is getting closed (via the top right X). Based on this I'm doing a certain tasks. regards, rpathy.
  19. rpathy1974

    Hi ! I have grouped 3 different

    Hi ! I have grouped 3 different Standard EXE Projects into a GROUP project. I have done this for maintenance purpose. When I try to execute from one Project a "formname.SHOW" in another Project, I'm unable to do this. I would like to know whether this is possible and how to go about...
  20. rpathy1974

    Help me in this problem !

    Hi !!! I have a peculiar problem. Somtimes the navigation of my pages comes to a halt. The page is not getting submitted when I click on the NEXT button. But this is happening occasionally say once in a week or once in two weeks. The problem gets sorted out once restart my IIS server. But I...

Part and Inventory Search

Back
Top