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 bkrike 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: BennySHS
  • Content: Threads
  • Order by date
  1. BennySHS

    SQL Server 2005 Express - Remote Connections don't work

    Hi there, I'm a newbie with the Mssql-Server, and short time after installation I encounter the first problems I can't solve by myself :[ I try to connect (locally) to my server with the 'SQL Server authentication' method, but always get the error 18452: 'The user is not associated with a...
  2. BennySHS

    get Value of textbox / input-field

    Hi there, I'm trying to read the value of a textbox and/or a hidden input field. I tried the following code: alert(document.getElementById('bereich').text); and alert(document.getElementById('bereich').value); and both doesnt work. I goolged for a while to find other solutions, but they...
  3. BennySHS

    Calculate color-nuances

    Hi there! I know my question is not a javascript-question, but I hope one of you guys made something similar that could help me. What I want to do: The users on my site has the ability to select their own colors. But they can't select the the colors for every element. Some elemtns should get a...
  4. BennySHS

    Help with select needed

    hey there, I want to do the following, but can't write the correct statement: Tables: tbl_user user_id | username tbl_group group_id | groupname tbl_useringroup user_id | group_id All I want is to select all tbl_group.groupname where the user is not in. (the goal is to show a selectbox...
  5. BennySHS

    Javascript-Menue: Remember open menues

    hi again, here I am with another little problem... I'm trying to make a javascript-menue where you can open the submenues with javascript. the html: <div style="float:left"> <a href="#" onClick="setVisibility('benutzer_bearbeiten_sub');" class="navbutton">Benutzer-Verwaltung</a> <div...
  6. BennySHS

    keystroke onClick()

    Hi there, I want to do the following: When a form is submitted, I need a function which provokes a keystroke, for instance F11. Is this possible to do with javascript ? Thx a lot, greets ben
  7. BennySHS

    fulltext-index; problem with join

    Hi there, I use a fulltext-index for searching my database. The old query searched only in a table called 'user'. The old query was no problem, but now there another table I need to search too. First my original query: SELECT * FROM tbl_user WHERE MATCH (name, strasse, beschreibung...
  8. BennySHS

    Problem with multi-delete

    Hi there, i got a tbl_categoie and a tbl_branchen. A Categorie can have N branches. When I delete a categorie, I want to delte all its branches too, and this in one statement. I tried the following: $SQL = "DELETE tbl_rubriken, tbl_branchen FROM...
  9. BennySHS

    submit.form() + queryString-values

    hi there, i want to submit a form via form.submit, and I want to know if there is a way to give the form.submit() a queryString values with it. I want to do this because there are several links on my page which can submit the form and I need to know which link was clicked. Thanks a lot...
  10. BennySHS

    Problem with if-condition

    Hi there, every few month I need a little javascript, and every time I get into problems :/ I hope you can explain this to me: I want to write a small functions which set some elements visible / invisible, dependent if the related checkbox is checked or not. Should be very simple, but sadly...
  11. BennySHS

    How to differ between a submit-button and form.submit()

    Hi there, got a little prob. and i hope you can help me! I got a form with a selectbox and some submit-buttons. If somebody changes the selectbox, the form should be sent with onChange="form.submit();". The problem: How do I know if somebody changed the selectbox or pressed a button ? thx a...
  12. BennySHS

    get the classname of an element

    Hi there ! I'm just experementing with my first js-navi and got a little problem. I'm using the following code to set the class: document.getElementById(id).className="showmenu"; But how can I find out which class the element currently has ? Hope you can help me out, thx a lot, greets, ben
  13. BennySHS

    Another noob question

    Hi there, first sorry for my senseless subjects, but I'm not able to explain this problem in a few words. What I want to do: I'm trying to code a little javasript-based html-editor. So there is a big text-field where the User can enter his code. What I want is a preview of the html-code the...
  14. BennySHS

    Need help with a simple Problem

    Hi there! I'm new to javascript and I got a problem that i cannot solve myself. I hope you can help me out ;) The situation: With a click on a link a DIV is set to visible. In this div I got a input-field, and another link. With a click on this link I want to set the text of the input-field...

Part and Inventory Search

Back
Top