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 strongm 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: fuadhamidov
  • Order by date
  1. fuadhamidov

    flush dns

    You won't be able to do that. >> by java or by the way i have mentioned. what is your suggestion to solve this problem? i call internet address in applet and in thread. i think there should be something in java.
  2. fuadhamidov

    flush dns

    hi in my project i need to call an internet address whose has "multiple and dynamic ip". so i need to run "ipconfig /flushdns" before calling internet address. now i want to know is there any way (any class or any method) in java( in java 1.4_02 and in java 1.5 ), so i don't do this over...
  3. fuadhamidov

    JApplet: how to show new JFrame allways at top

    thanks timw, using JFrame isn't "must" for me. i can use any component. i want that child box or frame, must always be on front of (or top of) the parent window. if the child is opened while the user select browser that contains applet, the child window must be in front of the parent. like...
  4. fuadhamidov

    JApplet: how to show new JFrame allways at top

    hi everybody i have developed an applet (JApplet) project. In this project i open new window (JFrame) on applet to get some input and i want to disable parent window (JApplet) Although i have been able to lock parent, i can not stay child window(JFrame) always at the top of the parent window...
  5. fuadhamidov

    roll back truncate

    hi i have a problem. i have misunderstand truncate function and i have called it. becouse size of mdf and ldf files have nor changes, i think there should be roll back. is there any way thanks for any help
  6. fuadhamidov

    replication problem

    OK. ftp option is easier than i guess. now my following problem: i use northwind to test data. i insert one row with different values to same table (Categories) of both db (subcriber and publisher) in one time interval (i mean time between two synchronization). and of course identity...
  7. fuadhamidov

    replication problem

    can you suggest any document about this?
  8. fuadhamidov

    replication problem

    hi i want to replicate two db. i have succesfully done replication for two db in same domain in network. but i can not do this in internet with different domain name. (one is in a domain group and other is in a workgroup) i use administrator account in both site and passwords for both...
  9. fuadhamidov

    jws certificate

    ok i have found my mistake in .jnlp file <jnlp spec="0.2 1.0" codebase="http://xxx.xxx.xxx.xxx/myproject" href="myproject.jnlp"> ... </jnlp> i write localhost where should be IP( xxx.xxx.xxx.xxx )
  10. fuadhamidov

    jws certificate

    hi everybody i have developed an applet project and then added to it some part to run on java web start also. but i faced same restrictions in java web start also. my problem: it does not connect web pages except its codebase, like applet. is there any solution different than certification...
  11. fuadhamidov

    JButton &quot;on&quot; JLabel

    ok. the first added element is shown on the "most front". in order to change front to back order list, use add(Component, i); //don't use add(Component); if i is -1, the element will be shown at the "most back". if i is a positive integer, it will be the order of element.
  12. fuadhamidov

    JButton &quot;on&quot; JLabel

    hi i have developed an applet. in applet i need to show a number element on image. so my applet include a JPanel which include a JLabel ( big image ) and a number of JButton ( elements ) on label . while i call applet from browser i see ONLY label image. why button image (or second label...
  13. fuadhamidov

    window.opener refresh select

    as far as i search, the reason why codes above is not run, IE does not support such a state (= create Option from child browser in such a way). Moizilla and Nescape support. http://p2p.wrox.com/topic.asp?TOPIC_ID=9566 discusses same subject finally i have found following code and run...
  14. fuadhamidov

    window.opener refresh select

    thanks cLFlaVA but it gives same error message "Server throws exception" and i resend statement that i get error window.opener.form.elements[ <%= fieldIndex %> ].options[ i ] = new Option( '<%= object.getName() %>' ); or theSel.options[ theLen ] = new Option( '<%=...
  15. fuadhamidov

    window.opener refresh select

    hi i have found and developed following sample code. i don't know wihy it does not work function callOnload() { var i = window.opener.form.elements[<%=fieldIndex%>].options.length; alert( i ); alert( window.opener.form.elements[<%=fieldIndex%>].options[i] ); //it gives error...
  16. fuadhamidov

    print

    thanks siberian i again have not studied (and not wanted) on JasperReport. because it is offered in this form i think it is good tool, but it needs long seek and study time to get experience on it. i have found an idea about printing from IE while looking JasperReports example picture on web...
  17. fuadhamidov

    applet version

    hi i am new to applet. i add some features to an applet project. i use j2sdk1.4.2_06. i need to learn if i compile my applet in that version what kind of problem i can face on end user IE ( or Nescape or ... ). i know IE has applet support, but for which version. is there any table for...
  18. fuadhamidov

    Accept characters like '

    use double ' for each string that you use in query search for ' and put one more ' . for example String query = "select ... from palyers where col_name = 'o''conner'"
  19. fuadhamidov

    print

    i use dot matrix printer. i display my report on IE with contentType of 'text/plain'; like notepad ( none of html tags and fonts ). i think it is same with DOS for printer. as you say to run specific control code i need to study about this.
  20. fuadhamidov

    setContentType text/plain problem

    hi everybody i can't understand why it does not print "\t" and "\n". the output is "Test1 Test2". it should be Test1 Test2 my code is bellow <%@page import="java.io.*" %><% response.setContentType("contentType='text/plain;'"); PrintWriter pw = response.getWriter(); pw.println(...

Part and Inventory Search

Back
Top