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 Chriss Miller 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 SMURF75

  1. SMURF75

    Embedded SQL

    Hi, Sqlrpgle provides you with following: SQLErrD(1) - treated as Char(4); last 4 characters of CPF or other escape message SQLErrD(2) - treated as Char(4); last 4 characters of CPF or other diagnostic message SQLErrD(3) - for Fetch, Insert, Update or Delete, number of rows retrieved or...
  2. SMURF75

    Indicator Keywords

    Just a little sidenoye. The words exit and cancel tells me you want to leave the program with the press of F3 or F12. If that is the case CAxx is the right keyword to use. Furthermore... without knowing exactly what Im talking about. When placing CAxx/CFxx in records you, if I remember...
  3. SMURF75

    Apostrophes in parameter data

    Im just gonna pasta a little snippet of code to let you know what you are up against. cmdStr = 'SBMJOB CMD(CALL PGM(pgm1) PARM(''' + %char(number1) + ''' ''' + %char(number2) + ''' ''0'')) ' + 'JOB(setValue' + %char(i) + ') ' +...
  4. SMURF75

    Using Free-Form RPG

    Scanning through all of the bifs is of great benefit when starting to use free. Not need to know their exact syntax, but just knowledge of their existance will help alot. - - - - - - - - - - - - - - - - - - Im three apples high, Im blue, and I really like that cold beer that should be every...
  5. SMURF75

    Scanning and Trimming

    Set third parameter in scan to set start position. - - - - - - - - - - - - - - - - - - Im three apples high, Im blue, and i most certainly like that cold beer that should be every mans right after a hard days work!
  6. SMURF75

    Deployment package

    Is it the one where you use three different projects in one solution. In that case "The code project" - http://www.codeproject.com/netcf/PackagingAndDeployingPPC.asp has a rewritten documentation of that text that is a little easier to follow. If you have a specific problem post here and I can...
  7. SMURF75

    Unsigned integers

    If you are to tip us about an faq you could paste the link to it while your at it :D - - - - - - - - - - - - - - - - - - Im three apples high, Im blue, and i most certainly like that cold beer that should be every mans right after a hard days work!
  8. SMURF75

    Removing XML information

    There is such a thing as myDataset.WriteXml(myXmlWriter, XmlWriteMode.IgnoreSchema) if you are working with xml in dataset. You can probably use the IgnoreSchema when you create your xmlreader or xmlwriter also - - - - - - - - - - - - - - - - - - Im three apples high, Im blue, and i most...
  9. SMURF75

    .net Compact Framework

    if activesync is installed on the desktop you could you the RAPI functions to communicate with the ppc - - - - - - - - - - - - - - - - - - Im three apples high, Im blue, and i most certainly like that cold beer that should be every mans right after a hard days work!
  10. SMURF75

    Constants on msdn

    There must be a better way ;) You cant expect me to go search the include directory each time I want a constant :) Anyway.... I found my constants in winNT.h so I guess I can hand you a star! - - - - - - - - - - - - - - - - - - Im three apples high, Im blue, and i most certainly like that...
  11. SMURF75

    Constants on msdn

    Hi When searching msdn for answers, often you find methods where the possible return values are descibed as constants. (Atleast when working with apis) for example: How am I supposed to know what PROCESSOR_ARCHITECTURE_SHX has for value? I dont want to guess :D So, easy question does anyone...
  12. SMURF75

    File Exists Problem

    I knew that :D Just tought you were playing with windows CE since you are using apis to create files on remote machines ;) - - - - - - - - - - - - - - - - - - Im three apples high, Im blue, and i most certainly like that cold beer that should be every mans right after a hard days work!
  13. SMURF75

    File Exists Problem

    I would suggest you would look into the RAPI class http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wceappenduser5/html/wce50grfRemoteApplicationProgrammingInterfaceRAPIReference.asp - - - - - - - - - - - - - - - - - - Im three apples high, Im blue, and i most certainly like...
  14. SMURF75

    Exiting an If statement

    orelse andalso could come in handy in some cases when evaluating :D - - - - - - - - - - - - - - - - - - Im three apples high, Im blue, and i most certainly like that cold beer that should be every mans right after a hard days work!
  15. SMURF75

    Different ways to p/invoke?

    Okay so on antoher forum a most kind person informed me about the reason why my samples behaved different... Uninit and UnInit is not really the same... stupid sloppy me I say :) But the question still remains? Is there any difference in the declarations, or is it just a matter of taste? - - -...

Part and Inventory Search

Back
Top