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 strongm 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. 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 ...
  16. nickjar2

    loop through each detail record in report

    Maybe someone can help with this. I have asked a similar question earlier on, but no repsonse. What is the best way to loop through each record in the detail, to insert values on the fly? Example, if Joe Bloggs has ordered 5 items, how can I easily insert a seperate value for each of the 5...
  17. nickjar2

    Report formatting/calculations in detail_format

    Hi, I have a really strange problem (or at least I beleive it 2b). I have recently taken over a database, and one particular report displays a weeks worth of work per person. Eg, first page will display 7 days worth of work for say Joe Bloggs. The details will be hours worked for sunday, hours...
  18. nickjar2

    AOL and VBA

    Hi, Has anyone got any code examples onhow to send a not via VBA with AOL client? I have tried the docmd.sendObjectbut no luck. Cheers! Nick (Everton Rool OK!)
  19. nickjar2

    java applet doesn't show in IE 6.0

    cheers for the response. I found the answer in control panel, java -plug in, then chose the browser tab, and checked IE. Cheers! Nick (Everton Rool OK!)
  20. nickjar2

    java applet doesn't show in IE 6.0

    But show in netscape. Can ne one help please? Cheers! Nick (Everton Rool OK!)

Part and Inventory Search

Back
Top