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 SkipVought 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. adknbvi

    AJAX Calendar Control not working

    Hello, My client just received a new Win7/64-bit laptop with IE8. She moved from WinXP and IE8. I support an ASP.NET-based web application that she runs via IE. On the old laptop, everything ran successfully. On the new laptop, she is having trouble with the calendar controls. • She...
  2. adknbvi

    Oracle AFTER INSERT trigger with .NEXTVAL

    Hello, I have a table (TABLE_A) with an ID field that we use seq.nextval to populate on INSERT. TABLE_A: ID <other stuff> USER_NAME And I have a second table (TABLE_B) which may contains multiple records for each ID: TABLE_B: ID USER_NAME When we insert into TABLE_A, we provide all the...
  3. adknbvi

    Where to find custom menus in MS Word 2007?

    Thanks! I guess I'm going to take a look at the ToolbarToggle. It seems to fit the need most closely.
  4. adknbvi

    Where to find custom menus in MS Word 2007?

    Hi, In my workplace, we have an Office 2000 or 2003 MS Word document with embedded macros that are accessed via a custom menu. The menu shows up right along the top of the document in line with File, Edit, etc... When a user clicks on it, he gets a drop-down list of functions, each of which...
  5. adknbvi

    Firefox - frameset problem - XXX has no properties

    THANKS SO MUCH!! I added the getElementById() reference and all is well! You guys ROCK!
  6. adknbvi

    Firefox - frameset problem - XXX has no properties

    I have a problem that I've seen addressed multiple times in this forum, but I've tried the previously posted solution and I just can't seem to get it right. I have a frameset as part of a simple web site for viewing family pictures. Frames Page code looks like this: <FRAMESET cols="30%,70%"...
  7. adknbvi

    Java applet not displayed on page

    Hello, I have a web page with a java applet on it. When I load the web page, *nothing* is displayed in the space where the applet should be (not even a gray box). The status bar indicates that the applet is started. If I minimize the IE window and then maximize it again, the applet is...
  8. adknbvi

    Unspecified Error

    Hello dpdg, I am in the EXACT same situation that you have described. Did you ever find a solution to this problem? Any advice would be greatly appreciated.
  9. adknbvi

    Uploading data from Excel - hitting &quot;Enable Macros&quot; prompt

    Hi! WHY OPEN THE FILE: At this point in the process, the file exists on the server, but we need to open it in order to process the records within it. We have some validation/verification logic to carry out, then we store the updated records into the database. In C#: xl = new...
  10. adknbvi

    Uploading data from Excel - hitting &quot;Enable Macros&quot; prompt

    Hello, I have an ASP.NET application that allows users to download their data into an Excel spreadsheet, then edit it and then upload it back into the Oracle database. When uploading the data, we are copying the Excel file to the IIS server in a folder inside the virtual directory (this seems...
  11. adknbvi

    Using OnBeforeUnload to stop a Submit

    Adam, That did exactly what I needed! Thanks so much! Valerie
  12. adknbvi

    Using OnBeforeUnload to stop a Submit

    Tracy, Thanks for responding! Here is a set of small pages that will demonstrate the problem. If you create these and put them into a Virt Dir, just browse to Example.asp and click on the text. When the pop-up box is displayed, you can choose Cancel to see the problem. Thanks again for...
  13. adknbvi

    Using OnBeforeUnload to stop a Submit

    I have a JS client side function that is carrying out a submit when a user clicks on a hyperlink. strURL will point to the page that the user is being sent to. function SubmitPage(strURL) { document.MyForm.method ="POST"; document.MyForm.action = strURL; document.MyForm.submit(); } I am...
  14. adknbvi

    Includes with DSN info?

    I think I answered my own question. The first line has to stay in every file, but the second line (the one I anticipate changing in the future) can go into a one-line function. I pass adoConnection back and forth to/from the function and it seems to work.
  15. adknbvi

    Includes with DSN info?

    Hi, I have a web application with many (JavaScript) ASP pages. Currently, the following lines are in every one: var adoConnection = Server.CreateObject(&quot;ADODB.Connection&quot;); adoConnection.Open(&quot;DSN=MY_DSN&quot;); This connection string may have to change in the future - due to...
  16. adknbvi

    Using split in .asp page

    No problem, Mike. I have tried with and without the separate declaration for the array, and neither have worked. The frustrating part is that I have written it exactly as I have read it from several of my reference books (with/without the array declaration, with/without using a variable to...
  17. adknbvi

    Using split in .asp page

    Mike, This is an asp file, but the language is JavaScript, that is why I used the syntax that I did for the .split and the &quot;var&quot; to dimension my variable. Thanks, Valerie
  18. adknbvi

    Using split in .asp page

    I am having the most ridiculous problems getting the split method to do what I want. All I am trying to do is split a string using the carat (^) as a delimiter. Here is the code for two simple pages: an htm file and the asp file that it posts to. I know the answer must be simple, but I am...
  19. adknbvi

    Determining List Box Contents in ASP

    Joli, Thank you! That was very helpful! I am now moving forward again! Valerie

Part and Inventory Search

Back
Top