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 strongm 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. hblackorby

    Buffering and IE patch q321232

    I haven't heard of this. What does the q321232 patch fix? Also, if the page is small, can you post the code into the forum? Harold Blackorby hblackorby@scoreinteractive.com St. Louis, MO
  2. hblackorby

    Missing OCX

    It isn't a problem with the setup wizard. So basically, PDW did too much that I wanted, and still wouldn't execute the file once it "installed" it. I droped PDW, and dropped the idea of downloading the files from the Internet using the Internet Transfer Control. I went with a...
  3. hblackorby

    Missing OCX

    That's a good suggestion, but currently the only way I have to download files through Visual Basic is to use the Internet Transfer Control, which requires the OCX. It's a bad loop...if they don't have the OCX I need to download it, but to download things, I need the OCX..... Do you know of...
  4. hblackorby

    Missing OCX

    There are a couple of downsides to using the PDW. It puts an entry for the program into the Add/Remove Programs listings. It tries to add Start Menu items, and when I run the program, I couldn't find any way to have it automatically run the newly "installed" .exe file. Is there a way...
  5. hblackorby

    Missing OCX

    I'm not sure I want to use the package and deply wizard. This program is a screen saver install program. Basically, you run it right away, it downloads the two files for which screen saver you want, moves them into the windows/system directory and updates either the registry or the system.ini...
  6. hblackorby

    synchronized combobox example??

    Note that CatManDave's example will require you to reload the page and display the data in the different combo boxes. The only way to accomplish what you want without reloading the page is to response.write all the data from the second table in JavaScript arrays. Then when you click an ID in the...
  7. hblackorby

    Missing OCX

    I'm using the MSINET.OCX Microsoft Internet Transfer Control 6.0 in a project. I can compile and run the project fine on my computer and different computer. However, when I run the compiled program this one computer, I get a missing OCX error. Maybe I'm mistaken, but I assumed any ActiveX...
  8. hblackorby

    Adding blank records to the database

    You need to use ASP to check for empty strings from the form fields and only update those tables where the data strings aren't empty like so: if request.form(&quot;textfield1&quot;) <> &quot;&quot; then 'Run update database SQL query end if if request.form(&quot;textfield2&quot;) <>...
  9. hblackorby

    Need to compare the time entered to current time.

    Sorry, to clarify, you need to use the DateDiff function and use the minute interval to find the difference between minutes. When you use the now() function, it returns the current system date/time as a Date-type variable. Harold Blackorby hblackorby@scoreinteractive.com St. Louis, MO
  10. hblackorby

    Need to compare the time entered to current time.

    If you are using VBS Date types then you can use the VBS function DateDiff(interval, date1, date2) The interval is a string that lets the function know what you are trying to tell, i.e. days, minutes, months, etc. Normally you'd use one of the following: yyyy Year q Quarter m Month y Day of...
  11. hblackorby

    Changing the current screen saver

    I'm more looking at Windows98. There is no scrnsave.exe value in Win98. That folder contains ScreenSaveActive ScreenSaveTimeOut and ScreenSavePassword. I do have a screen saver chosen in my Control Panel too. Anyone else have any ideas? Harold Blackorby hblackorby@scoreinteractive.com St. Louis, MO
  12. hblackorby

    Is this bad- Set i=Nothing i=Empty

    set i = nothing will destroy the object completely. You can then use i as a variable name elsewhere if you want. Harold Blackorby hblackorby@scoreinteractive.com St. Louis, MO
  13. hblackorby

    Changing the current screen saver

    Does anyone know how to change the current screen saver? I assume it's stored in the registry somehwere, but I couldn't find it anywhere. I also checked in the win.ini file just for fun. I'm creating an installer program that will copy the .scr file into the windows/system directory and...
  14. hblackorby

    Changing color of radio button labels

    Don't forget that you need to set the ID property of your elements to change their properties using CSS/JS. Also, you can't really change them easily using an array like you did with the form elements. Harold Blackorby hblackorby@scoreinteractive.com St. Louis, MO
  15. hblackorby

    NT Challenge/Response Question

    I disagree with link9's suggestion. In order to do this, you sometimes have to leave your NT permissions open to the IIS guest account. If you are in an administration section of your site, this is very bad. Anyone can pop in and attempt to get your page. Now you could set up session checks on...
  16. hblackorby

    Add data into 2 tables

    Cascading updates only work when one field is a foriegn key in another field. While this is nice, it only works on those related fields. If you are just looking to update two tables, just create two different SQL statements and run them right after each other using Conn.Execute. Trying to get...
  17. hblackorby

    Add data into 2 tables

    Cascading updates only work when one field is a foriegn key in another field. While this is nice, it only works on those related fields. If you are just looking to update two tables, just create two different SQL statements and run them right after each other using Conn.Execute. Trying to get...
  18. hblackorby

    Getting array from Server side to client side?

    The only real way you can do it is to write it out into a client-side scripting language array (such as JavaScript or VBScript). Basically like so: <script language=&quot;JavaScript&quot;> <% for j = 1 to 5 %> jsarray(<%=j%>) = &quot;<%=asparray(j)%>&quot;; <% next %> </script> When it...
  19. hblackorby

    values from form to excel file??

    John, If that is all you're going to do, then don't bother with the Excel object, just use Swany's answer. Set your content type to Excel, and then create an HTML table using your data from your database. It'll work just fine. Harold Harold Blackorby hblackorby@scoreinteractive.com St. Louis, MO
  20. hblackorby

    MS Index Server sample bug?

    It might be crashing from being overloaded. If it is searching for &quot;&quot; and finds it on every page. Harold Blackorby hblackorby@scoreinteractive.com St. Louis, MO

Part and Inventory Search

Back
Top