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 Wanet Telecoms Ltd 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: 790213
  • Content: Threads
  • Order by date
  1. 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?
  2. 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...
  3. 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)...
  4. 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?
  5. 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
  6. 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...
  7. 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.
  8. 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?
  9. 790213

    How can I move the cursor inside a textbox to

    the correct position or the position that I want it to be.
  10. 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?
  11. 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)
  12. 790213

    Using an ActiveX component on another machine

    Does anyone know how I can use the functionality of an ActiveX component on another machine from a stored procedure? I want the component to run on that other machine and not on the database server.
  13. 790213

    Calling a web service/component from SQL server

    I'm trying to call a web service from sql server passing parameters. The way it should work is a stored procedure is executed which then calls a web service to run a com component which is situated on a different computer. If there is a way to call the component without the web service then...
  14. 790213

    Highlighting text in Textbox

    Do you know how I can select only a part of the text in a textbox? Eg. If the textbox has the word - Hello World then I want to select Hello or World or just the W.
  15. 790213

    Table Headers

    I've got a HTML table which, if it gets a bit full gets a scroll bar. Now the question is if I scroll down what can I do to keep the headers in one place? In other words I don't want the headers to scroll with the body.
  16. 790213

    Putting a link on a button

    I want to put a link on a button that works like HREF. How do I that?
  17. 790213

    Refresh Dialog window

    I need to know how to refresh a dialog window. I'm creating the dialog with this function: function showModalDialogWindow(sURL,sCaption) { lookUpArguments.sCaption = sCaption; var oDialogWindow = showModalDialog(sURL, lookUpArguments, "status:no; resizable:no; center:yes...
  18. 790213

    Using sp_ExecuteSQL

    I'm busy creating a stored procedure that builds up SQL strings which I then use to execute other stored procs. Now the problem is I need the return value as well as the output parameters. So the question is: How do I set local variables = to the return parameters of stored procs when I use...
  19. 790213

    Event Capturing

    Is there a way to capture all the event, as in every single one, that takes place in the window for IE. For instance if a click or change event happens anywhere in the window then I want to capture it. Please tell me there is because I've been sitting all night trying to figure this out.
  20. 790213

    Raising events

    How do I raise an event in JS for IE?

Part and Inventory Search

Back
Top