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

    XMLHTTP and Mozilla

    Hello I have created a script that does async postback to server and then simply uses an alert box to show results. It works both in IE and Mozilla when posting to a different page than the current one. In IE it works to send data to the current page and read response, but in Mozilla it seems...
  2. DaZZleD

    Iframe scripting

    Hi, I have a document that contains an Iframe. I would like to call from this document a function found inside the IFrame. In IE this works easily with document.frames[0].functionName(). But the problem is to make this work in Mozilla. Anyone has any suggestions? Thank you...
  3. DaZZleD

    iframe Element

    hey. I have a document with an iframe and an element inside the iframe. I need to find the absolute coordinates of the element with respect to the document (not iframe). how can I do this (I can get the absolute coordonates of the element inside the iframe with respect to iframe)? (please...
  4. DaZZleD

    Radio Buttons

    Hi. I have a page where I want to create some radio buttons dynamically. After adding them to the page, they don't seem to react in any way to user interaction (meaning they won't check when clicked or anything). Has anyone an idea of what could be wrong? Thanks. --------------------------...
  5. DaZZleD

    Table problem

    Hi, I have an application that needs to create some tables when it's launched. It first deletes the tables if they exist then recreate them. The problem is that one field (called 'sc') gets translated into 's_' when the table actually gets created in the db. with form1.Table1 do begin...
  6. DaZZleD

    Associative Arrays

    hi... is there any way to create an associative array in javascript with inline declaration (for normal arrays you would use var myArr = new Array("a", "b", "c");) ? thank you very much -------------------------- "two wrongs don't make a right, but three lefts do" - the unknown sage
  7. DaZZleD

    Dynamically Created Controls - Common Pitfalls

    Special thanks to Denis Bauer for extra information about this. 1. With ASP.NET you have two options to create controls on a web form: declaratively within the HTML code or dynamically at runtime. While the first one is much more common, the second options is especially helpful in scenarios...
  8. DaZZleD

    headers problem?

    I am using a class to send POST requests to a page with then redirects me to another. running all this on the local host (windows xp), everything works ok. on the server (win 2003), instead of setting the headers for redirection, php simply outputs them to the page. what could be the problem...
  9. DaZZleD

    CURL

    I have a web application that needs to submit a form to a specified url. since the form must also contain fields that are private and should not be seen by the user, I decided on using php_curls to accomplish this. the info gets correctly posted to the page however the rest of the content from...
  10. DaZZleD

    ASP.NET vulnerability!!!

    Microsoft is currently investigating a reported vulnerability in Microsoft ASP.NET. An attacker can send specially crafted requests to the server and view secured content without providing the proper credentials. This reported vulnerability exists in ASP.NET and does not affect ASP. This issue...
  11. DaZZleD

    element is not declared. An error occurred...

    hi everybody. I have an XML that looks like this <InterOpMessage xmlns="http://www.apl.ro/interop"> <EnvelopeVersion>1.0</EnvelopeVersion> <Header> <MessageDetails> <Class>ITL_DECC_01</Class> <Timestamp></Timestamp> </MessageDetails> <SenderDetails> <IDAuthentication>...
  12. DaZZleD

    connect to a website

    has anyone ever connected to a website using sockets? if so, what's the simplest way to do that? i always get an error that address is in use... thanks -------------------------- "two wrongs don't make a right, but three lefts do" - the unknown sage
  13. DaZZleD

    webservices

    has anyone ever consumed webservices from a delphi application? if so... can you give me some tips on what's the easiest way to do this? -------------------------- "two wrongs don't make a right, but three lefts do" - the unknown sage
  14. DaZZleD

    download PDF

    I have a pdf that has to downloadable by the user (instead of seen in IE). what are the options I have? thanks in advance -------------------------- "two wrongs don't make a right, but three lefts do" - the unknown sage
  15. DaZZleD

    CSS for links

    hi. I'm using CSS to customise the way that links look. However when a link is active and I click with the mouse anywhere in the page, it becomes just like a normal link. What am I doing wrong... or is this the default behavior? -------------------------- "two wrongs don't make a right, but...
  16. DaZZleD

    TIBBackupService

    where can I find this component... or better yet... if you have other suggestions, please let me know. thanks
  17. DaZZleD

    mono

    does anyone know an alternative address to download mono because go-mono.com is not working. thanks
  18. DaZZleD

    run a query

    hi I'm looking for a way to execute an existing query that needs a param and return the value of it inside a textbox. This has to be done on an AfterUpdate event of a combobox. I'm very new to access and VB but not to programming. Thanks for any help
  19. DaZZleD

    0.1 + 0.2 = 0.300000000004 (?!?)

    anyone ever tried: x = parseFloat(0.1) + parseFloat(0.2); document.Write(x); it will return 0.30000000000004 this is strange... anyone got an explanation?
  20. DaZZleD

    accessing the dataset relations

    I have a dataset with alot of relations defined and a datagrid that displays a table from within the dataset and the user can navigate from a table to another through the dataset's relations. However, what I can't seem to be able to do is to get the relation's parameters (e.g if I have two...

Part and Inventory Search

Back
Top