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 SkipVought 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. Capoerista

    Pro*C : No rule to make target `-llibclntsh'

    For info we finally got it working Libraries needed to be rebuilt with 64bit option (ar -x64). Programs needed compiling and linking with 64bit option (-maix64 is the flag for gcc) Adrian
  2. Capoerista

    making font larger when user selects to view fonts larger

    Em is a relative measure equal to the width of the letter m in the currently chosen font. Does it relate to the width of m or M? I have also seen ex as units which I believe is defined as the height of a capital X in a font. Is there any technical reason for choosing one over the other or is it...
  3. Capoerista

    Usage of <DIV>

    Thanks for all your replies. I only saw the page at 800x600 on a 14" CRT yesterday and I agree that 6pt looks awful. The joys of designing for a variety of screens and resolutions. I'm running on 1280x1024. Cheers Adrian
  4. Capoerista

    Usage of <DIV>

    I created the following webpage as an exercise to learn about CSS. http://web.ukonline.co.uk/adrian.cornforth/ Should the images ideally go in a <DIV> rather than a <P>? Is using classes e.g. centralbigspacing to control spacing seen as an acceptable method? I did this due to significant...
  5. Capoerista

    Pro*C : No rule to make target `-llibclntsh'

    Thanks Simon After going bug-eyed looking at this I agree that it looks like it thinks it needs an executable. As some background we wrote a small test program and tried to compile with an Oracle supplied make file. That did not work so I took the whole command it was running and ran it...
  6. Capoerista

    Pro*C : No rule to make target `-llibclntsh'

    Hi Everyone, We are trying to compile an existing C application to which we want to add PL/SQL extensions. After some messing with the make file compilations are successful, but it fails at the final hurdle with the message : gmake[1]: *** No rule to make target `-llibclntsh', needed by...
  7. Capoerista

    Can you measure IO on a file?

    Hi Alex, Unfortunately not, it's and old 3GL C-ISAM leviathan. Also a large number of users can access files remotely via ODBC. We can log which tables are used via ODBC, but it still does not give us an idea of the amount of IO being generated. Adrian
  8. Capoerista

    Can you measure IO on a file?

    Hi Guy's We are trying to tune application performance on AIX 5.2 . Is it possible to measure amount of IO going on for a particular file. We know which filesystems are busiest, but not files. We want to split out the busiest files but want to do it less by hunch and more by measurement...
  9. Capoerista

    Informix ODBC connection extremely slow - intermittent

    Agilehound, Do you update statistics regularly? I've only seen it happen once but a clients database (Informix SE 7.??) ground to a halt, everything else on server was OK (mem, CPU etc). Only thing that cured it was running update statistics. I only ran it as I had run out of other options. Adrian
  10. Capoerista

    Determing C-ISAM version of a file

    Hi Everyone, Does anyone know if it is possible to determine the version of C-ISAM used to create a file? I have tried bcheck and it gives lots of info, anything but the info we want. Thanks in advance Ade
  11. Capoerista

    Rich text file handling difference

    Hypetia, Sorry for delay in reply. Your suggestion works fine for me, but still does not work on our Outlook 2003 machine. I managed to diagnose a case of DLL hell with Riched20.dll. Version 5.30 works OK and 5.50 does not (which is what Outlook 2003 uses). My inelegant workaround was to load...
  12. Capoerista

    Outer join returns no results (Impromptu Admin)

    Thanks Dave, I think we have support. It is up in the air though as we have just been sold off. So it may take a little while Ade
  13. Capoerista

    Outer join returns no results (Impromptu Admin)

    griffindm, The "Include the missing table join values (outer join)" is checked . I should have said the SQL was that automatically generated by Impromptu. This is a small query so there are no filters defined. I just tried suspending Detail and Summary filters to make sure and still get the...
  14. Capoerista

    Outer join returns no results (Impromptu Admin)

    Hi Everyone, I am trying to the following outer join : select T1."TERRITORY_CODE" "c1" , T1."TERRITORY_DESC" "c2" , T2."REP_MANAGER_CODE" "c3" , T2."REP_MANAGER_DESC" "c4" from {oj "XLOOK_TERRITORIES" T1 LEFT OUTER JOIN "XLOOK_REP_MANAGER" T2 on T1."REP_MANAGER_CODE" = T2."REP_MANAGER_CODE"...
  15. Capoerista

    Rich text file handling difference

    Hi All, I am having problems with the following bit of code. The RTF handling is behaving differently on two PC's, both with Win 2000 professional. One has Office 2002 (works OK), the other has Office 2003. The code is in a VB6 application and is used to strip out the RTF 'control' codes to...
  16. Capoerista

    Performance problem stripping blanks

    Hi All, I've inherited support of a VB application which is having performance problems processing large text files. I have narrowed down the problem to the for loop section. The aim is to read in an rtf file, then output a copy of the file with rightmost blanks stripped. The routine is...
  17. Capoerista

    set Flag &quot;importance&quot; in mail -s

    hlyeoh, I don't know if there is a command for Importance, however you can have commands for the mail program at the top of the input file (meeting.notice in this case). An example is setting the reply to address and subject Reply-To:me@me.co.uk Subject:set the subject I would google on mail...
  18. Capoerista

    ODBC to Informix 7.25 SE

    Hi Uwe, Problem(2) Is the environment variable DBPATH setup? Ade
  19. Capoerista

    Date Time Manipulation

    Hi All, Is it possible to do date/time manipulation easily on DATETIME YEAR TO SECOND variables ? (4GL 7.20.UE1, SE 7.24.UC8). I tried the following main define v_today DATETIME YEAR TO SECOND, v_yest DATETIME YEAR TO SECOND, v_diff float LET v_today = today LET v_today = &quot;2004-01-22...
  20. Capoerista

    Passing a string to another script

    Hi grepper, Do an echo $5 and you should find the rest of your touch command. Try the following in your script ./myExpect $hostid $userid $passwd &quot;$command&quot; I don't think ksh 'remembers' that the contents of $command was passed as a quoted string. So if you subsequently use it in...

Part and Inventory Search

Back
Top