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 Mike Lewis 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. ashthud

    How to send email from FPW2.6a

    im not sure mapi.dll exists in any windows newer than windows 98... try mapi32.dll pls let me know if that works =D Ashthud
  2. ashthud

    REGEX and JAVASCRIPT and TAGS

    One silly mistake after another... in my catch im returning null GRRR. Ashthud
  3. ashthud

    REGEX and JAVASCRIPT and TAGS

    Oh no! XML DOM works great for every browser I have, accept CHROME!! ... try{ xmlDoc.async=false; xmlDoc.load(dname); return(xmlDoc); }catch(e){ var xmlhttp = new window.XMLHttpRequest(); xmlhttp.open("GET","favourites.xml",false); xmlhttp.send(null); var xmlDoc =...
  4. ashthud

    REGEX and JAVASCRIPT and TAGS

    That! Is! Boss! Why didn't I think of this! This solves my problem and I THANK you. (note: im still slightly curious what the regex would be) Ashthud
  5. ashthud

    REGEX and JAVASCRIPT and TAGS

    This is embarrassing!!!! Ive been writing loads and loads of different regex statements, all yielding blank results... and it just dawned on me: Ive been testing my regex statements by printing my results (inc <tags>) to the innerHTML of a div... which means that my results were being...
  6. 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>...
  7. ashthud

    Problem with screen / resolution

    meh, "set disp to cga" causes error message if graphics hardware doesnt allow the display... if you do get the message, maybe you could have your exe set to run in compatability mode Ashthud
  8. ashthud

    Problem with screen / resolution

    Im guessing this is foxpro for dos...(??) Is the external program running in fullscreen? (right-click, properties > screen tab) Ashthud
  9. ashthud

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

    I could easily do it by script.. i just fancied the challenge of doing it by folder options > view. Never mind ill use a .reg script or summat Ashthud
  10. ashthud

    Win Api Beep()

    HA! You're correct! I have no speakers but there are drivers installed for the speakers... so i being played but through non-existant speakers. CHEERS Ashthud
  11. ashthud

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

    ARGH! lol ... i can remove THAT easy. I have added a new checkbox in Folder Options/View when i tick it, it changes a registry value to "ROAR" when i untick it a registry value becomes "ARGH". But instead of my checkbox EDITTING a value i want it to remove/create a DWORD.. or maybe rename it...
  12. ashthud

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

    I dont remember the first time i looked at registry coz i was about 12 which is 2 year short of a decade ago... i often forget all the fun scary stuff that ive accidentally broken, except! I DO remember trying to delete my c:\windows folder coz it looked a mess. Anyway, i dont think i explained...
  13. ashthud

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

    For example let's say i have a key @: 'HKLM\SOFTWA~1\Micros~1\Windows\Curren~1\Explorer\Advanced\Folder\blah' with these values: RegPath = "Some\Path\To\A\Reg\entry" Text = "ThisDoesNothing" Type = "checkbox" ValueName = "someVAL" CheckedValue = 1 UncheckedValue = 0 DefaultValue = 0 If the...
  14. 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...
  15. ashthud

    Win Api Beep()

    =beep(442,100) is the very similar, if not, the default system beep. Thanks to a few colleagues of mine, one who has a very enthusiastic interest in music. Ashthud
  16. 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
  17. 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...
  18. ashthud

    Eventlistener

    Cheers, i do appreciate your opinion and you make very good points. Btw i am really amazed how much attention you have paid to my posts =D. Tbh, i dont have any career plans, my contract will end in 3 years, afterwards, i will have no idea what else i will do. In fact, its funny that you...
  19. ashthud

    Eventlistener

    I love to problem solve!! When i started work @ my current company and started using foxpro 2.6a for windows everything was so foreign and WEIRD i dint like how limited it was!! I bought my own copy of foxpro 2.6 for home... sad i know.. but i am a hobbyist programmer... Just like when i...
  20. ashthud

    Eventlistener

    lol =P There appears to be alot of Move-to-VFP-talk or even a MTVFP clan, i dont know... i can only say: i wish i could, but i can't. Incidently, how does VFP handle events? Ashthud

Part and Inventory Search

Back
Top