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. USADarts

    Indicator Keywords

    I did something else.....I set in03 to *on at the beginning of the rpgle program. I did a step by step debug. One of the steps is chaining back to the subfile. This step changes all indicators back to *off. Not sure why.
  2. USADarts

    Indicator Keywords

    C If *in03 = *on C eval *inlr = *on C Endif During debugging, the *in03 does NOT turn on. I did go baclk to "Old School" and put *inKC, which did turn on. David
  3. USADarts

    Indicator Keywords

    Exactly what I do. A DSPSIZ(24 80 *DS3) A CF03(03 'Exit') A CF12(12 'Cancel') Weird.....the RPG program is NOT accepting the F3. Cannot understand why...
  4. USADarts

    Indicator Keywords

    If I setup an indicator keyword in the File-Level on a DDS, it does not work with the RPGLE program. However, when I set it up within the record level, it works fine. Why is this?
  5. USADarts

    Joined Logical File

    Thanks for the info, but that will not work for me. I need the EDARNO and EDSKU to be the main keys for the joined logical file. Any suggestions? Should I just do an OPNQRYF?
  6. USADarts

    Joined Logical File

    Is there a way to sort a joined logical file from a field that is in the 2nd file of the JFILE command? What I need to do is sort the below by the EHCREATDTE field. R JOINREC TEXT('EDI XREF FILE') JFILE(EX_850DTL EX_850HDR) J...
  7. USADarts

    System keeps rebooting

    Hello All, I did a system restore and rebooted my laptop. Since then, the system just keeps rebooting itself after the Windows XP logo appears. Does this in Normal and Safe Mode as well. Anyone have any suggestions on how to fix this? Regards, David
  8. USADarts

    Convert Hexidecimal into a Character

    I tried this and it is not compiling correctly: H DftActGrp(*No) ActGrp('QILE') BndDir('QC2LE') D HEX s 64A Inz('C1C2C3C4') D CHR s 32A D Length s 10i 0...
  9. USADarts

    Convert Hexidecimal into a Character

    I am populating a file with Spool File Attribute information. The file number is force into the field as Binary/Hexidecimal. All I see if a highlighted field. The hex values are correct. I need a way to convert this field into a readable character field. Thanks
  10. USADarts

    Retrieve Spoolfile Attributes

    We are trying to move the spoolfile attributes to a file when the document is spooled. The file will consist of several fields including the main splf attributes. We would then have an end user enter in a bacth number or something and find that spoolfile using the record we created with the...
  11. USADarts

    Loop=False works in Firefox, but not in Explorer

    I have the following code: <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="500" height="100"> <param name=movie value="flash/501nationals.swf"> <param...
  12. USADarts

    Delete Record from FlatFile

    BILLOUT is in the QTEMP Library *********************************************** FBILLOUT UP F 180 DISK *********************************************** IBILLOUT NS 01 128 C1 I 76 76 CO#...
  13. USADarts

    Passing Parm in URL with PHP

    Ok, this is what I am trying to do going back a few steps. name = David Hascup nameid = usadarts profile.php - link passing 2 fields from an sql database <a href="http://www.usadarts.com/members/tournaments.htm?$name&$nameid"> tournaments.htm <html> <head><title></title> </head> <body>...
  14. USADarts

    Passing Parm in URL with PHP

    Thank you very much for the help. I am fairly new at some of the PHP procedures. However, I am know receiving the following error: Fatal error: Call to undefined function: getparameter() in /home/hascupd/public_html/members/tournaments.php on line 9
  15. USADarts

    Passing Parm in URL with PHP

    Still Getting same error: Parse error: parse error, unexpected T_VAR in /home/hascupd/public_html/members/tournaments.php on line 9 tournaments.htm <form action="tournaments.php?name=$name&nameid=$nameid" method="POST"> tournaments.php <?php var $pname = getParameter("name"); var $pnameid...
  16. USADarts

    Passing Parm in URL with PHP

    Receiving the following error: Parse error: parse error, unexpected T_VAR in /home/hascupd/public_html/members/tournaments.php on line 9 Line 9 code is this: var pname = getParameter("name");
  17. USADarts

    Passing Parm in URL with PHP

    First, is this correct to pass the parms name and nameid? <form action="tournaments.php?$name&$nameid" method="POST"> Second, on the tournament.php page, how to I go about retrieving the name and nameid value to use? I have tried: var pname = getParameter("name"); var pnameid =...
  18. USADarts

    Passing a parm in PHP

    Thanks, However, am i able to use a field instead of a name? Example: <a href="www.example.com/selected.php?selected=$row['username']"</a> I only have one link that loops throught the whole database. This database is added to regularly. Thank again, David
  19. USADarts

    Passing a parm in PHP

    Need help with some PHP coding.... A list of people names come up on a web page (ex: www.example.com/names.php). The list is created using MySQL and PHP. Links are attached to this list. Each name/link has a seperate username. My link for each one looks as follows...
  20. USADarts

    Access to other host Sql database

    Note: I am using phpMyAdmin MySql

Part and Inventory Search

Back
Top