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 Mike Lewis 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. hilarity

    FAR

    Hi, I am new to JD Edwards. Does anyone know what this "FAR" stands for that I encounter all the time, f.e. in void FormatMathNumeric (char FAR *,MATH_NUMERIC FAR *); ?
  2. hilarity

    OneWorld Tools Api - Xtra docu wanted

    Hi I am experienced in C, but I'm new to JD Edwards. I would like to know about developing business functions in C. Could anyone direct me to some documentation / websites where I can find more info one the JDE C-functions? (Such as JDB_InitBhvr, etc.) I know there is a OneWorld Tools API...
  3. hilarity

    Please Help Debug My Perfect Number Program

    Hi NewBeePersonThing, Here's some code that finds 7 perfect numbers (last one is 137438691328). Maybe if you increase x in the main loop you can find more. Hope this helps... hilarity. #include <stdio.h> #include <math.h> int main(void) { int x; double n; for(x=2; x < 20; x++)...
  4. hilarity

    Problems with printing and removing files with a script

    Thanks everybody for your help. I'll use the -c option. hilarity.
  5. hilarity

    Problems with printing and removing files with a script

    My problem is as follows: I print f.e. 5 files (using lp). Then I remove these 5 files (using rm). Only the first 2 files are printed. I need to have some mechanism in my script that makes sure the files are actually printed before it starts removing them. Any help would be greatly appreciated...
  6. hilarity

    Does migrating RS6000 G40 to F80 go without problems?

    I was asked by my boss to find out if any known problems exist when setting up this new machine RS6000 F80. I do not actually know anything about these kind of procedures and I will not be the one performing them. Maybe if you have experience with installing such a machine you could just give...
  7. hilarity

    Need to delete a file called -1

    To let rm know that -1 is a file name and not an option you should use rm -- -1 where -- is a delimiter that indicates the end of the flags. Hilarity.
  8. hilarity

    Does migrating RS6000 G40 to F80 go without problems?

    Does anyone know of any problems one could encounter when migrating IBM RS6000 G40 to F80 ?
  9. hilarity

    Will migrating AIX 4.3.0 to AIX 4.3.3 work without problems?

    Does anyone know of any problems when migrating AIX 4.3.0 to AIX 4.3.3 ??

Part and Inventory Search

Back
Top