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. 790213

    Remote deployment

    Problem with this is that the infra structure team doesn't have control over what happens where and whether it was successfully updated etc. I think the SMS way should work though. I've been looking at it and it's a real option. Does anyone know if it actually stops the running app when it...
  2. 790213

    Shutting down an Application (.exe) while it's running

    You say that I'll only be able to do this on the local machine, which is exactly what I can't do. I need to do this remotely. Do you by any chance know which of the msi classes I can use to close the application and update it? The way the architecture works is that we have about 1500 remote...
  3. 790213

    Shutting down an Application (.exe) while it's running

    Hi Guys, I need to shut down an application (.exe) while it's open from a separate application thereby forcing it to close and taking it out of memory so I can update it. Does anyone know how to do this in code?
  4. 790213

    Remote deployment

    Hi Guys, Does anyone know how I can manage updates from my computer to remote pc's. The problem I have is that I need to know which computers was updated and with which version they were updated, so I'm busy writing an app that will do this update for me and once done will update the database...
  5. 790213

    Setting a Variable = Select for XML

    I want to set the variable equal to the select statement so I can pass it through to annother stored procedure that invokes a COM object. Do you know of any way I can do that or any alternatives I can use in this regard?
  6. 790213

    Setting a Variable = Select for XML

    I'm not sure you quite understand what I'm trying to do. I want to set the variable equal to the actual xml coming back in the result set hence the select statement in the brackets. Do you know how to do this? Please tell me you do:)
  7. 790213

    Setting a Variable = Select for XML

    Hi There, I'm busy with some SQL XML. It's quite fun but I ran into a bit of snag. I need to set a variable = to a select for xml statement. If I had to put it into code I'd say it has to look something like this: DECLARE @Str VARCHAR (8000) SET @Str = (SELECT * FROM tPerson FOR XML AUTO)...
  8. 790213

    Exposing component as web service

    I've got a normal VB 6.0 component which I want to expose to my web application from a remote computer. I was thinking of doing this via a web service. Does anyone know how I should go about doing this if I'm not using .NET?
  9. 790213

    Problem with cancelBubble

    I've got a textbox. I don't want the person using it to be able to use the backspace keyboard button. I'm trying to use the cancelBubble in my onKeyPress event but it doesn't seem to work. Anybody know why? Please let me know. Regards
  10. 790213

    Mask Edit Box (Code Included)

    Hi Guys, I'm creating a mask edit box. You can copy and paste the code below. Problem I'm having is that when I get to the delimiter I want to either jump to the next character or simulate a delete & delimiter effect(Preferrable). Maybe one of you can figure this one out. I've tried just...
  11. 790213

    Simulte Shift & Right keyboard events

    I don't think there's such a thing. I think you might be talking about shiftLeft which you use to pick up whether the left shift button was pressed. Very strange, I can't seem to simulate the shift key + right arrow.
  12. 790213

    Capturing a Tab Keystroke

    Try this. function hanldeEvent(evt) { evt = (evt) ? evt : ((window.event) ? event : null); if (evt) { if (evt.ctrlKey) {// Process Control-Click here} else {// alert(evt.keyCode);} } }
  13. 790213

    Simulte Shift & Right keyboard events

    Does anyone know how to simulate the Shift Key and Right Button press events? The way it works should be quite simple, but I can't find it.
  14. 790213

    Simulating an event to happen

    Does anyone know how simulate the Shift + Forward -> keypress event. I know that you can simulate the separate events by using window.event.keyCode = 45 (ShiftKey) or 39 (ForwardKey), but how do you combine the two getting the effect of highlighting the next character?
  15. 790213

    How to determne whether the insert is on?

    This is a really tough one, but I'll figure something out. There must be way to get a list of all active events, how I don't know... YET ;) Thanks anyway.
  16. 790213

    How can I move the cursor inside a textbox to

    This shows how to insert text at the cursor. That's pretty easy but I need to move the cursor to where I want it and then insert the text there. It's suppose to be very simple but I can't seem to find the solution anywhere.
  17. 790213

    How can I move the cursor inside a textbox to

    the correct position or the position that I want it to be.
  18. 790213

    How to determne whether the insert is on?

    That's if you want to check if the button on a form is disabled. What I'm actually looking for is how to determine whether the Keyboard insert is on or of. I need to somehow check the active events list if such a thing exists. Do you know how to do this?
  19. 790213

    How to determne whether the insert is on?

    I want to determine whether the insert button has been set to be active. How can I do this?
  20. 790213

    Get the current position of the cursor

    If I've got a textBox. How can I pick up the current position of my cursor inside the textBox? eg. "Hello Wo|rld" (Position = 9) "Hell|o World" (Position = 4)

Part and Inventory Search

Back
Top