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 Chriss Miller 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: pcawdron
  • Content: Threads
  • Order by date
  1. pcawdron

    Trigger Events on a PDA

    I have a VB.Net program with three separate, stand-alone forms displayed as tabs. Each form as an update button. When a user clicks one button I need it to fire the events of all three forms so data entered on any one of those forms is captured as though the user clicked update on all three...
  2. pcawdron

    Client1 -> Server -> Client2

    Is there any way to pass variables from one client to another via the server? I'm thinking about developing a javascript game that passes variables back and forth in real time between two different clients across the internet. Any ideas? Regards, Peter
  3. pcawdron

    Simple : see SQL in Logical View

    Sorry to ask such a dumb question, but I'm new to Oracle. How can I view the SQL behind a Logical VIEW using SQL Plus? Thanks, Peter
  4. pcawdron

    Restore master db version problem

    We've had two SCSI HDD fail on our SQL Server 2000 absolutely bring it to its knees. No data could be recovered, it's allllllllll gone. I've set up a new server, win 2000. Installed SQL Server 2000, with SQL Slammer patches applied (exactly the same patches were aplied to the old server)...
  5. pcawdron

    Active Desktop

    I have a form as part of my active desktop that allows users within the company to search for another employees phone number. It works well but when the form submits instead of updating the desktop it launches a new instance of internet explorer. Anyway to get it to update the active desktop...
  6. pcawdron

    Threads and Handles

    Our SQL Server is running like a dog. I can't see why, but when I look at the win2000 process information it shows SQL Server taking 34,000 handles!!!! Any ideas? Process information for xxxx: Name Pid Pri Thd Hnd Mem User Time Kernel Time Elapsed Time Idle 0...
  7. pcawdron

    Store Passwords

    How do you store application passwords in an encrypted form within MS SQL Server? I have an IIS application with UID and PWD stored in a MS SQL Server table, but there's nothing stopping someone with database access from seeing user's passwords. Any ideas? As always, many thanks to the...
  8. pcawdron

    SELECT @NewValue = @ColName FROM inserted

    SELECT @NewValue = @ColName FROM inserted Does anyone know why this doesn't work and how I can get around it? I'm building an audit trail trigger. The trigger intercepts the update, places the old and the new value in the audit trail table. Everything appears to be running fine except the...
  9. pcawdron

    Streaming RealAudio files

    Does anyone know how to get audio streaming to work with RA files? I've a RealAudio file and I've made a .RAM file and a .RPM file with the following... http://localhost/mytest/test.ra Then placed the following in my page <a href=&quot;test.ram&quot;>click here to test audio streaming</a>...
  10. pcawdron

    Simple SSL Question

    Why is SSL soooo slooooow? We're using SSL and, even with encryption disabled, it is so incredibly slow. Where's the performance bottleneck? What can I do to increase performance back to something even remotely like HTTP speeds..... Many thanks, Peter
  11. pcawdron

    Trigger Problem

    I'm having problems with a trigger that should work. When a row is added to table1 I need to trigger some SQL that goes away to DB2 database and grabs information about the inserted data and adds it to table2 I've developed a procedure using OPENQUERY on a AS400 linked server that works...
  12. pcawdron

    Turn ActiveXObject into HTML &lt;OBJECT&gt;

    Does anyone know how I can use the... var X = new ActiveXObject(&quot;ProgID&quot;) ...and then make X a real object within my HTML page? So I can change it's size, z-index, etc? The ActiveXObject I'm using does not have z-index, if I set it as an <OBJECT> I have access to z-index, but not...
  13. pcawdron

    Can you access an HTML object from the last page?

    Can you access an HTML object from the last HTML page if you know the ElementId? I am processing a form using ASP, but I'd like to access other elements from the form page that are not form items. (The page is dynamically created so there's information on it I can't anticipate) I tried...
  14. pcawdron

    Restrict ODBC Access : Exit Program

    Does anyone know how to restrict ODBC access through the use of exit programs? I need to limit my users so that, regardless of their ODBC settings, they can only run SELECT statements. In otherwords, whether their ODBC driver is set to Read Only or Read/Write the system should only accept...
  15. pcawdron

    Trigger : How Do You Get Row Values

    I need to build a trigger that passes values from the row being updated, inserted or deleted to a function(that runs beautifully) to update a denormalised running balance column. How do I pass row values in my trigger to my update SQL? Consider the following table.... Date Dealer Amount...
  16. pcawdron

    Can you use DOM to change/add javascript?

    This is another way of solving the same problem I raised as createElement('SCRIPT').... in essence, can you use DOM to change a script, or add a script? Consider the following <html> <body> <script language=&quot;javascript&quot; id=&quot;jTest&quot;> alert(&quot;hi&quot;) </script> <a...
  17. pcawdron

    createElement('SCRIPT')

    Has anyone ever tried this??? Look at this example, the first one works, the second doesn't var DAx=document.createElement('FONT') var DAtxt=document.createTextNode('Hello') DAx.setAttribute(&quot;color&quot;,&quot;Red&quot;) DAx.setAttribute(&quot;ID&quot;,&quot;NewFont&quot;)...
  18. pcawdron

    DirectX and Javascript

    Does anyone have any good reference material for using DirectX/Direct Animation with Javascript? I've got the samples from Microsoft, they're OK but they don't define the properties, methods and events associated with DA Objects.... Any ideas? Thanks....
  19. pcawdron

    Can you share Objects with VBScript?

    I'm tinkering with DirectX... Can you share object variables between VBScript and Javascript?
  20. pcawdron

    Simple : window.close()

    How can I stop the window.close() method from prompting the user as to whether he wants the window closed or not? I'm using a log on screen to launch a full screen ASP window in a new window, which, once launched, no longer needs the log on screen, but I can't get the first screen to close...

Part and Inventory Search

Back
Top