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 wOOdy-Soft 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
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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
  4. 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...
  5. 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...
  6. fuadhamidov

    JButton "on" 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...
  7. 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...
  8. 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...
  9. 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(...
  10. fuadhamidov

    print

    hi i have developed a project in which i need to print bill from IE. i try to fix the bill format on IE. but it is too diffucult. a pixel of mistake can result a long strap while the user print hundreds number of bill. i dont know how many pixel pages (A4, A5) is and IE technology is not...
  11. fuadhamidov

    print

    hi i dont know. maybe my subject is not related with this form. i want to print a non-standart paper; a kind of invoice (nearly a third of A4 ). i use dot matrix and it rolls paper like A4. so while i print an invoice it rolls 2 empty invoice. i cant find any configuration from printer...
  12. fuadhamidov

    how get cpu id

    hi i need to get cpu id. i have sample kod to get hdd volume number. but i think it should change while the user changes partions in his or her hdd. i have found sample code for .net. thanks for any help
  13. fuadhamidov

    outlook inbox group by email address

    i have a problem with outlook inbox. i use outlook 2003. and it automatically sorts mails in inbox by sender (from). but although mails come from same address, name typed in sender can be diffrent. and outlook sorts them as different address. for example i get mail from aa@company.com he...
  14. fuadhamidov

    orderby clause with primery key

    hi i select a number of column, one of which is sum. so i need to use group by clause. at simple logic primery key should be enough, but it gives error so need to print all column name in group by clause SELECT trader.name, trader.surname, trader.bagkur_no, trader.father_name...
  15. fuadhamidov

    how convert date ( object.Date ) to day (int)

    hi i want to get date( the smalldatetime object ) as day (int). i have two column. say one of them is insert date an ohter is last update date. i want to get day difference between them. i subract them and get a new smalldatetime object. how i can convert it to int value. for exapmle i...
  16. fuadhamidov

    call servlet from applet

    hi i need to call servlet from applet to login users. myUrl = "http://localhost/Myproject/servlet/Login?user="+username+"&password="+password; Login servlet is in jar in web-inf/lib without any package. while i try in java 1.3.x, it runs successfully. the problem occur when i try in java...
  17. fuadhamidov

    redirect from tomcat to an other tomcat

    hi i have several project in different machine. some projects run on java 1.3.x and others run on 1.4.x. so two tomcat server have been installed. i have one internet connection i want to access both tomcat server ( my all application in both java version ) from one IP. now i ask is...
  18. fuadhamidov

    how delete optgroup

    hi how can i delete optgroup with javascript. or how i can get length of optgroup the code bellow can only drop the optoins not optgroups while ( 0 < document.form.SENDMESSAGE.options.length ) { document.form.SENDMESSAGE.remove( 0 ); } thanks for any help
  19. fuadhamidov

    send html pictures

    hi i can send html message by using javaMail. But i have problem to send pictures ( gif, jpg .. ) that html contains. is there any easy way. thanks for any help
  20. fuadhamidov

    call servlet from thread

    hi i want to send message (phone) to a number of people with a click. while i wait until all message sent and then open a page, it take very long time. so a send message with a thread. until now it is ok but i want to show a message to user at the end of thread . for that purpose i need to...

Part and Inventory Search

Back
Top