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 Chriss Miller 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: killerg
  • Order by date
  1. killerg

    if statements

    yes i know is easier with loops thanks a lot it help me a lot!!!
  2. killerg

    track down the winner

    Hello, i have one last question and very confusing for me. have 4X4 matrix and the player and the computer will play m or u and every time they close a row of the word mum i want to track down in the box which one had closed the a row for example player :2 computer:1. but i dont know...
  3. killerg

    if statements

    is not a tic tac toe game. but thanks i ll try the random method.
  4. killerg

    if statements

    Hello, i have a question again will nested loops cause a problem ? for example i have the following code if(document.myForm.box6.value=="" && Math.random()<0.5){ document.myForm.box6.value="O"; document.myForm.box6.style.color="Blue" } else if(document.myForm.box6.value==""){...
  5. killerg

    buttons

    Hello, i have 2 questions. 1.i have manage to change the color of the button document.myForm.box5.style.backgroundColor="LightSteelBlue" but is it possible to change the text color of a button? 2. and most important is that how can the computer play by inserting X or either O in the...
  6. killerg

    colors

    no i dont want to change the font. for example i have the radio buttons with the names violet and daisy. When i choose violet and i click to a button the color of the world violet to have a different color than the usual black color.
  7. killerg

    colors

    can i assign a color to the values of my radio buttons ?
  8. killerg

    radio buttons and opponents move

    i found my mistake. thanks is working now.
  9. killerg

    radio buttons and opponents move

    Hello, i have 4X4 table made from buttons because iam doing a board game and my opponent is the computer.The players will need to put either s or o in the squares. i managed to do the users(mymovement) by creating radio buttons and the code for the first button is function b1(){...
  10. killerg

    i still cant display the value

    thanks a lot i found the way
  11. killerg

    prevent unauthorized access

    i found the way :) Dim dbconn, sql, dbcomm, dbread dbconn = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; data source=" & Server.MapPath("App_Data\Bookshop.mdb")) dbconn.Open() sql = "SELECT * FROM User_details WHERE Email = '" & mail.Text & "' AND [Password]=...
  12. killerg

    prevent unauthorized access

    also in the login how do we prevent the users which their pass and email doesnt match to login. i used the following sql and also iam trying some if statements but all the users can access even if their pass and email dont match. Dim dbconn, sql, dbcomm, dbread dbconn = New...
  13. killerg

    i still cant display the value

    iam trying to do the login page and i want to pass the name value to the default page but not very sure how to post it and request it i have the following code which at the moment only goes to the default page but how do i pass the value of the name? Protected Sub Button1_Click(ByVal sender...
  14. killerg

    how to post values?

    Dim strng As String strng = Request.QueryString("Name") Response.Write("Your name is " & sName) thats what i have in the default but it doesnt pass the value.
  15. killerg

    how to post values?

    iam trying to do the login page and i want to pass the name value to the default page but not very sure how to post it and request it i have the following code which at the moment only goes to the default page but how do i pass the value of the name? Protected Sub Button1_Click(ByVal sender...

Part and Inventory Search

Back
Top