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
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...
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...
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...
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...
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...
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...
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("textfield1") <> "" then
'Run update database SQL query
end if
if request.form("textfield2") <>...
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
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...
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
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
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...
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
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...
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...
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...
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="JavaScript">
<% for j = 1 to 5 %>
jsarray(<%=j%>) = "<%=asparray(j)%>";
<% next %>
</script>
When it...
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
It might be crashing from being overloaded. If it is searching for "" and finds it on every page. Harold Blackorby
hblackorby@scoreinteractive.com
St. Louis, MO
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.