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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by nickjar2

  1. nickjar2

    $_REQUEST works, $_POST doesnt

    Hi This is really really bugging me as I cannot see why it doesnt work.... I have this: <form action="https://www.safepaysolutions.com/index.php" method="POST"> <input type="hidden" name="_ipn_act" value="_ipn_payment"> <input type="hidden" name="iowner" value='1234'> <input type="hidden"...
  2. nickjar2

    redirect to another php page

    found it cheers! Flush() is a built in php command Cheers Nick (Everton Rool OK!)
  3. nickjar2

    redirect to another php page

    Thanx very much for that :) it worked!!!! I am assuming that flush() is a function. But where could it sit? It isnt in the logout php and there are no includes, so how does it know where do find flush() (or is flush a built in php func?) php is new to me btw - i am a vba guy. Cheers again...
  4. nickjar2

    redirect to another php page

    aaahhhh - I will go and check and let you know. Cheers 4 the super fast reply :) Nick (Everton Rool OK!)
  5. nickjar2

    redirect to another php page

    Hi I have searched the forum and I seem to be doing things right, although the following php does not work: <?php session_start(); include("vars.php"); $_SESSION = array(); session_destroy(); flush(); header("Location: $self_url?logged-out"); exit; ?> The self_url points to my home page, but...
  6. nickjar2

    Wrong recordcount? Had this problem before....

    Cheers for responding I will give that a go tomorrow at work, although I am not actuall editing at the time of executing the code Cheers Nick (Everton Rool OK!)
  7. nickjar2

    Wrong recordcount? Had this problem before....

    sSQL = "SELECT tblStartFinish.Status FROM tblStartFinish WHERE (((tblStartFinish.StaffID)=" & rstCCS(15) & ") AND " sSQL = sSQL & "((tblStartFinish.Date) Between " & ConvertDate(dteDate2) & " And " & ConvertDate(dteDate1) & " AND " sSQL = sSQL & "((tblStartFinish.Status)='nd' Or...
  8. nickjar2

    VBA and Class Modules

    cheers for responding, I have already tried this and I get: Compile Error Procedure declaration does not match decription of event or procedure ahving the same name Any more ideas? Cheers Nick (Everton Rool OK!)
  9. nickjar2

    VBA and Class Modules

    Can a class have multiple contructors? I know u can in java, but I cannot seem to get it to work in Access. Example, if have a Resource Class, I want to initialise it and pass a param through to it. If a guy is currently working days, i want the class to know this so it will allocate the...
  10. nickjar2

    loop through each detail record in report

    lol, cheers Tom, I'll do that :o) All the best buddy and cheers for taking the time to help me :o) Nick Nick (Everton Rool OK!)
  11. nickjar2

    loop through each detail record in report

    Cheers Tom, All that happens when u log on as a differnet user is a variable gets initialised. If the user logs in as 'Office Manager', the value 19 gets written to the variable, whereas the depot id gets written to the variable if u login as the depot (anything from 1 to 18). The database...
  12. nickjar2

    loop through each detail record in report

    lol, cheers buddy. I am off home in a little while myself, but will keep checking here. The text97 just displays the value of the stbp variable. This holds data taken from the loops, but nothing happens if a N/A is found. It isn;t just wedensdays tho, and also, I tried putting a 0 instead of a...
  13. nickjar2

    loop through each detail record in report

    There isn't an actual sum. What happens is this: Private Sub GroupFooter1_Format(Cancel As Integer, FormatCount As Integer) On Error GoTo err_GF Dim rsHT As Recordset If Me.ResourceType = &quot;I&quot; Then Me.txtShiftAllowance = Format(67.76, &quot;£0.00&quot;) Else...
  14. nickjar2

    loop through each detail record in report

    >This structure would check for the standby to determine if >it was weekend or weekday. If weekday, it would put 8 in >the unbound text box, and if not 8 would put 15 it would also need to check whether this record was for standby or not. Below is a little bit of the code that does these...
  15. nickjar2

    loop through each detail record in report

    Hi Tom, Cheers for responding. It checks each line, and checks whether it is standby or not. If it is standby, depending on who Joe bloggs is, will determine what value is displayed. Example, if joe bloggs is on standy by for saturday or sunday, then if he works for a certain business unit ...

Part and Inventory Search

Back
Top