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. Buraje

    Configure Expanded Memory for DOS-Mode

    Hi there, I need to configure my expanded memory in MS-DOS mode to run a DOS-Game under Win98. Do I need an additional driver to make the full RAM available under DOS? Thanx, Buraje
  2. Buraje

    How to prevent others from downloading html page

    Can't be done. And: Why would you do that? Anyway: Just generate an image that contains your text with any programming language. Include the image in your html - file. Or make the image yourself in Photoshop or in whichever program, include it in your html - page. But honestly - if you don't...
  3. Buraje

    navigator.getWindowById(name)

    No, I have not assumed that this might work, but actually it's what I need. The script below exists, I can not take any influence on it, because it's PHP - generated and put into my HTML - Source, after the upload to the server. <script language=&quot;JavaScript&quot;>...
  4. Buraje

    Neat Little Icon

    put this in the head of your page. <LINK REL=&quot;SHORTCUT ICON&quot; href=&quot;your_image.ico&quot;> problem: it is a favourite icon, so it's only shown, when the page is bookmarked by the user. regards, buraje
  5. Buraje

    arrays

    hi fury, a 2dimensional array is nothing mor than an array of arrays - may sound weird, but it's like that: int mealPrice[50][2]; Now you've got an array of 50 meals with meal number and price. You can fill it like: meal_Price[0][0] = first meal number; meal_Price[0][1] = price of first meal...
  6. Buraje

    Help with forms

    Much to complicated. Just have a look at the code. (F 10) If you see any <br> tag, remove it. If your first field is surrounded by a <p> tag remove this. <form name=&quot;Test&quot;> <input size=30 onFocus=&quot;this.value='Put your name here'&quot; onBlur=&quot;alert(this.value)...
  7. Buraje

    Browser Detection

    Hi Erica, the easiest thing is just: var brows = navigator.appName; if (&quot;Netscape&quot; == brows) do whatever; else do something else; (It's still about 40% N'scape to 60% IE, so I personally don't worry about the other browsers.) But there are more sophidticated ways to do it. And many...
  8. Buraje

    How to delete selected with a mouse text from textarea???.

    Thanx jaredn, this was actually helpful to me, but I had something like this before: <html> <head> <title>Dies ist kein Formular</title> <script> document.onkeypress = steuern; function steuern(e){ switch(event.keyCode){ case 13 : mywrite = &quot;<br>&quot;; //13 == RETURN KEY...
  9. Buraje

    writing to a text file while reading it!!!!!!

    hi malayaj, of course you can read and write at the same time into a file in C. But you need to do some things first. Open the file in mode &quot;w+&quot; to read and write: FILE * fp; fp = fopen(&quot;file.txt&quot;, &quot;w+&quot;); if (NULL != fp) ... Most important after that is to call...
  10. Buraje

    Walk through directories

    Actually I need both - so I will have to modify my programs. Thank you very much fo these tips. Buraje
  11. Buraje

    How to delete selected with a mouse text from textarea???.

    Thanks a lot, now it works!
  12. Buraje

    Walk through directories

    Also, what does getenv() do? regards, Buraje
  13. Buraje

    Walk through directories

    Hi there, I need to open and walk through directories in C. Can I use fopen like I'd do for files? And how? After haviong done this, I'd like to open all(!) files in a directory (one after another or however) to seek for keywords in them. Thanks, Buraje
  14. Buraje

    How to delete selected with a mouse text from textarea???.

    hey sergey, i'm here because i'm trying to do the exact same thing since 11 this morning (GMT +1) i don't know if you'll try it again with the textrange thing like i do. it works ell so far. i use the methods textrange and innerHTML in a div, because i cannot use a form. my problem is the event...

Part and Inventory Search

Back
Top