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

    CFFILE application/octet-stream

    What are you doing, cffile action=upload? Can you post the whole tag? And what do you mean by saying the file is still open? You are viewing the word doc while simultaneously trying to upload it to a cfm form? If so, I suspect that won't work because the file will be locked while you have it open.
  2. silverspecv

    *need* to insert binary data into sql server image column

    Yeah, I saw that one, but the problem I had is that I was using a pre-existing database, so I could not change data types.. The example shown by Teknology specifies that he used datatype of TEXT, while I was stuck with data type IMAGE.. And of course using text will work, but then you are not...
  3. silverspecv

    *need* to insert binary data into sql server image column

    No, I never did find an answer.. it is apparently quite complicated.
  4. silverspecv

    Upgrading Raid 1 harddrives

    Will the raid controller allow you to mirrow the 73 onto the 200? What brand of raid controller are you using?
  5. silverspecv

    how can I copy C: to another drive and still boot it?

    30-40 minutes to duplicate 30 gigs of data? Sorry, I'm not buying that, but I will look at the software anyway. But I still want to know if it can be done the old manual way. Even if it is possible, I suspect that there are files that need to be located in the first sector of the partition, or...
  6. silverspecv

    how can I copy C: to another drive and still boot it?

    Is it still possible to copy the contents of a boot partition to another drive and then boot it, kinda like back in msdos copying the c: and the "sys" the drive to make it bootable? Can I copy a win2k c: drive and make it bootable? I tried ghost, but I dunno if the drive is too fragmented, or if...
  7. silverspecv

    How can I get currently logged on active directory dc info?

    Nope, there is some other stuff in there that I'm going to snatch, but your function still expects to be provided with the list of DC's.. I need something that will figure that part out so the app can be run on other people's domain without expecting them to type in "domain.com" etc.
  8. silverspecv

    How can I get currently logged on active directory dc info?

    I have some active directory oriented code, and I have it working, but it all starts with something like Dim dEntry As New DirectoryEntry("LDAP://DC=domain,DC=com") but how do I get info that goes inside the quotes? I currently have it hard coded for my domain here, but I will need it to pick...
  9. silverspecv

    Why does system.io.directory.exists() sometimes fail over lan?

    I have code that checks to make sure a certain share is on the network before doing some stuff, so I have a block that includes this: Dim dir1 As System.IO.Directory if dir1.Exists("\\server\share") then blahblah() It works in the IDE, and it sometimes works from the compiled and installed...
  10. silverspecv

    OOP trouble with user control

    Nevermind, I got it.. since I use 3 instances of the user control, I need 3 event handlers. So since I already have 3 handlers, they all know which string to update.. bleh.. beat my head on it for hours, post a question, answer it myself 5 minutes later.. how typical =|
  11. silverspecv

    OOP trouble with user control

    Ok, I have a form that has 3 strings, 3 buttons, and a user control. The buttons each instiantiate a new instance of the user control. The user control has a text box and an ok button. The idea is that the user types text in the box, clicks Ok, and the user control passes the text back to the...
  12. silverspecv

    how to simulate tabcontrol functionality?

    I'm trying to rewrite an existing program that is somewhat "graphically rich".. pretty buttons, etc. I figured out how to roll my own button rollovers, but now I need to have a column of buttons running down the left so when you click them then the main content portion of the form swaps out all...
  13. silverspecv

    javascript in IE and Firefox

    Welcome to hell. You need a browser detection script that does something like setting a variable called "browser" and then statements like if(browser=="Firefox"){ .. } else if(browser=="IEWin") { .. } etc..
  14. silverspecv

    Restricting Print to a Single Page in Portrait format

    I've had similar problems, and I searched high and low for a solution with no results. I'll watch this thread in case somebody has a fix, but I've just resigned myself to the fact that the web browser, while it is a universal client, is not universally standard. My solution was that I...
  15. silverspecv

    ColdFusion Ping

    Here is a little script I use internally after our occassional crappy power failures.. It is obviously somewhat tailored to my environment, such as the IP address range, and the fact that ping.exe is located in c:\winnt\system32 directory (windows 2000), and all I'm looking for is success or...
  16. silverspecv

    open/save dialog won't open

    I have a page where users download files, and it does one of those deals like most download sites where you don't get a direct link to the file, but a link to a script that sends the file.. It thinks about it for a second and then pops up the file save dialog box. But every now and then users...
  17. silverspecv

    weird problem, command line font corrupted

    What? RESET?! Why that almost resembles a word. I was expecting a series of numbers and letters with a random smattering of punctuation, but thank you.. if I make that mistake again, I'll think of you!
  18. silverspecv

    weird problem, command line font corrupted

    So I'm dorkin around at the command line following some instructions on building linux from scratch, and it tells me to create a dumy.c file with just "main(){}", then compile it, and then do a grep on the resulting a.out file to check something out about the linker.. Well, the grep came up...
  19. silverspecv

    is this hash function any good?

    function dohash(val) { var result=1; for(lp=0;lp<20;lp++) { for(i=0;i<val.length;i++) { result=result*val.charCodeAt(i); if(result > 10000000000000) { result=Math.ceil(result/5923); } } } return result; } This isn't really a JS question, more of a crypto question, but I...
  20. silverspecv

    Can someone test for Mac compatibility for me?

    Thanks guys. The main web site is still somewhat pc oriented, but as you can see it's due for a redesign.. The training programs are the new part. We had to turn down business from a whole CHAIN of private schools a while back because of poor Mac compatibility, and let me tell you I was not...

Part and Inventory Search

Back
Top