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 Chriss Miller 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: DreXor
  • Content: Threads
  • Order by date
  1. DreXor

    gdi32 and font list

    i seem to have hit a road block in attempting to make a simple dll, i'm trying to retrieve all the installed system fonts and return them to a ADOR recordset or even an array for use in asp. The problem is all the sample code i've managed to find so far has been for listview or listboxes in...
  2. DreXor

    DLL and REG file Helper

    Built up a small tool to help others with some of the issues i've had in the past, like developing a COM component or other DLL and having to constantly re-register it with regsvr32, or having some sample data reg files that populate your registry, but no "uninstall" tool to get the stuff back...
  3. DreXor

    Style Sheet Helper

    Found this link very helpful, and nicely written : http://www.qindex.info/Q_drctry/webtools/StylingForm.asp [thumbsup2]DreX aKa - Robert if all else fails, light it on fire and do the happy dance!
  4. DreXor

    Tiny Project Assistance

    Been searching for sample code, anything relevant, and i'm surprised there's not already something out there for this already.. so... here we go : looking to make a small taskbar application that can be fed application names, and allow individual control of mouse orientation without...
  5. DreXor

    ASP Chat

    I looked over this code Asp101 Chat and got kind of excited about the chance of putting a better chat client up on our site but seems there's hoards of bugs in it, has anyone had any luck with it or managed to "fix" it? seems most of the problems are line wraps and typos. [thumbsup2]DreX aKa -...
  6. DreXor

    File Tracking

    Does anyone know how to tap into the windows/explorer API's to make a valid data map of a drive/folder? basically when a file is updated/deleted/copied/moved to trigger an update/insert to DB of file specs/location? i've been working on a rather in depth file server system via web pages for a...
  7. DreXor

    Hex Checksum Assistance

    i'm writing a small output generator to make hex data files to program eproms. i will be giving a web based interface to plug in the values desired to write to the chip ( in english standard 96 char set ) then push this to a formatted output in intel hex layout, i'm doing great on all aspects of...
  8. DreXor

    RegEx Help

    I have a Billing information extractor froma general text file, problem is occationally there's 2 lines of address, and sometimes there's 2 batches of address information THE DATA IS FIXED WIDTH, i tried originally to use this to my benefit, but turned into a multi array nightmare. current...
  9. DreXor

    ASCII Map

    dont know how many of you search for an ascii map from time to time, and what specific character codes are what .. like LF and CR and TAB etc, some of us have most of the common ones memorized, yet still have to look things up to occation. i've added this as part of my main functions include...
  10. DreXor

    Handling Holidays

    I remember somewhere, someone had posted a question on handling holidays. i cant seem to find the thread, but this might be of assistance to others in need of finding whether or not a given date is a holiday : args are a given date value i.e. 07/04/04 returns holiday name or true/false based on...
  11. DreXor

    Disabling MS Debug/Interdev

    i've done web development for quite some time, and in testing, i've been used to the "errors on page, do you wish to keep running scripts on this page" error, and clicking yes, after installing visual studio or other development application that wonderful box changes, and you get stuck with...
  12. DreXor

    File Server

    I've been doing alot of work with file serving, i even have gone through the trouble of making an ASP based windows explorer style interface... my dilema is that in order to search for file(s) recursively, i've been using FSO and file stepping through folder after folder and this is an...
  13. DreXor

    VBA Like Operator

    i'm trying to do some string comparisons : if "blah" like "?lah" then etc .. does the like operator work in Wscript? ASP?
  14. DreXor

    String Manipulation / Array Helper

    If to be used IN ASP pages you'll need to strip this down alittle unless you use option explicit ( save for the optional arguments ) If you've ever worked with repeatative arrays, with multiple delimiters... split, then split again inside a loop to try and get everything separated, this might...
  15. DreXor

    Array Helper

    If you've ever worked with repeatative arrays, with multiple delimiters... split, then split again inside a loop to try and get everything separated, this might help : Function ReSplit(OriginArray, sDelimiter As String, Optional CompareMethod As Long = vbBinaryCompare) As Variant If...
  16. DreXor

    MouseMovement

    Trying to figure out how to restrict mouse movement... say you have a div with a button in it, on clicking the button you can only move the mouse within the border of the div. specifically i'd like to make the movement horizontal only or vertical only, basically return false on event.pageY or...
  17. DreXor

    Tab to Spaces

    i have a form i put together to to minor fixes on pages in my web, mostly for when i'm out of office, i can edit what needs to from afar without ftp or special tools... but the problem i have is in the form i have a text area, current i have a event.keypress trap for TAB and basically have...
  18. DreXor

    Binary Stream Issues

    Here's the code i'm using , problem i'm having is not getting the files in the browser or anything, it's coming up as download.asp for the filename on everything, or for say image types, right click and save as always is BMP format only and default name is untitled. is there any way to force...
  19. DreXor

    Extracting Font info

    trying to extract the 'friendly' font name from an FSO supplied list of font files. this is for a font share environment for a web development team based on FSO, i already have the environment set to generate sample images of the font face , but currently the code for that is static with an...
  20. DreXor

    IIS Problem

    i do understand this is the ASP forum, but, i also know that most of us developers have encountered and modified more in IIS than most admins. taking a look at this thread would be greatly appreciated thread41-586824

Part and Inventory Search

Back
Top