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 SkipVought 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: Curtis360it
  • Order by date
  1. Curtis360it

    Can I replace Window.Open with Window.Location?

    This currently is located in one html doc and is triggered at the OnLoad event. Is there anyway to make this load in the same browser window? <script type="text/javascript"> function openWebRepairWindow() { var win = window.open("/web_repair/fwc_ocrepair.php?rslvr_subclass=*"...
  2. Curtis360it

    Hide Apache for Windows command window on load?

    I have a file that fires off Apache.exe and I can minimize the window but I would love to simply hide it. Creating a service is not possible due to this being a demo system that can't have an additional service running.
  3. Curtis360it

    .FindWindow functionality in .vbs file?

    Is it possible to call the .FindWindow function from a .vbs file?
  4. Curtis360it

    How can I monitor an IE window for closing?

    I want to run vbscript that fires off a ".cmd" file. This file does several things including opening a web page. I want the vbscript to wait for the closing of the page and fire an event. Any ideas?
  5. Curtis360it

    Using 2003 Server Fax Service

    I have read that 2003 comes with a fax service. With this service, can it save the inbound faxes as .tiff images?
  6. Curtis360it

    How to set GridView column as a hyperlink?

    What I actually ended up doing was creating the hyperlink at the begining of each row on the GridView1_RowDataBound event. Dim h1 As New HyperLink() Dim DocPath As String If e.Row.Cells(0).Text <> "document_uid" And e.Row.Cells(0).Text <> "&nbsp;" Then...
  7. Curtis360it

    Windows Media Player - Playing Streaming Audio

    I am attempting to build a simple form that will allow streaming audio from a particular website to be played. Does anyone have any code samples or links that would provide me with information on this? I don't really care about playing music from the computer on it, simply use it as an interface...
  8. Curtis360it

    How to set GridView column as a hyperlink?

    I do but the the program won't know until runtime.
  9. Curtis360it

    How to set GridView column as a hyperlink?

    How can I make a column in my GridView a hyperlink if the GridView doesn't have a datasource until runtime?
  10. Curtis360it

    Make GridView visible at runtime without a datasource set.

    I have a GridView that will not have a DataSource until a dataset is created upon a button click. When I run the webform the Gridview never shows.... any ideas?
  11. Curtis360it

    DetailsView not refreshing with DataGridView

    I have a DetailsView linked to a DataGridView using the DetailsView datasource to link to the DataGridView Selected Value. This works fine on initial load but if my GridView changes or is refreshed, the DetailsView looses its link and just stays on the first row. Any ideas?
  12. Curtis360it

    How do you setup the EDIT/UPDATE buttons on a DetailView Control?

    All I want to do is update the different fields in a DetailView control. Currently, when the webform is running, if I click EDIT it allows for changing of the values. How can I update those values in the SQL DB? I tried to go through the SQLDataSource configuration but when it asks where to get...
  13. Curtis360it

    How do I populate a DataList when I choose SELECT in a Gridview?

    Basically, when someone clickes on a row in my Gridview, I would like to take a value from the Gridview and use it in a SPROC. That part works great, but I can't get my Datalist to populate correctly. I either get StackOverflowExceptions or nothing at all. Can someone explain how I might go...
  14. Curtis360it

    How to SELECT * FROM two unassociated tables?

    If I have two tables with zero association, can I do a SELECT query to pull all rows from both tables? Example: SELECT * FROM House,Apartment
  15. Curtis360it

    How to make Datagridview only show select columns from joined query?

    Yea I did clear it to only show the ones I want, and it works when I preview it. The datagrid for some reason will actually create the column headers but leave the cells blank....weird.
  16. Curtis360it

    How to make Datagridview only show select columns from joined query?

    I have a joined table query that shows correctly when I preview the query in DataSet designer but when it loads to the datagridview it shows all columns from both tables. How can I make it only show the columns that I explicitly chose when I designed the query? For instance: Table 1 1.Name -...
  17. Curtis360it

    How can I trigger the drag and drop desktop function?

    What can I do if I wanted to allow someone to "drag and drop" into my application? What I really want is the trigger that fires off. I guess the best explanation is the how the cursor on the desktop changes to the "add file" looking icon when I want to drag it to a different folder. Sorry if...
  18. Curtis360it

    Read from a text file.

    Awesome, was looking for docs on the subject! Thanks!
  19. Curtis360it

    Read from a text file.

    How in vbscript do you go about reading from a textfile? The file is an example textfile, it will be dynamic in the amount of lines: cwilliams@williamsit.com jdoe@aol.com sdodd@yahoo.com etc. etc. etc.
  20. Curtis360it

    How to get ptr in VB.Net

    Yea,I was hoping there was a crossover I could use. Thanks for the help!

Part and Inventory Search

Back
Top