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

    Help to configure FreeBSD as server

    I configure my home FreeBSD OS as server. I run FreeBSD under WinXP with VMWare Workstation 4. On my work, Web Programmers company, FreeSD is configured so (DNS under FreeBSD is configured for zone "office.net" with hosts host1 & host2), that from WinXP I can ping host1 and host2...
  2. VJar

    Apache VirtualHost configuration for domain under nameserver bind9

    I configured DNS (bind9) and Apache in FreeBSD 4.7 (IP: 192.168.1.1). My server name on FreeBSD - myserver.mydomain.com This server configuration: 1. /etc/resolv.conf domain mydomain.com nameserver 192.168.1.1 2. Bind config: I have domain: mydomain.com This domain hosts...
  3. VJar

    Apache VirtualHost configuration for domain under nameserver bind9

    I configured DNS (bind9) and Apache in FreeBSD 4.7 (IP: 192.168.1.1). My server name on FreeBSD - myserver.mydomain.com This server configuration: 1. /etc/resolv.conf domain mydomain.com nameserver 192.168.1.1 2. Bind config: I have domain: mydomain.com This domain hosts...
  4. VJar

    Read image from MS Access db field

    How to read valid bitmap image from MS Access db field, which was inserted into database with Microsoft Access 2000 Application? Application saves in database file info + (bitmap) + anotherinfo. When I create stream, his size is greater than fileStream of image, wich was inserted into database...
  5. VJar

    URL redirection

    For example I am on page: http://www.site.com/download.html How can I now, from what page user come to this page? If he come from page http://www.site.com/... (from other page of my site), then all is Ok. Else redirect this user to main page of my site.
  6. VJar

    Image "scr" setting

    I have object &quot;img&quot;: <img id=&quot;img1&quot; alt=&quot;&quot; width=&quot;100&quot; height=&quot;100&quot; border=&quot;0&quot;> Can I in JavaScript set the path to the file (src=&quot;image.jpg&quot;), from where this image will load, when I have image &quot;id&quot;?
  7. VJar

    Opera problem

    Method &quot;Onload&quot; begins to work when all oblects loaded. I need to set the style.width and height before any object begins loading
  8. VJar

    Opera problem

    Ok. This script workes in Opera, but I need that script workes automatic, for example so he workes in Internet Explorer: <html> <head> <title>Untitled Document</title> <meta http-equiv=&quot;&Ntilde;&icirc;&auml;&aring;&eth;&aelig;&egrave;&igrave;&icirc;&aring;-&Ograve;&egrave;&iuml;&quot...
  9. VJar

    Opera problem

    Why my cod workes in Internet Explorer 6 and changes width of the layer from 200 px to 1000 px, but in Opera 6 not? Help to correct this problem, please. My cod: <html> <head> <title>Untitled Document</title> <meta...
  10. VJar

    Layer size setting

    How can I set the size of layer in JavaScript? My script works only after layers loading. I need to set size of the layer before his loading starts. Help please My script: <html> <head> <title>Untitled Document</title> </head> <body> <div id=&quot;layer1&quot; style=&quot;position:absolute...
  11. VJar

    style usign

    Write please not difficult example for using window.document.styleSheets to set css style for document (dont use please <link rel=&quot;stylesheet&quot; href=&quot;style_1.css&quot;> )
  12. VJar

    CSS loading

    I need to load css-file (<link rel=&quot;stylesheet&quot; href=&quot;style.css&quot; type=&quot;text/css&quot;> ) but in body of Java Script. How can I make so?
  13. VJar

    CSS loading

    Is it impossible to load css style (css-file) for html document? Write example please.
  14. VJar

    Text printing

    I have big text. How I can print this text in body of html document with java script? For exmple this: document.write('fjghjhfgh ghghghgjhj ghghghghgh ghghghghgh'); That is mistake so to write. But write many &quot;document.write&quot; i dont want.
  15. VJar

    How in JavaScript set the sizes of objects?

    I need depending on some Conditions to set the sizes of a layer and the table For an explanation a question I shall guide a simple example: < div id = &quot;Layer1&quot; style = &quot; position:absolute; width:200px; height:115px; z-index:1; left: 12px; top: 71px &quot; > </div> < table border...
  16. VJar

    Using of variables

    (in JavaScript) I need to get screen width and height If (screen.width==800) {w=100; h=100;} else {w = 50 h=50} (in body of html) <img src=&quot;file:inage.jpg&quot; width= ?w? height=?h?> ?w?, ?h? - Is it impossible? What can I make?
  17. VJar

    Using of variables

    In Java Script I define screen width and height and depending on him some variables w and h become the necessary values. Is it possible in body of html document (not in script) to use values of these variables for setting the sizes of picture or other object? Variant with...
  18. VJar

    Help to correct mistake

    Why method 1 is right and workes, but method 2 is not right? Method 1: <script language=&quot;JavaScript&quot;> sw = screen.width; sh = screen.height; document.write(sw); if (sw == 1024) document.body.background = &quot;background.jpg&quot; </script> Method 2: <script...

Part and Inventory Search

Back
Top