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 Chris 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: *

  1. Oderbang

    Full path name

    hi iv got apache 2 installed and running in httd.conf AccessFileName .htaccess AllowOverride All this should mean the .htaccess file is working and it is the problum im having is with the htaccess file n trying to find the full server path contents of the .htacces file AuthUserFile...
  2. Oderbang

    stop a loop from crashing

    i figured out a way of doing this run a command evry soecound with counter as integer (what number in the strig you need to exacute) and pullout as boolean as a flag to pull you out of the loop so im not actually in a loop the program just calls a sub evry secound called display which does the...
  3. Oderbang

    stop a loop from crashing

    if i have a loop that is never ending say a synthisizer and i want to pull out of the loop with a stop button how would i go about it here is the senario i have 3 arrays 1st is Lights 2nd is Lights_settings 3rd is lights_order the 1st array holds the value of each light 0-255 eg lights0 = 0...
  4. Oderbang

    How to uncheck a box within a frame that have several boxes

    i 100% agree with Hneal98 it should be done with radial buttons BUT if you still want to use the checkbox way it goes somthing like this Private Sub cmdhit_Click() If Check0.Value = True Then Check2.Value = False Else Check2.Value = True End If End Sub
  5. Oderbang

    How to get one record a time into a form

    iv maneged to make the procedure to highlight all the dates on the calnder now all i need to do is call all the dates in i have a few problums though 1. the procedure work using 2 text boxes (first date and secound date) you can enter 1 date then the other date and it will highlight all the...
  6. Oderbang

    Text Box Still Visible

    oh well i tried ..maybe microsoft should incorprate that into there next package of VBA oh well sorry as for my typo ...im useless at english
  7. Oderbang

    Text Box Still Visible

    why dont you try this it simple takes a bit of typing though your code <-----> when you want to say box 1 - 20 to disapear try this box1.visable = false box2.visable = false box3.visable = false... box20.visable = false or you could group the txt boxes by simple making thefirst one and...
  8. Oderbang

    How to get one record a time into a form

    Basicly i'v got a calendar that iv made a procedure to highlight each day between and including a start and end date. now what i need to do is Phudo code following: Get first date.Fdate Get second date.Sdate Highlight between and including fDate & Sdate Do Get next Date.Fdate Get next...

Part and Inventory Search

Back
Top