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: *

  1. DaZZleD

    XMLHTTP and Mozilla

    After trying a few more times, it seems that in Mozilla every XMLHTTP postback to the same page (both with sync and async calls) causes the entire page to reload. This explains why the page doesn't wait for the server execution to end. Does anyone have any idea as to why Mozilla is doing that...
  2. 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...
  3. DaZZleD

    Iframe scripting

    tsuji, that would work in IE, what about Mozilla? i have managed to make this work by declaring the functions and variables I need as belonging to the document IE: document.myFunction = function () {...} and then calling this by accessing the document in the iframe...
  4. 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...
  5. DaZZleD

    iframe Element

    ok... got it. you can do this from the element like this: - get the coords of the element with respect to its iframe - get the iframe coords in the parent document. to access the iframe in the parent document one can use: window.frameElement -------------------------- "two wrongs...
  6. 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...
  7. DaZZleD

    Radio Buttons

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Test</title> </head> <body> <script type="text/javascript"> function test() { var tr = document.createElement("tr"); var td = document.createElement("td"); tr.appendChild(td); // add a...
  8. 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. --------------------------...
  9. DaZZleD

    Table problem

    I checked SQL Profiler and it seems that the command gets sent by delphi to the server with sc replaced with s_ I agree that sql is mostly used, however, as you pointed out, the dialect and amount of sql syntax differs from one dbms to another. This is why I thought BDE can come in and take...
  10. DaZZleD

    Table problem

    MS SQL Server -------------------------- "two wrongs don't make a right, but three lefts do" - the unknown sage
  11. DaZZleD

    Table problem

    i'm using delphi 5 and SQL. i have used the non sql method since i thought it might save me trouble when using different dbms through bde. -------------------------- "two wrongs don't make a right, but three lefts do" - the unknown sage
  12. 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...
  13. DaZZleD

    Context Menu

    you have the leave event on the form that triggers when focus is lost. i think this is what you need -------------------------- "two wrongs don't make a right, but three lefts do" - the unknown sage
  14. DaZZleD

    TabStrip SelectedIndexChange Event doesn't fire

    you could use an iframe or a placeholder in wihch you load asp modules. regarding the event that doesn't fire on your control, the reasons could be many. maybe post the code or take a look at an already made tutorial on this and see where you went wrong. -------------------------- "two wrongs...
  15. DaZZleD

    Webservice to listen to port 80

    all webservices run by default on port 80. that's one of their great advantages. second, you can create a method that takes as parameter an XML and mark that method as [WebMethod]. it's as easy as that. -------------------------- "two wrongs don't make a right, but three lefts do" - the...
  16. DaZZleD

    How can I user web user control from another project?

    i will try to make a working example. in this case the controls are added in the source of the aspx file not in the codebehind (class). if the controls (textboxes etc.) were to be added in the class file, it should work ok. -------------------------- "two wrongs don't make a right, but three...
  17. DaZZleD

    Setting the page title dynamically

    it's because the VS.NET environment does not recognise runat as a valid attribute for the tag title. this happens when switching from source page view to html designer view. you can get rid of this behavior by setting your VS.NET IDE not to validate the html source. also you could use a server...
  18. DaZZleD

    asp.net real time notification

    you said this: that's why I answered to you. Anyway you are right about the java component. However this also requires extra software installed on the client's machine (JRE) which is not always acceptable therefore a webservice sollution is more agreed. -------------------------- "two wrongs...
  19. DaZZleD

    Radio button's checkedChanged

    are the radiobuttons set to auto postback? -------------------------- "two wrongs don't make a right, but three lefts do" - the unknown sage
  20. DaZZleD

    How can I user web user control from another project?

    load the control in a placeholder. -------------------------- "two wrongs don't make a right, but three lefts do" - the unknown sage

Part and Inventory Search

Back
Top