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 bkrike 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: dlingo
  • Content: Threads
  • Order by date
  1. dlingo

    Question regarding DECLARE statement

    I have two seperate Oracle 8i environments that I am working in. In my development environment, I wrote a stored procedure (package body) that compiles without problems. However, in the operational environment, the same package body is returning the following compilation error: PLS-00201...
  2. dlingo

    JRE / JWS Compatibility Question

    I have two customers who need to use two seperate versions of JRE and JWS. One customer is requesting JRE 1.4.1_02 with JWS 1.2.0_02 and the other customer is requesting JRE 1.4.1_05 with JWS 1.4.2. Can anyone tell me if the newer versions of JRE and JWS are backwards compatible with the older...
  3. dlingo

    Disable print browser on Win2K server in NT domain

    I'm working in a domain that is across a WAN. The domain's PDCs and BDCs are NT based. However, there are Windows 2000 servers that serve only as member servers (not as DCs). Each of these Win2K servers is behind a router that has filtering turned on to disable all other Win2K servers from...
  4. dlingo

    Update windows background

    I've written a script that successfully edits the user's background within Windows. I wrote the script using the RegWrite property to edit the HKEY_USERS registry value for Wallpaper. The problem with the script is that it doesn't take affect until the next time the user logs onto Windows...
  5. dlingo

    Remove Printer Script not working

    I have written a script in an attempt to remove all printers for the current user logged onto a windows workstation and I am getting a "Network connection does not exist" error. However, the connection is there. The code is as follows: On Error Resume Next Dim wshNetwork, oPrinters...
  6. dlingo

    Win2K BDC in a WinNT Domain?

    We currently have a Windows NT Domain that has a PDC, BDC, File Server, Print Server, and SMS Server all running Windows NT 4.0 Server. We want to add a Windows 2000 Server machine as a second BDC. Can this be done? Where may problems occur? Any help will be appreciated. DJL
  7. dlingo

    Running a PowerPoint Macro

    I'm attempting to launch Microsoft PowerPoint, open a presentation, and then run a macro contained within the presentation. However, the following code isn't working properly. Any help is much appreciated. Sub Main Dim filename = "filename" Dim macroname = "macroname&quot...
  8. dlingo

    Paste Clipboard Image into Powerpoint Slide

    I've designed a PowerPoint slide for an application. However, I'm having problems with the last step. The future user of this application will be pasting an image into the clipboard from another application. Then the Powerpoint file will be ran, information entered, and finally the image...
  9. dlingo

    MMC (User Specific)

    I have a question about Microsoft Management Console. I want to use Microsoft Management Console to lock down certain Windows functions, but I only want to lock down certain Windows functions for certain users. I've been playing around with the application and have found how to lock down...
  10. dlingo

    pull-down menu w/multiple displays

    I'm working on an application that uses a pull-down menu (combobox). However, the system that the users are using have two display monitors, and no matter which monitor the application is being run upon the pull-down menu always pops up on the monitor that is set as the primary. Is there a way...
  11. dlingo

    Scroll within a Label?

    I am currently writing an application that writes to a text file. Depending on what the user does within the application the text file can vary in size. I have created a result screen (FORM), so the user can see the results of his actions within the application easily and I'm importing the...
  12. dlingo

    Pause and wait for user input???

    I'm writing an application that tests 1 text file for any words that are contained within another text file. The idea behind the application is to search one test file that contains 1 word per line and store these words in an array variable. Each time a word is found the second text file is...
  13. dlingo

    clearing web-based text fields on Unix platform??

    I'm working on a web-based logon screen that needs to work on both the Unix and Windows operating systems. I want the username and password fields to be cleared each time the page is loaded for security purposes. I used the following code to accomplish this in Windows: <body...
  14. dlingo

    Pass variables to C++ program?

    I'm currently working on a GUI that needs to pass variables to a C++ program. How would I go about doing that? Thanks in advance.
  15. dlingo

    Run Access Macro on PWD protected DB

    I'm having trouble running an Access macro on a password protected Access database. If I remove the password and use the following code everything works fine. Dim ac As Access.Application Set ac = New Access.Application ac.OpenCurrentDatabase &quot;.mdb&quot;, False ac.Visible = False...
  16. dlingo

    I am attempting to search a text fi

    I am attempting to search a text file for a certain string and execute certain functions if the string occurs. If the string doesn't occur I want to execute something else. I'm using the following code. Do while txtfile.AtEndOfStream <> True line = txtfile.Readline If line <> &quot;&quot...
  17. dlingo

    password protected dB - RunMacro

    I am trying to run a Macro that is contained within a password protected database. If I use the following code it works when the database password is removed, but for security reasons I do not want to remove the password. Dim ac As Access.Application Set ac = New Access.Application...
  18. dlingo

    Automatically update an HTML file?

    I know this is possible....I'm not sure if it can be done with VBScript or ASP, but I figured I'd ask here first. I'm working on a calendar application (in VBScript and ASP). The idea is to allow particular users to edit the details of the calendar and to allow any user to see the updates that...
  19. dlingo

    Error Accessing Access Database

    I'm working on a project in ASP that allows user input on the front-end, takes the users input, and inputs it into a database on the back-end. However, I'm getting errors when accessing the database. The database was created in Access 95 and is located on the server machine. The error...
  20. dlingo

    Copying database from server to local machine

    This shouldn't be a complex problem, but here goes. I've created an application that exports an Access database into Excel in a web-based environment for one of our customers . To do this I've used the Access and Excel object libraries and written a VB standard executable that is called using...

Part and Inventory Search

Back
Top