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 wOOdy-Soft 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: stevenk140
  • Content: Threads
  • Order by date
  1. stevenk140

    Threads and Events

    Hello, I am opening a ASP.NET page, starting a thread, and would like that thraed to continue running UNTIL the page is closed. How would I stop this thread upon closing the page? Steven
  2. stevenk140

    Page Close Event?

    Is there some event that lets me know when the page has been closed. My problem is I want to delete all files that were created during a viewing of a web page. What is the best way of doing this? Steve
  3. stevenk140

    Running a Command

    I want to run a command like &quot;dir&quot; or &quot;del <filename&quot;. How do you do this in C#? In C\C++ you can do a System(cmd); What is the C# equivalent? Steven
  4. stevenk140

    C# Opening Port

    On my webserver, I would like to open a port for a client to listen to (www.mywebstie.com:2000). How would I do this? Steve
  5. stevenk140

    Create JavaScript Dynamically on PageLoad

    How would I create a javascript function dynamically on PageLoad?
  6. stevenk140

    Byte[] to double.

    I have an array of bytes which should make up a double. double val; byte[] doub = new byte[8]; doub[0] = arraybytes[20]; doub[1] = arraybytes[21]; doub[2] = arraybytes[22]; doub[3] = arraybytes[23]; doub[4] = arraybytes[24]; doub[5] = arraybytes[25]; doub[6] = arraybytes[26]; doub[7] =...
  7. stevenk140

    Hashtable

    I have a hashtable and a value that matches up with a key. Is there an easy way of getting the key from the value? (Without search through all values to find the index) Or is a SortedList better from going back for forward between keys and values? Steven
  8. stevenk140

    Table Name as Variable

    How come this will not work? DECLARE @TableName VARCHAR(40) SET @TableName = 'analog' SELECT * FROM @TableName Server: Msg 137, Level 15, State 2, Line 5 Must declare the variable '@TableName'. How could I get around this?
  9. stevenk140

    Opening Windows

    I am currently using the code to open a window. <a href=&quot;javascript:void(0)&quot; onClick=&quot;window.open(link, null, 'menubar=no')&quot;>link</a> I was hoping that once I clicked a link, it would open a new window. Then if a clicked another link, it would open another new window...
  10. stevenk140

    Browser Menu Bar

    I would like to get rid of the menu bar on my popup page. I have a hyperlink control that links to a page, and I would like that link to popup a new window without a menubar. I know you can open new windows using javascript: window.open(link, null, &quot;menubar=no&quot;, null) But I don't...
  11. stevenk140

    Listbox

    I am using asp.net and have a javascript function. I would like to get all my items out of a multi-selection list box. How would I set up the function and how would I cycle through the selected items?
  12. stevenk140

    LinkButton Question

    I have a dynamic LinkButton and I wanted to do a number of things with it. 1. Open a new window when it is selected. 2. Pass it parameters not in the query string (since it will have many different params ie. an arraylist...) How would I do this? Thanks for any help/suggestions you may have...
  13. stevenk140

    ImageButton Events

    For some reasons I am not getting an imagebutton event. I create the image button dynamically : ImageButton imageButton = new ImageButton(); imageButton.ImageUrl = &quot;../Images/editsm.gif&quot;; e.Item.Cells[ i].Controls.Add(imageButton); imageButton.Command += new...
  14. stevenk140

    Output of a command to a file

    I have a problem where from my c program, I am running a system command with: system(cmd); Now I have a couple of problems. The program I am running in that command is failing and I want to catch the stderr output (so a 'cmd > outfile' does not work). How could I output the results of my...
  15. stevenk140

    Giving a TextBox control on a page load

    I have web page and a textbox on that web page. I was wondering if there is a way for textbox to start off as 'Selected' so the user can just start typing as soon as the page loads, rather than having to click in it before he starts to type. Steven
  16. stevenk140

    Filtering a ListBox

    I am working with ASP.NET (C#) and I have a listbox that I would like to filter by the user entering text into a textbox next to the list. How could I accomplish this, and is there any code sample available? Steve
  17. stevenk140

    Filtering A ListBox

    I am working with ASP.NET (C#) and I have a listbox that I would like to filter by the user entering text into a textbox next to the list. How could I accomplish this, and is there any code sample available? Steve

Part and Inventory Search

Back
Top