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 dencom 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: ashthud
  • Content: Threads
  • Order by date
  1. ashthud

    REGEX and JAVASCRIPT and TAGS

    A page on my website uses regex to read an xml file elsewhere on my site. Example xml: <favs> <title>Main</title> <fav> <title>facebook</title> <url>facebook.com</url> </fav> <fav> <title>hotmail</title> <url>hotmail.com</url> </fav>...
  2. ashthud

    [Tools&gt;Folder Options] /&quot;View&quot;\

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder This is the place you add items to: [Tools>Folder Options] /"View" tab\ These items can then be used (outside of registry) to change registry values. Anyway! I was wondering if i could use this idea to...
  3. ashthud

    Remove Min/max/close buttons

    1) What is the official name of the min/max/close button trio? 2) How can i remove the trio from a window that has already been created? Ashthud
  4. ashthud

    Win Api Beep()

    This is a simple, but probably very difficult-to-answer, question. When you get an error message in windows... lets say you typed "blah" into the 'run' dialog, you will hear a nice PC beep. When *i* try to make a BEEP it sounds WRONG! What frequency is windows using for their error message...
  5. ashthud

    Eventlistener

    There appears to be no native way of creating an event-listener to listen for, for the sake of arguement, a mouse-hover. Is there anyway i can add an event listener to foxpro... the only workaround i can think of, is to create a timer; on every tick check for cursor pos or something... but even...
  6. ashthud

    CreateWindowEx

    This is a vb6 slash win api problem: I am creating a win32 dll in vb6 (which *is* possible btw: http://windowsdevcenter.com/pub/a/windows/2005/04/26/create_dll.html). Basically the dll's purose is to paint a control on screen: 1) initiate common control (initcommoncontrolsex) 2) create window...
  7. ashthud

    Can i use api to find a variable Pointer

    In foxpro 2.6 i can pass variables by reference using @; so i know pointer information is somewhere flying about... Is there an api function or maybe just a standard foxpro THING that i can do to find the pointer (in memory) of my variable? Maybe its a case of passing my variable to a dll that...
  8. ashthud

    How to create User-defined Type

    How do i create a user-defined type in foxpro 2.6? The problem stems from me trying to call an api function that requires a parameter of a custom type. In vb6 i simply say: Private Type test var1 as string * 10 var2 as integer var3 as boolean End Type

Part and Inventory Search

Back
Top